From eb553119f5cff40f6fd6b9b0cb0586a0d9879c1a Mon Sep 17 00:00:00 2001 From: wizard50 Date: Fri, 26 Apr 2024 11:33:54 -0400 Subject: [PATCH] added 5 new indicators: - LMA (Logarithmic Moving Average) - Ehlers Gaussian Filter - Ehlers Supersmoother Filter - Chebyshev Type 1 Filter - Chebyshev Type 2 Filter --- lib/indicator/src/ta/indicator.clj | 117 +- lib/indicator/src/ta/indicator/rolling.clj | 30 +- .../indicator/csv/INDEX_BTCUSD_1D_len_100.csv | 5123 +++++++++++++++++ .../test/ta/indicator/indicator_test.clj | 74 +- lib/indicator/test/ta/indicator/util/data.clj | 8 + 5 files changed, 5333 insertions(+), 19 deletions(-) create mode 100644 lib/indicator/test/ta/indicator/csv/INDEX_BTCUSD_1D_len_100.csv diff --git a/lib/indicator/src/ta/indicator.clj b/lib/indicator/src/ta/indicator.clj index bfc8e155..f8b32819 100644 --- a/lib/indicator/src/ta/indicator.clj +++ b/lib/indicator/src/ta/indicator.clj @@ -10,7 +10,8 @@ [ta.indicator.signal :refer [upward-change downward-change]] [ta.indicator.returns :refer [diff-2col]] [ta.helper.ds :refer [has-col]] - [ta.math.series :refer [gauss-summation]]) + [ta.math.series :refer [gauss-summation]] + [fastmath.core :as fmath]) (:import [clojure.lang PersistentQueue])) (defn prior @@ -95,7 +96,7 @@ (defn hma "Hull Moving Average http://alanhull.com/hull-moving-average A simple application for the HMA, given its superior smoothing, would be to employ the - turning points as entry/exit signals. However it shouldn't be used to generate crossover + turning points as entry/exit signals. However, it shouldn't be used to generate crossover signals as this technique relies on lag." [n v] (assert (even? n) "n needs to be even") @@ -105,6 +106,115 @@ d (dfn/- wma2 (wma n v))] (wma nsqrt d))) +(defn- lma-rfn [n v] + (let [alpha (dfn/log (range 2 (+ n 2))) + norm (dfn/sum alpha) + sum (dfn/sum + (dfn/* v alpha))] + (/ sum norm))) + +(defn lma + "Logarithmic moving average" + [n v] + (roll/rolling-window-reduce-zero-edge (fn [col-name] + {:column-name col-name + :reducer (fn [w] + (lma-rfn n w)) + :datatype :float64}) + n v)) + +(defn- ehlers-tfn + "" + [{:keys [c1 c2 c3]}] + (let [f (fn [x y1 y2] + (+ (* c1 x) + (* c2 y1) + (* c3 y2)))] + (indicator + [prev1 (volatile! nil) + prev2 (volatile! nil)] + (fn [x] + (cond + ; first x + (and (not @prev1) (not @prev2)) + (let [res (f x 0.0 0.0)] + (vreset! prev1 res) + res) + + ; second x + (and prev1 (not @prev2)) + (let [res (f x @prev1 0.0)] + (vreset! prev2 @prev1) + (vreset! prev1 res) + res) + + :else + (let [res (f x @prev1 @prev2)] + (vreset! prev2 @prev1) + (vreset! prev1 res) + res)))))) + +(defn ehlers-supersmoother + "Ehlers Supersmoother Filter" + [n v] + (let [a1 (Math/exp (/ (* -1 (Math/sqrt 2) Math/PI) n)) + b1 (* 2 a1 (Math/cos (/ (* (Math/sqrt 2) Math/PI) n))) + c3 (* -1 a1 a1) + c2 b1 + c1 (- 1 c2 c3)] + (into [] (ehlers-tfn {:c1 c1 :c2 c2 :c3 c3}) v))) + +(defn ehlers-gaussian + "Ehlers Gaussian Filter" + [n v] + (let [cycle (/ (* 2 Math/PI) n) + beta (* 2.415 (- 1 (Math/cos cycle))) + alpha (+ (* -1 beta) + (Math/sqrt (+ (* beta beta) (* 2 beta)))) + c0 (* alpha alpha) + a1 (* 2 (- 1 alpha)) + a2 (* -1 (- 1 alpha) (- 1 alpha))] + (into [] (ehlers-tfn {:c1 c0 :c2 a1 :c3 a2}) v))) + +(defn- chebyshev-tfn [g] + (let [f (fn [x y1] + (+ (* (- 1 g) x) + (* g y1)))] + (indicator + [prev1 (volatile! nil)] + (fn [x] + (cond + ; first + (not @prev1) + (let [res (f x x)] + (vreset! prev1 res) + res) + + :else + (let [res (f x @prev1)] + (vreset! prev1 res) + res)))))) + +(defn chebyshev1 + "Chebyshev Type I Filter" + ([n v] + (chebyshev1 n v 0.05)) + ([n v r] + (let [a (Math/cosh (/ (fmath/acosh (/ 1 (- 1 r))) n)) + b (Math/sinh (/ (fmath/asinh (/ 1 r)) n)) + g (/ (- a b) (+ a b))] + (into [] (chebyshev-tfn g) v)))) + +(defn chebyshev2 + "Chebyshev Type II Filter" + ([n v] + (chebyshev2 n v 0.05)) + ([n v r] + (let [a (Math/cosh (/ (fmath/acosh (/ 1 r)) n)) + b (Math/sinh (/ (fmath/asinh r) n)) + g (/ (- a b) (+ a b))] + (into [] (chebyshev-tfn g) v)))) + (defn macd ([col] (macd {:n 12 :m 26} col)) ([{:keys [n m]} col] @@ -259,8 +369,7 @@ (carry-forward-for 1 [1.0 nil nil -1.0 2.0 nil]) (carry-forward-for 1 [1.0 Double/NaN nil -1.0 2.0 nil]) - -; +; ) diff --git a/lib/indicator/src/ta/indicator/rolling.clj b/lib/indicator/src/ta/indicator/rolling.clj index 311d1d9d..c1307fa5 100644 --- a/lib/indicator/src/ta/indicator/rolling.clj +++ b/lib/indicator/src/ta/indicator/rolling.clj @@ -14,6 +14,15 @@ :relative-window-position :left} {:out (rf :in)})))) +(defn rolling-window-reduce-zero-edge [rf n vec] + (let [ds (tc/dataset {:in vec})] + (:out (r/rolling ds + {:window-type :fixed + :window-size n + :relative-window-position :left + :edge-mode :zero} + {:out (rf :in)})))) + (defn trailing-sum "returns the trailing-sum over n bars of column v. the current row is included in the window." @@ -72,18 +81,15 @@ (defn trailing-linear-regression "trailing simple linear regression" [n v] - (let [ds (tc/dataset {:col v})] - (:out (r/rolling ds {:window-type :fixed - :window-size n - :relative-window-position :left - :edge-mode :zero} - {:out {:column-name [:col] - :reducer (fn [w] - (let [y (into [] (drop-while #(= % 0.0) w)) - c (count y) - x (range 1 (inc c)) - regressor (dfn/linear-regressor x y)] - (regressor c)))}})))) + (rolling-window-reduce-zero-edge (fn [col-name] + {:column-name col-name + :reducer (fn [w] + (let [y (into [] (drop-while #(= % 0.0) w)) + c (count y) + x (range 1 (inc c)) + regressor (dfn/linear-regressor x y)] + (regressor c)))}) + n v)) (defn prior-window "this does not work!" diff --git a/lib/indicator/test/ta/indicator/csv/INDEX_BTCUSD_1D_len_100.csv b/lib/indicator/test/ta/indicator/csv/INDEX_BTCUSD_1D_len_100.csv new file mode 100644 index 00000000..b18c06b8 --- /dev/null +++ b/lib/indicator/test/ta/indicator/csv/INDEX_BTCUSD_1D_len_100.csv @@ -0,0 +1,5123 @@ +time,open,high,low,close,lma,chebyshev1,chebyshev2,ehlers-gaussian,ehlers-supersmoother +1262736000,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.000698316794898459,0.000781528062904638,0.000705809929317181,0.000690846430102271 +1262822400,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.000699733498577945,0.000781464855774128,0.000704375882065659,0.000684476956472354 +1262908800,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.00070104936174932,0.000781401711749977,0.000703315783903465,0.000678776465507847 +1262995200,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.000702271562207224,0.00078133863076918,0.000702572494381872,0.000673709604162617 +1263081600,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.000703406766833203,0.000781275612768792,0.000702096265866653,0.000669241632490061 +1263168000,0.00071822,0.00071822,0.00071822,0.00071822,NaN,0.000704461167962338,0.000781212657685936,0.000701843862777449,0.00066533850270268 +1263254400,0.00071822,0.00071822,0.00071822,0.00071822,0.000914343192958533,0.000705440517161311,0.000781149765457792,0.000701777780699333,0.000661966928895896 +1263340800,0.00071822,0.00071822,0.00071822,0.00071822,0.000910525542094827,0.000706350156602151,0.000781086936021607,0.000701865554408832,0.000659094447966562 +1263427200,0.00071822,0.00071822,0.00071822,0.00071822,0.000906237026033955,0.000707195048202819,0.000781024169314689,0.000702079145030998,0.000656689472244806 +1263513600,0.00071822,0.00071822,0.00071822,0.00071822,0.000901549692744304,0.000707979800693563,0.000780961465274409,0.000702394397594683,0.000654721334344997 +1263600000,0.00283078,0.00283078,0.00283078,0.00283078,0.000923190255046727,0.000859080029919345,0.000783008015772113,0.000721053105485117,0.000661137949371949 +1263686400,0.00280002,0.00280002,0.00280002,0.00280002,0.000944240702147609,0.000997235507052091,0.000785021812022985,0.000754375587548919,0.000675086021018441 +1263772800,0.00294594,0.00294594,0.00294594,0.00294594,0.000967186563971869,0.00113594366040253,0.00078717928504715,0.00080073519417225,0.00069642355659771 +1263859200,0.00273583,0.00273583,0.00273583,0.00273583,0.000987391196422993,0.00124982305080741,0.000789124829017496,0.000855603204685802,0.000723648261454164 +1263945600,0.00291937,0.00291937,0.00291937,0.00291937,0.00100987539007893,0.00136866086079472,0.000791251677926827,0.000918583334854776,0.000756849874556622 +1264032000,0.00289335,0.00289335,0.00289335,0.00289335,0.00103187506588866,0.00147718773888115,0.000793350424861925,0.000987467845252907,0.000795296576504259 +1264118400,0.00304822,0.00304822,0.00304822,0.00304822,0.00105567878094414,0.0015890133053446,0.000795601699486035,0.00106195315584896,0.000838982055164192 +1264204800,0.0032111,0.0032111,0.0032111,0.0032111,0.00108134567104776,0.00170447290981731,0.000798013346744256,0.00114181034115675,0.000887911000011258 +1264291200,0.00325203,0.00325203,0.00325203,0.00325203,0.00110735192720792,0.00181462752123246,0.000800463450945196,0.00122575040110675,0.000941607383263574 +1264377600,0.00325404,0.00325404,0.00325404,0.00325404,0.00113335459055988,0.00191708443430571,0.000802913115743596,0.00131234113867157,0.000999470674883412 +1264464000,0.0033661,0.0033661,0.0033661,0.0033661,0.00116073293604132,0.0020202248919897,0.000805472216124834,0.00140133273881622,0.00106135124894764 +1264550400,0.00318532,0.00318532,0.00318532,0.00318532,0.00118577167792171,0.00210315598364294,0.000807848269704232,0.00148996739886448,0.0011259911842157 +1264636800,0.00328116,0.00328116,0.00328116,0.00328116,0.00121199595335876,0.00218700592720268,0.000810317638219964,0.00157837069602077,0.00119327368849472 +1264723200,0.00325935,0.00325935,0.00325935,0.00325935,0.00123790895427635,0.00226333503027207,0.000812762766075912,0.00166563088718179,0.00126263764095774 +1264809600,0.00324076,0.00324076,0.00324076,0.00324076,0.00126348711920749,0.00233290782239124,0.000815186892340425,0.00175103560790496,0.0013335739291195 +1264896000,0.00329826,0.00329826,0.00329826,0.00329826,0.00128966760606575,0.00240162127708564,0.000817666006670903,0.00183467262151646,0.00140589812717192 +1264982400,0.00329674,0.00329674,0.00329674,0.00329674,0.00131576683748838,0.00246533553726935,0.00082014112826286,0.0019161191985492,0.00147921337259339 +1265068800,0.00336372,0.00336372,0.00336372,0.00336372,0.00134266924355566,0.00252928225175328,0.000822680651892742,0.00199563866434687,0.00155341147869699 +1265155200,0.00349589,0.00349589,0.00349589,0.00349589,0.00137123548198244,0.00259808507755819,0.000825349599328409,0.00207402786453562,0.00162863629924593 +1265241600,0.00357028,0.00357028,0.00357028,0.00357028,0.00140069753592177,0.00266728559660896,0.000828090153471369,0.00215145263388181,0.00170479738615031 +1265328000,0.00365898,0.00365898,0.00365898,0.00365898,0.00143121907306425,0.00273787408238509,0.000830916530014566,0.00222818144664412,0.00178186248460089 +1265414400,0.00367229,0.00367229,0.00367229,0.00367229,0.0014619126643526,0.00280438550413358,0.000833753373467122,0.0023037894630215,0.0018595139744406 +1265500800,0.00373511,0.00373511,0.00373511,0.00373511,0.00149337298053069,0.00287063417168006,0.000836650104444747,0.00237836486171463,0.00193764599030793 +1265587200,0.00379478,0.00379478,0.00379478,0.00379478,0.0015255478470869,0.00293641457180572,0.000839603518177458,0.00245196188227045,0.00201614795806464 +1265673600,0.00380257,0.00380257,0.00380257,0.00380257,0.0015577749962928,0.00299806723407137,0.00084256176078544,0.00252418511546432,0.00209472139443902 +1265760000,0.00385683,0.00385683,0.00385683,0.00385683,0.00159054864330227,0.00305919368903627,0.000845571223360138,0.00259512285926775,0.00217326840845015 +1265846400,0.0038466,0.0038466,0.0038466,0.0038466,0.00162311051162494,0.00311524101469571,0.00084856746758001,0.00266430136865182,0.00225145599949981 +1265932800,0.00391053,0.00391053,0.00391053,0.00391053,0.00165640382998132,0.00317184942655636,0.000851624548408639,0.00273198720057084,0.00232926088653639 +1266019200,0.00400465,0.00400465,0.00400465,0.00400465,0.00169087880210217,0.00323112790108628,0.000854772546974323,0.00279867353759203,0.00240677721914677 +1266105600,0.00405351,0.00405351,0.00405351,0.00405351,0.00172598900150235,0.00328966479198051,0.000857966184662546,0.00286438349550798,0.00248392131701449 +1266192000,0.00414731,0.00414731,0.00414731,0.00414731,0.00176227200025523,0.00335071169953614,0.000861250284258855,0.0029295330268892,0.0025607877265015 +1266278400,0.00420345,0.00420345,0.00420345,0.00420345,0.00179925839435781,0.00341140933500452,0.000864587155487115,0.00299414361557815,0.00263732178904931 +1266364800,0.00426112,0.00426112,0.00426112,0.00426112,0.0018369320130675,0.00347189146436288,0.000867978273220538,0.00305825082161152,0.00271348052614876 +1266451200,0.004307,0.004307,0.004307,0.004307,0.0018751481989143,0.00353133421889268,0.000871411812095968,0.00312178632995509,0.00278918150846122 +1266537600,0.00441501,0.00441501,0.00441501,0.00441501,0.00191459170207117,0.0035942339741924,0.000874949760705693,0.00318523597872038,0.00286458566421758 +1266624000,0.00455934,0.00455934,0.00455934,0.00455934,0.00195582569837422,0.00366292990788148,0.000878628276901262,0.00324931418170737,0.00293997851435875 +1266710400,0.00466157,0.00466157,0.00466157,0.00466157,0.00199843058327,0.00373401278552699,0.00088240518745946,0.00331423930286704,0.00301546236481128 +1266796800,0.0047061,0.0047061,0.0047061,0.0047061,0.00204179787831819,0.0038032056379595,0.000886222786134224,0.00337968486491845,0.00309091258784418 +1266883200,0.00484966,0.00484966,0.00484966,0.00484966,0.0020871077951864,0.0038776919198198,0.000890179904418231,0.00344623386820797,0.00316658924440208 +1266969600,0.00497488,0.00497488,0.00497488,0.00497488,0.00213409320442386,0.00395578941127151,0.000894258092253871,0.0035141978579712,0.00324266017184734 +1267056000,0.00502917,0.00502917,0.00502917,0.00502917,0.00218181847845653,0.00403219229320848,0.000898386411848705,0.0035832077354907,0.00331900959666601 +1267142400,0.00510412,0.00510412,0.00510412,0.00510412,0.00223059587923418,0.00410849175948071,0.000902585440212549,0.00365312940577532,0.00339560855521827 +1267228800,0.00516823,0.00516823,0.00516823,0.00516823,0.00228018910532322,0.00418392358349981,0.000906844284031635,0.00372375095888865,0.00347238866925559 +1267315200,0.00529801,0.00529801,0.00529801,0.00529801,0.00233137365191254,0.00426322389304637,0.000911228448887829,0.00379545970869099,0.00354953467875246 +1267401600,0.00539695,0.00539695,0.00539695,0.00539695,0.0023838027494593,0.0043439221493853,0.000915707018828276,0.00386829829211273,0.00362709777401948 +1267488000,0.00547226,0.00547226,0.00547226,0.00547226,0.0024371930093606,0.00442423687138679,0.000920256307271842,0.00394208774368233,0.00370503398434841 +1272153600,0.003,0.003,0.003,0.003,0.0024596938792863,0.00432286015312161,0.000922332735217704,0.00399464951500985,0.00377368132305808 +1272240000,0.003,0.003,0.003,0.003,0.00248230899099477,0.00422869939676044,0.000924407090046081,0.00402929309241616,0.00383357033721248 +1272585600,0.003,0.003,0.003,0.003,0.00250493209818142,0.00414124097247692,0.000926479373826785,0.00404889605707343,0.00388521953845061 +1272672000,0.003,0.003,0.003,0.003,0.00252753385221867,0.00406000781044902,0.000928549588627562,0.00405595578993529,0.00392913446824214 +1272758400,0.003,0.003,0.003,0.003,0.00255014721909978,0.00398455679852981,0.000930617736514093,0.00405263529562577,0.00396580689159789 +1272844800,0.003,0.003,0.003,0.003,0.00257272337539923,0.00391447636515117,0.000932683819549997,0.00404080379191552,0.00399571411135829 +1272931200,0.003,0.003,0.003,0.003,0.00259526401070103,0.00384938423427562,0.000934747839796833,0.00402207264201078,0.00401931839539713 +1273017600,0.0031,0.0035,0.0031,0.0035,0.00262401219153239,0.00382451517787353,0.000937309002161337,0.00400214951771799,0.00403895465085748 +1273104000,0.004,0.0043,0.004,0.0043,0.00266272525683906,0.00385836003319254,0.000940666332002329,0.00398833379445154,0.00405790713060961 +1273190400,0.0043,0.0043,0.0042,0.0042,0.00270010537803642,0.00388267785514967,0.000943920469296643,0.00397879753079021,0.00407578477389395 +1273276800,0.0035,0.0035,0.0035,0.0035,0.00272863756460699,0.00385543896961931,0.000946472473655621,0.00396681305435085,0.00408996805859961 +1273449600,0.0039,0.0039,0.0039,0.0039,0.00276209999293016,0.00385861080929939,0.000949421292356704,0.00395637595762199,0.00410222804774281 +1273536000,0.004,0.0041,0.004,0.0041,0.00279793592004077,0.00387579281354991,0.000952566848079298,0.00394903105069172,0.00411343722741596 +1273622400,0.0042,0.0044,0.0042,0.0044,0.00283741699721229,0.0039131057109485,0.000956008784969487,0.00394688697752615,0.00412477549774709 +1273795200,0.004,0.004,0.004,0.004,0.00287175539622936,0.00391929081824139,0.000959047923132497,0.00394558221749278,0.00413467855314448 +1274140800,0.0047,0.0047,0.0045,0.0045,0.00291223027191882,0.00396062550932815,0.000962583229849895,0.00394930160463931,0.00414511916641876 +1274227200,0.0046,0.0046,0.0046,0.0046,0.00295379849947578,0.00400613597806336,0.000966214847466381,0.00395798663134473,0.00415638983374246 +1274313600,0.0045,0.0045,0.0045,0.0045,0.00299394208301715,0.00404128905885984,0.000969742998685712,0.00396981728808346,0.00416799979089514 +1274486400,0.0043,0.0047,0.0043,0.0047,0.00303640150414756,0.00408817588986368,0.000973467308517669,0.00398586250090066,0.00418063160416819 +1274572800,0.0049,0.0049,0.0045,0.0045,0.00307617022476657,0.0041174893963645,0.000976988218838587,0.00400350733298754,0.00419339543314083 +1274745600,0.0048,0.0048,0.0048,0.0048,0.00311948112209488,0.00416607027962051,0.000980805135570933,0.0040249090453092,0.00420736473838504 +1274832000,0.0046,0.0046,0.0046,0.0046,0.0031600143591963,0.004196957256284,0.000984418560332983,0.00404748754575726,0.0042216290165758 +1274918400,0.0046,0.0046,0.0046,0.0046,0.00320026583087472,0.00422564570797303,0.000988028377431175,0.00407083899321356,0.00423610932192242 +1275004800,0.0045,0.0045,0.0045,0.0045,0.00323896973184813,0.00424517415743705,0.000991534749897972,0.00409375999491324,0.00425035497684611 +1275091200,0.0045,0.0045,0.0045,0.0045,0.00327739135244368,0.00426331257820622,0.000995037621582532,0.00411612872674602,0.00426433213668459 +1275177600,0.0045,0.0045,0.0045,0.0045,0.00331549803585586,0.00428015991207193,0.000998536995980054,0.00413784973940693,0.00427801084830424 +1275868800,0.0046,0.0046,0.0045,0.0045,0.00335327542054888,0.00429580805818092,0.00100203287658225,0.00415885010702766,0.00429136483233755 +1276041600,0.0046,0.0046,0.0046,0.0046,0.00339199365433925,0.00431746034187324,0.0010056251074468,0.00417994053856766,0.00430474889837329 +1276128000,0.005,0.005,0.005,0.005,0.0034353897911201,0.00436604329321852,0.00100961311408538,0.00420438064175732,0.00431962045993429 +1276473600,0.005,0.005,0.005,0.005,0.00347842448911663,0.00441116812585477,0.00101359713907542,0.004231365209494,0.00433579688468141 +1276819200,0.005,0.005,0.005,0.005,0.00352109636524314,0.00445308098754936,0.00101757718639223,0.00426020980929851,0.00435310614091063 +1277164800,0.005,0.005,0.005,0.005,0.00356339083735647,0.00449201050535148,0.00102155326000713,0.00429033528557123,0.00437138654588304 +1277251200,0.005,0.005,0.005,0.005,0.00360529167119123,0.00452816903271112,0.00102552536388749,0.00432125409965368,0.00439048649647216 +1277337600,0.0051,0.0054,0.005,0.005,0.00364678052549505,0.00456175380782866,0.00102949350199672,0.00435255829992182,0.00441026418464931 +1277510400,0.0044,0.0044,0.0044,0.0044,0.00368031881325004,0.00455024022428508,0.00103285863487759,0.00437872208937673,0.00442832153030541 +1277683200,0.005,0.0058,0.0044,0.0058,0.00373095547036927,0.00463919771950737,0.00103761817596288,0.00441253337659422,0.00445002341088436 +1277856000,0.0054,0.0054,0.0054,0.0054,0.00377606841427428,0.00469335137891229,0.00104197360281746,0.00444888599920704,0.00447346748704277 +1277942400,0.0055,0.0066,0.0055,0.0066,0.00383566776056956,0.00482906600895307,0.00104752276802243,0.00449738879013035,0.00450294863826214 +1278028800,0.0055,0.0055,0.0055,0.0055,0.00388085542548609,0.00487682287268226,0.00105196814664535,0.0045459588943006,0.00453368832649093 +1278115200,0.0061,0.0065,0.0055,0.0065,0.00393801071953949,0.00499236009379797,0.0010574074926714,0.00460280924608247,0.00456923974697382 +1278201600,0.0055,0.0068,0.0055,0.0068,0.00399836456906348,0.00512102731564676,0.00106314092973175,0.00466857364578316,0.00461019241874408 +1278288000,0.0055,0.008,0.0055,0.008,0.00407315414163745,0.00532595165694024,0.00107006672932926,0.00475147672647707,0.00466046399559637 +1278374400,0.0058,0.0058,0.0058,0.0058,0.00411971324129325,0.00535969426414549,0.00107478912164117,0.00482874452018953,0.00471076448256463 +1278460800,0.0058,0.008,0.0058,0.008,0.00419318838312192,0.00554763036950487,0.00108170329161754,0.00491972669729574,0.00476920929554908 +1278547200,0.0063,0.0063,0.0063,0.0063,0.00424461050595512,0.00560118379561981,0.00108691326876664,0.00500650898152289,0.00482846558432617 +1278720000,0.0081,0.0081,0.0081,0.0081,0.00431782181668474,0.00577904872204967,0.00109391517449493,0.00510464638553621,0.00489503789489141 +1278806400,0.0084,0.0084,0.007,0.007,0.0043763739600291,0.00586595563775096,0.00109981184321675,0.00520176794531691,0.00496389888105637 +1278892800,0.012,0.014,0.01,0.014,0.00452170120546769,0.00644493427552859,0.00111269146453224,0.00535772740944945,0.00506102789319748 +1278979200,0.016,0.017,0.0125,0.0125,0.00464701752236498,0.00687593188860764,0.00112406061821877,0.00554777690953495,0.00517799025379718 +1279065600,0.0183,0.0625,0.0183,0.0201,0.00486624617853566,0.00781721676486758,0.0011430063041555,0.00582992909700407,0.00534135771696947 +1279152000,0.0251,0.0725,0.0251,0.045,0.00539575814048298,0.0104638752077661,0.00118679337640386,0.0064006683276539,0.00564059725374812 +1279238400,0.0472,0.0925,0.0448,0.075,0.0062985264711648,0.0150575356250942,0.00126048890222411,0.00746323385560975,0.00617631493024242 +1279324800,0.04951,0.04951,0.04951,0.04951,0.00687810789105799,0.0175098508576546,0.00130866148885963,0.00870088002292012,0.00683012390448618 +1279411200,0.05941,0.08585,0.05941,0.08584,0.00790902031601654,0.0223735686968622,0.00139305805859051,0.010385927848239,0.0077267069562762 +1279497600,0.0909,0.09307,0.07723,0.0808,0.00887027010251182,0.0265323431145549,0.00147233840160543,0.0123809124357853,0.00882300419633808 +1279584000,0.08181,0.08181,0.07426,0.07474,0.00975313861419372,0.0299637484857286,0.00154548925216593,0.014561245757094,0.0100750108818154 +1279670400,0.07425,0.07921,0.06634,0.07921,0.0106895344194835,0.0334690806855032,0.00162302994195496,0.0169138573064523,0.011481639995958 +1279756800,0.07921,0.08181,0.0505,0.05149,0.0112763516093887,0.0347518038735684,0.00167281740882699,0.0191482304326492,0.0129197544934108 +1279843200,0.0505,0.06767,0.0505,0.06262,0.0120004813346809,0.0367354530291454,0.00173366742298805,0.021362230365461,0.0144232766582574 +1279929600,0.06161,0.06161,0.05049,0.05454,0.0126211980158057,0.0380027749040144,0.00178638956613713,0.0234704804525265,0.0159504551632339 +1280016000,0.05545,0.05941,0.0505,0.0505,0.0131890772944638,0.0388923233303367,0.0018350255121926,0.0254385810872232,0.0174782554048683 +1280102400,0.05,0.056,0.05,0.056,0.0138238747380614,0.0401100422033381,0.00188910413116217,0.0273219144719521,0.0190216246713519 +1280188800,0.0559,0.0605,0.053,0.06,0.0145068874035591,0.0415258029439621,0.00194712238050849,0.0291538086907802,0.0205885161519935 +1280275200,0.06,0.062,0.054,0.0589,0.0151741387056707,0.0427624926515657,0.00200398445784037,0.0309180389163698,0.0221668589521739 +1280361600,0.0597,0.0699,0.0571,0.0699,0.0159771822561756,0.044694131617072,0.00207177222638964,0.0327064435002917,0.0237912582775845 +1280448000,0.0698,0.0698,0.0582,0.0627,0.0166879775444529,0.0459757834847129,0.00213230379424456,0.0344370336258154,0.0254244747790392 +1280534400,0.065,0.06889,0.056,0.06785,0.0174609959007893,0.0475327831169318,0.00219791671636398,0.0361496202752604,0.027079039153348 +1280620800,0.061,0.065,0.06,0.0611,0.0181471468070545,0.0484984932113897,0.00225672489173064,0.037774238725243,0.0287213983002841 +1280707200,0.0625,0.0633,0.06,0.06001,0.0188174227007667,0.0493178785285107,0.00231438609047316,0.0393030193870845,0.0303422717978097 +1280793600,0.06,0.065,0.059,0.06,0.0194852335240439,0.0500782284679384,0.00237197973588955,0.0407396528438179,0.0319373278059699 +1280880000,0.0623,0.06231,0.057,0.057,0.0201131307581461,0.0505709179191098,0.00242652066239898,0.0420621241021039,0.0334914092036775 +1280966400,0.0581,0.061,0.058,0.061,0.0207887380051955,0.0513132565968393,0.00248500075771469,0.043313821760313,0.0350172363053827 +1281052800,0.062,0.0624,0.0607,0.0623,0.0214780581804774,0.0520952894264974,0.00254472039357304,0.0445077122119085,0.0365163586228426 +1281139200,0.0608,0.0622,0.059,0.059,0.0221235327918488,0.0525867644841759,0.00260108566621511,0.0456151966832489,0.0379729238643477 +1281225600,0.059,0.061,0.059,0.0609,0.0227904087127939,0.053178497890108,0.00265929163426751,0.0466584468712468,0.0393922249462921 +1281312000,0.06091,0.0735,0.0593,0.0704,0.0235739355669691,0.0544043188210025,0.00272692434324744,0.0477219585777225,0.0408079452307456 +1281398400,0.068,0.0709,0.06651,0.07,0.0243497239784209,0.0555144143457008,0.0027940901650678,0.0487894875561142,0.0422135324982993 +1281484800,0.06,0.07541,0.06,0.067,0.0250852161199769,0.0563319546048943,0.00285819371106576,0.049825158751673,0.0435932115557952 +1281571200,0.068,0.07,0.06141,0.07,0.0258556959203656,0.0573048416401149,0.00292522847280178,0.0508516019753821,0.0449553040185925 +1281657600,0.0665,0.068,0.0645,0.0645,0.0265544875947027,0.0578169906769624,0.00298670507533036,0.0518140339913911,0.0462753919689249 +1281744000,0.0655,0.0695,0.0645,0.067,0.0272819847952599,0.0584706343002044,0.00305061631350507,0.052737096479698,0.047561502488674 +1281830400,0.067,0.067,0.065,0.06529,0.0279852033188556,0.0589560345374713,0.00311275646859811,0.0536050078757531,0.0488052103200408 +1281916800,0.06319,0.0679,0.062,0.0655,0.0286882006130558,0.0594218318752314,0.00317504424780228,0.0544218595156118,0.050006217144129 +1282003200,0.0655,0.0769,0.06243,0.07,0.0294447594636719,0.0601747824491779,0.00324176266415813,0.055228544660869,0.0511806115119951 +1282089600,0.06999,0.0733,0.067,0.068,0.030173248286897,0.0607317788947487,0.00330641765707822,0.0560026028478893,0.0523186687145257 +1282176000,0.0675,0.0679,0.0667,0.0667,0.0308825294187248,0.0611565949360174,0.00336971017068238,0.0567318894405821,0.0534142714957896 +1282262400,0.0667,0.0667,0.065,0.0655,0.0315738524768682,0.0614657570988072,0.00343174140584718,0.0574076646759097,0.0544623606628532 +1282348800,0.0655,0.0669,0.0644,0.0664,0.0322735173172213,0.0618169749070915,0.00349460927379858,0.0580413549922606,0.0554664167959859 +1282435200,0.065,0.0664,0.0612,0.066,0.0329650992746553,0.062114721275592,0.00355701501183482,0.0586314864557132,0.056424881655076 +1282521600,0.066,0.06689,0.063,0.06491,0.0336399612169804,0.0623136883079797,0.00361827018141987,0.0591712581554166,0.0573338960183389 +1282608000,0.06491,0.0665,0.06491,0.065,0.0343130283456897,0.0625048991023676,0.0036795540500073,0.0596657111941174,0.0581945715443634 +1282694400,0.06499,0.0665,0.0641,0.0648,0.0349807279049551,0.0626682636393795,0.00374057705129245,0.0601168776311399,0.0590070127928923 +1282780800,0.0648,0.0658,0.064,0.064,0.0356354513759334,0.0627630562013097,0.00380074040231005,0.0605216165765359,0.0597692318099828 +1282867200,0.064,0.065,0.063,0.065,0.0362999102236429,0.062922281134894,0.00386184209158986,0.060893305946394,0.060486396628839 +1282953600,0.065,0.065,0.0641,0.0646,0.0369567093831154,0.0630417006192038,0.00392248341431737,0.061231134686115,0.0611581192158481 +1283040000,0.0647,0.0648,0.064,0.064,0.0376034068291954,0.0631099120581101,0.00398246514898626,0.0615329993161613,0.0617834608757545 +1283126400,0.0646,0.069,0.03211,0.06497,0.038259828857654,0.0632423125141169,0.00404335545107334,0.0618110524754824,0.0623676666371047 +1283212800,0.06411,0.0649,0.06,0.06,0.0388516970985101,0.0630115257616639,0.00409922288363454,0.0620241480783977,0.0628932597932393 +1283299200,0.062,0.0629,0.05961,0.0629,0.0394782407505754,0.0630035873941446,0.00415792991434691,0.0622070313227126,0.0633741902663027 +1283385600,0.061,0.0634,0.0601,0.0634,0.0401101393980569,0.0630318039147726,0.00421707753447274,0.0623678005405322,0.0638143274769874 +1283472000,0.061,0.063,0.06085,0.06085,0.0407111385422843,0.0628765038202297,0.00427362016675693,0.0624869428480022,0.0642058482350251 +1283558400,0.06125,0.06238,0.0612,0.06238,0.0413276616868945,0.0628411628394475,0.0043316339072676,0.0625840355981721,0.0645571853351895 +1283644800,0.06245,0.064,0.0605,0.0616,0.0419305991045765,0.0627528172713586,0.0043888109700877,0.0626554061432199,0.0648674831115386 +1283731200,0.0627,0.0627,0.0616,0.0616,0.0425295957634734,0.0626707601121334,0.00444593094700269,0.0627049982943795,0.06513905912737 +1283817600,0.0616,0.06201,0.0603,0.061,0.0431169518935759,0.0625518359496017,0.00450239485159078,0.0627310580088376,0.0653719143514879 +1283904000,0.061,0.062,0.06099,0.062,0.0437124895727495,0.062512556445809,0.00455980078798946,0.0627461772775377,0.0655722379439705 +1283990400,0.0611,0.0624,0.06109,0.06111,0.0442921427715537,0.0624127229332,0.00461626082890627,0.0627444714194599,0.0657386785101065 +1284076800,0.061,0.0618,0.06014,0.0618,0.0448750386305599,0.0623691095136758,0.0046733533997259,0.0627349033108499,0.065876094035646 +1284163200,0.0619,0.065,0.0619,0.06366,0.0454761208644512,0.0624609946795302,0.00473224600358943,0.0627350289446051,0.0659934573180102 +1284249600,0.0621,0.0621,0.0615,0.0615,0.046046569367581,0.0623925913901348,0.00478892325244185,0.0627244557909584,0.0660838733145758 +1284336000,0.062,0.064,0.0607,0.06218,0.0466220873486078,0.0623774592039821,0.0048462228302785,0.0627110506760115,0.06615185963279 +1284422400,0.062,0.175,0.061,0.06199,0.0471899078377536,0.0623498799835936,0.0049032755028084,0.0626937891155212,0.0661983491086657 +1284508800,0.0625,0.0625,0.0604,0.0604,0.0477328945872819,0.0622110881592006,0.00495868374857095,0.0626597589698402,0.0662189896463937 +1284595200,0.0618,0.0619,0.0618,0.0619,0.0482898624037046,0.0621889450049932,0.00501553428296712,0.0626251947692428,0.0662215655113297 +1284681600,0.06089,0.0609,0.059,0.06,0.0488187520092968,0.0620331366099661,0.00507043108664651,0.0625740649883572,0.0662004279726688 +1284768000,0.059,0.061,0.05761,0.061,0.0493546481197371,0.0619595982813762,0.00512627148673898,0.0625183936118346,0.0661614493479464 +1284854400,0.06091,0.0627,0.06,0.0627,0.0499070289530777,0.0620122998354083,0.00518375342513862,0.0624741632405947,0.0661127134367837 +1284940800,0.0621,0.0634,0.062,0.0621,0.0504471074124761,0.0620185423046606,0.00524057892982694,0.0624345407884628,0.0660529681153572 +1285027200,0.0631,0.0633,0.0623,0.06265,0.0509888438997732,0.0620634892584735,0.00529789682273975,0.0624038063638289,0.0659854520208907 +1285113600,0.06231,0.0624,0.06147,0.0622,0.0515200033394075,0.0620732060487504,0.00535470820657937,0.0623767595905946,0.0659093814896097 +1285200000,0.0621,0.063,0.0615,0.06231,0.052046894507092,0.0620900609653482,0.00541157269423625,0.0623539313476398,0.0658261865106385 +1285286400,0.06209,0.0624,0.06209,0.0622,0.052567296920582,0.0620978863901537,0.00546827058343844,0.0623338200717641,0.0657363716110722 +1285372800,0.06221,0.0624,0.0617,0.06202,0.0530797744662437,0.0620923424621808,0.00552473215212019,0.0623145618214953,0.0656401590798717 +1285459200,0.06204,0.06228,0.06186,0.062,0.0535861748235986,0.0620857695556928,0.00558111738113635,0.0622959989350475,0.065538380670623 +1285545600,0.06205,0.06228,0.0619,0.0622,0.0540887984390608,0.0620939004416447,0.00563764599595768,0.0622798975384113,0.0654326492183466 +1285632000,0.06196,0.06271,0.0617,0.0619,0.0545810679309074,0.0620800986711394,0.00569381865057972,0.0622633669547735,0.0653225672143159 +1285718400,0.062,0.062,0.0615,0.06183,0.0550655037156152,0.0620622967288979,0.00574986533370491,0.0622460210535538,0.0652086559216947 +1285804800,0.06174,0.0619,0.06155,0.0619,0.055543363705491,0.0620507445004088,0.00580592594790112,0.062228759481426,0.0650919354237781 +1285891200,0.06189,0.062,0.06189,0.06197,0.0560142010431943,0.0620449971330756,0.00586200047925949,0.0622123216401542,0.0649733496804524 +1285977600,0.06188,0.06191,0.06125,0.0614,0.0564703936332268,0.0619990864464789,0.00591744993424059,0.0621917760702538,0.0648513526146781 +1286064000,0.06139,0.0614,0.061,0.06111,0.0569150710269777,0.0619358015617741,0.00597255449051869,0.0621655217459882,0.0647255998447642 +1286150400,0.06119,0.062,0.06081,0.06129,0.0573536887635731,0.0618898336162038,0.00602778374311901,0.0621363538999817,0.0645975653054594 +1286236800,0.0614,0.06301,0.0609,0.0614,0.0577848686364002,0.0618549674183793,0.00608306767914542,0.062105992197991,0.0644683418881836 +1286323200,0.0615,0.0635,0.0612,0.06281,0.0582243409098946,0.0619229463275805,0.0061397041714045,0.0620870998828748,0.0643438432197226 +1286409600,0.0632,0.067,0.0628,0.067,0.0587063529031676,0.0622843293602111,0.00620046743732703,0.0621140281276967,0.0642399603505466 +1286496000,0.067,0.088,0.01,0.08685,0.0594241331057376,0.0640329058234929,0.00628098838989413,0.0623500179289386,0.0642302919497076 +1286582400,0.083,0.12001,0.068,0.0938,0.0602174727917852,0.0661517179259815,0.00636836786946023,0.062816041597323,0.0643331091859218 +1286668800,0.093,0.1301,0.07999,0.0965,0.0610306108236873,0.0683118987943887,0.00645835580423143,0.063490624099361,0.064548655755636 +1286755200,0.091,0.103,0.091,0.095,0.0618126847273298,0.0702115491765049,0.00654675628599442,0.064317987258441,0.0648608685482682 +1286841600,0.094,0.099,0.082,0.0949,0.0625772364044352,0.0719688650934143,0.00663496866764357,0.0652630247930732,0.0652599719636409 +1286928000,0.092,0.105,0.092,0.105,0.0634523470048488,0.0743200105557161,0.00673317687506273,0.0663840142417562,0.0657752115282477 +1287014400,0.1045,0.1045,0.065,0.102,0.0642722272036451,0.0762902632207409,0.00682829181376494,0.0676141327512783,0.0663834383194775 +1287100800,0.1,0.119,0.092,0.105,0.0651138098003528,0.0783338129668617,0.00692630700625414,0.0689493308775532,0.0670857781858321 +1287187200,0.1,0.103,0.1,0.101,0.065881560894776,0.0799471848035049,0.00702023071703913,0.0703248555738928,0.0678564718720723 +1287273600,0.102,0.1045,0.10001,0.102,0.0666403872728106,0.0815168970318875,0.00711505905955089,0.0717303102405617,0.0686905735751162 +1287360000,0.103,0.103,0.097,0.1024,0.0673744603092895,0.0830033495234872,0.00721019208718328,0.0731516961092803,0.069581052788329 +1287446400,0.1,0.1019,0.097,0.097,0.0680093083718164,0.0839996265617526,0.007299838742709,0.0745272192793224,0.070499361428787 +1287532800,0.1,0.103,0.094,0.099,0.0686248256303179,0.0850673482746731,0.00739139270589229,0.075870410086571,0.0714472180945982 +1287619200,0.0972,0.109,0.097,0.107,0.0693010188866957,0.0866285073061773,0.00749084250663317,0.0772445477899082,0.0724487413783891 +1287705600,0.1015,0.10901,0.1015,0.1025,0.0698600694863258,0.0877582350049855,0.00758570019050156,0.0785933647829771,0.073478593009617 +1287792000,0.108,0.109,0.10449,0.1055,0.0703829908614852,0.0890210880791902,0.00768345838500162,0.0799356247258272,0.0745418042312979 +1287878400,0.108,0.19,0.108,0.11501,0.0709781396605553,0.0908709703949381,0.00779061381531804,0.0813430982827465,0.0756674361368298 +1287964800,0.09009,0.19,0.09009,0.132,0.0718061208351865,0.0937985213736827,0.00791462517379172,0.0829389294409021,0.0769100898029615 +1288051200,0.133,0.18,0.133,0.1503,0.0728103838535737,0.0978202782845882,0.00805678354282776,0.084834123901528,0.0783242289173157 +1288137600,0.151,0.19,0.151,0.1877,0.0743056455272284,0.104217887705572,0.0082361403531119,0.087282531725984,0.0800311658659866 +1288224000,0.1845,0.191,0.1731,0.1731,0.0756371841699229,0.109120894102803,0.00840074136939601,0.0900386837738031,0.0819444261377033 +1288310400,0.1799,0.19,0.173,0.19,0.0771926525568866,0.114877842611022,0.00858205110332474,0.093170284039965,0.0841030614297094 +1288396800,0.1876,0.199,0.1875,0.1989,0.0788989071133176,0.120858512504339,0.00877206562726344,0.0966606283363909,0.0865116662296397 +1288483200,0.194,0.1989,0.171,0.1925,0.080505314064032,0.125957930332831,0.0089555006431748,0.100360608423855,0.0891157232953153 +1288569600,0.1925,0.1955,0.172,0.1955,0.0821566728986305,0.130907912281663,0.00914174773360511,0.104227002734069,0.0919001096474226 +1288656000,0.192,0.195,0.1905,0.1938,0.0837791258504312,0.135384550673648,0.00932611158419916,0.108182184379466,0.0948325586207699 +1288742400,0.1938,0.275,0.125,0.1931,0.0853715202311181,0.139492717624985,0.00950959248088879,0.112170167659389,0.0978867641541936 +1288828800,0.1988,0.23601,0.1934,0.23,0.0874113222174048,0.145934996610042,0.00972973135933237,0.1164696525522,0.101180185295896 +1288915200,0.2101,0.2639,0.2101,0.2639,0.0898659501437515,0.154331707265461,0.00998349640290873,0.12128129579124,0.104808062037651 +1289001600,0.262,0.5,0.2402,0.39,0.0938810753195307,0.17110649985549,0.0103629070440935,0.127562793852388,0.109204446970996 +1289088000,0.46999,0.46999,0.286,0.34,0.0972727253272602,0.18312828438091,0.0106920185948099,0.13456698825798,0.114098582154533 +1289174400,0.3459,0.37,0.2261,0.243,0.0994379288848134,0.187389933667141,0.0109239562063162,0.14126664824901,0.11906336567142 +1289260800,0.251,0.323,0.199,0.223,0.101359114226338,0.189924646631366,0.0111356941361009,0.147484958896878,0.123998516613548 +1289347200,0.21,0.24,0.14,0.2362,0.103440730814682,0.193218511265347,0.0113603996206979,0.153367622945387,0.128937764876678 +1289433600,0.2299,0.24,0.21,0.2231,0.10535076852752,0.195345465935358,0.0115718016434618,0.158810053420667,0.133812640780877 +1289520000,0.2289,0.29,0.223,0.2682,0.107819343583769,0.200531228024932,0.0118280206980631,0.164233137529215,0.138780518990929 +1289606400,0.28,0.3,0.2683,0.276,0.110368463830099,0.205903070720513,0.0120917715065182,0.169660853399525,0.143844186954146 +1289692800,0.276,0.299,0.2702,0.27904,0.112944597777195,0.211108933609828,0.0123582941379753,0.175071738579352,0.148987858280545 +1289779200,0.27904,0.2828,0.2682,0.2682,0.115376717622834,0.215172657186412,0.0126137279539915,0.180328292537884,0.154144371880379 +1289865600,0.2683,0.275,0.223,0.225,0.117249271556835,0.215872164258391,0.0128257756174299,0.185038985073851,0.159130027964166 +1289952000,0.223,0.29,0.2116,0.23,0.119164042844677,0.21687777902125,0.0130426035997461,0.18930310359537,0.163959407721681 +1290038400,0.2221,0.283,0.2221,0.2678,0.121550869491755,0.220502406183565,0.013296954835021,0.1934897390921,0.168770304818363 +1290124800,0.2683,0.28,0.2682,0.2752,0.124029159584295,0.224395763159159,0.0135584403267133,0.197640408760262,0.173574067913165 +1290211200,0.28,0.29,0.26825,0.28301,0.126597192946371,0.228567905514073,0.0138274622982755,0.201793123663815,0.178382655970514 +1290297600,0.27631,0.282,0.27631,0.27675,0.129087681313663,0.231997491361945,0.014089965657122,0.205857505889138,0.183153860629728 +1290384000,0.27679,0.2879,0.269,0.2845,0.131664233895132,0.235734602886963,0.0143599445752523,0.209881078888642,0.187902109158739 +1290470400,0.2825,0.28449,0.276,0.28295,0.134215617778641,0.239095379529578,0.014628106416067,0.2138228964039,0.192605569414549 +1290556800,0.28295,0.28299,0.2761,0.2828,0.136755102265564,0.242206260230203,0.0148958507617186,0.21766208173687,0.197249721444135 +1290643200,0.2825,0.2825,0.278,0.28,0.139247290299771,0.244896406360951,0.0151605322539463,0.221359438479135,0.201811496656235 +1290729600,0.27899,0.289,0.27612,0.2844,0.14179303633348,0.247708259335175,0.0154293424717206,0.224946188360291,0.206297288164598 +1290816000,0.2844,0.2844,0.28255,0.283,0.144317085815999,0.250220313981662,0.0156964865398705,0.228398833842789,0.210691330007558 +1290902400,0.283,0.28461,0.27,0.27,0.146672466148096,0.251628225612894,0.0159503846158334,0.23159892397242,0.214935738300332 +1290988800,0.279,0.279,0.2151,0.2299,0.148517292073301,0.250081617565726,0.0161639931301631,0.234216920939342,0.218875778475357 +1291075200,0.2299,0.2299,0.204,0.2082,0.150085495537155,0.247100497620196,0.0163557229729656,0.236145812490733,0.222440505136792 +1291161600,0.2095,0.2299,0.2095,0.2275,0.151891444799151,0.245705340560988,0.0165665306215046,0.237657952384357,0.225721249861637 +1291248000,0.228,0.2553,0.218,0.255,0.154035333853972,0.246366931403248,0.0168045839550849,0.239051893096144,0.228833616750584 +1291334400,0.25,0.2552,0.243,0.25105,0.156122827505859,0.246700270706062,0.0170384559123681,0.240302395455225,0.231765252497117 +1291420800,0.255,0.2589,0.205,0.206,0.157639116593246,0.243803238646593,0.0172271161940215,0.241034636369308,0.234350331380885 +1291507200,0.22,0.235,0.19,0.19,0.158947327400129,0.239973541581723,0.0173996136250637,0.241195862548455,0.236548136601365 +1291593600,0.225,0.225,0.1841,0.204,0.160426208783017,0.237412956567251,0.0175859165134112,0.241006953015202,0.238436164219553 +1291680000,0.1938,0.2477,0.1701,0.24021,0.162353521265026,0.237612049211006,0.0178081856660908,0.240844649481503,0.240170362311861 +1291766400,0.24,0.24,0.22,0.2388,0.16425606538451,0.237696607162614,0.0180288251519536,0.2406934484319,0.241751936728043 +1291852800,0.226,0.233,0.1701,0.2,0.165670142455126,0.23501337489932,0.0182105062091516,0.240217272246116,0.243041371916223 +1291939200,0.2,0.204,0.18251,0.204,0.167121417738573,0.232805852939466,0.0183959994977255,0.239512437510178,0.244073742639761 +1292025600,0.204,0.228,0.1907,0.228,0.168865882342589,0.232463773886988,0.0186052693254111,0.238833054575972,0.244957637868797 +1292112000,0.208,0.2279,0.20676,0.22,0.170504349778833,0.231576606506865,0.0188063429713533,0.238111325723134,0.245672133509521 +1292198400,0.21,0.23,0.21,0.2299,0.172255360517147,0.231457266199854,0.0190171000805977,0.237446581431952,0.24626631969084 +1292284800,0.2289,0.2468,0.21,0.24669,0.174208261767021,0.232541527247921,0.0192444100003542,0.236979609626275,0.246811585606074 +1292371200,0.245,0.246,0.238,0.24,0.176066772224369,0.233072418917746,0.0194648136384964,0.236621546867445,0.247284768249098 +1292457600,0.23801,0.255,0.22221,0.24996,0.178039641379354,0.234274471458268,0.0196949413451082,0.23644227957649,0.247727821350381 +1292544000,0.249,0.249,0.24,0.24,0.179874975937018,0.234682012721632,0.0199148951701903,0.236325553669017,0.248104021776309 +1292630400,0.2487,0.24881,0.241,0.241,0.181712353896113,0.235131725005585,0.0201356277978153,0.236269933774934,0.248421409265709 +1292716800,0.248,0.2499,0.24,0.2401,0.183525214603509,0.23548536520722,0.020355241479603,0.23625728576584,0.248680387141465 +1292803200,0.2401,0.275,0.24,0.267,0.185662092281368,0.237728566683606,0.0206014930110215,0.236512643320259,0.248986525675912 +1292889600,0.26,0.267,0.24,0.24,0.187451729836095,0.237890246569866,0.020820541729758,0.236752870865297,0.24923269936221 +1292976000,0.244,0.25,0.244,0.25,0.189353716373487,0.238752214888768,0.021049355805951,0.23706502184785,0.249460839872969 +1293062400,0.248,0.25,0.241,0.25,0.19124388894399,0.239552828582485,0.0212779414328674,0.237433645092906,0.249671618941299 +1293148800,0.25,0.25,0.242,0.248,0.193097354222998,0.24015409550243,0.0215043020272033,0.237828251385588,0.249858164182248 +1293235200,0.2475,0.25,0.2475,0.2499,0.194958764997293,0.240847805821506,0.0217323335926523,0.238257247430588,0.25002900654779 +1293321600,0.2499,0.27,0.24639,0.265,0.196996788546234,0.242566951164468,0.0219752134160744,0.238841362698496,0.250241857888096 +1293408000,0.251,0.27,0.251,0.265,0.199016577152169,0.244163728299871,0.0222178507468976,0.239548043548649,0.250492342636904 +1293494400,0.264,0.281,0.2612,0.281,0.201218830156899,0.24678572216417,0.0224762203183397,0.240487764795579,0.250836735672291 +1293580800,0.271,0.301,0.271,0.2965,0.20359992328543,0.250324368325614,0.0227498072203946,0.241745076071215,0.251324284380187 +1293667200,0.291,0.3,0.291,0.3,0.206007133876389,0.253860263665829,0.0230266153916593,0.243283053118826,0.251954192933436 +1293753600,0.3,0.3,0.292,0.3,0.208397310007849,0.257144475123312,0.0233031471960695,0.245038635808621,0.252711978587484 +1293840000,0.292,0.3,0.292,0.3,0.210768937705225,0.260194917475152,0.0235794029095515,0.246958064025734,0.253583907081368 +1293926400,0.29459,0.3,0.289,0.29997,0.213121284956139,0.263026094940155,0.0238553528555851,0.248995434089335,0.254556867574462 +1294012800,0.29,0.2999,0.29,0.295,0.215391617783076,0.265301987125092,0.0241260652153198,0.251069256855735,0.255599827600846 +1294099200,0.29601,0.29987,0.289,0.29895,0.21769063471154,0.26769704176097,0.0244004509967861,0.253189287989599,0.256717813312366 +1294185600,0.29004,0.299,0.29004,0.29892,0.219967312145643,0.269919481794924,0.0246745328777548,0.255328747835444,0.257900110591346 +1294272000,0.299,0.299,0.29,0.298,0.222210045366285,0.271918243967149,0.0249474225805739,0.257457743245164,0.259133312528705 +1294358400,0.2975,0.322,0.2975,0.32,0.224704275359246,0.275340687756497,0.0252420047540382,0.259749909447206,0.260491512305491 +1294444800,0.3092,0.3229,0.309,0.3229,0.227208528576299,0.278725944166479,0.0255391881914969,0.26218156927786,0.26196990435493 +1294531200,0.32291,0.323,0.32291,0.323,0.229686174325558,0.281877357091438,0.0258361747598888,0.264707832584247,0.263553064226953 +1294617600,0.32291,0.329,0.3175,0.32659,0.232179439975295,0.285059988502054,0.0261364490916428,0.267321121004283,0.26523966251806 +1294704000,0.32659,0.32659,0.31761,0.32659,0.23463967306305,0.288016081241794,0.0264364236277941,0.269983412943923,0.2670145353871 +1294790400,0.3265,0.3557,0.31799,0.3188,0.236965075874828,0.290207270587995,0.0267283210873004,0.272595662206001,0.268834057691127 +1294876800,0.31868,0.405,0.3176,0.3176,0.239233795336484,0.292157076177153,0.0270187290278875,0.275133785906918,0.270683030576717 +1294963200,0.3176,0.45,0.3176,0.4,0.242485700572497,0.299833300494135,0.0273911156527576,0.278301312836905,0.272863133514894 +1295049600,0.4,0.4,0.385,0.386,0.24550127891915,0.305966618199315,0.0277491528049782,0.281838234913814,0.275285111789446 +1295136000,0.3994,0.4,0.386,0.38679,0.248454741457524,0.311719600284429,0.0281076212313658,0.285655308423782,0.277922237332154 +1295222400,0.38679,0.38679,0.315,0.3495,0.25089871219229,0.314408796874447,0.0284285012124884,0.28934749965178,0.280605441289565 +1295308800,0.3495,0.3495,0.305,0.31299,0.252853460843448,0.314307807373398,0.0287126090333053,0.292589413687641,0.283182801247397 +1295395200,0.31299,0.31299,0.305,0.31299,0.25478104859107,0.314214006272258,0.0289964331992562,0.295432863434498,0.285653583665838 +1295481600,0.31299,0.39,0.31,0.39,0.25763952468529,0.319608428709239,0.0293568612160748,0.298589651375661,0.288308331402866 +1295568000,0.3899,0.44,0.368,0.41991,0.260827982237278,0.326747862000554,0.0297467916938307,0.30223549438992,0.291234326503749 +1295654400,0.41,0.4443,0.39,0.4443,0.26429579429041,0.335115185031474,0.0301606839776653,0.306463006329367,0.294489560538356 +1295740800,0.4443,0.4443,0.42,0.4424,0.267704166177987,0.342751683341341,0.0305722660582673,0.311116080981411,0.298026572607551 +1295827200,0.4424,0.4424,0.381,0.4199,0.270801377286646,0.348243075482399,0.0309609730848507,0.315884530602746,0.301723081631361 +1295913600,0.4199,0.425,0.4,0.41,0.273735192867539,0.352638913326176,0.0313394078077499,0.320621093095696,0.305514182241951 +1296000000,0.41123,0.42,0.3904,0.417,0.27671687407966,0.357220114587045,0.0317244535391282,0.325350989193206,0.309403949578179 +1296086400,0.4095,0.45,0.40851,0.4212,0.279710722571237,0.361774182065885,0.0321133081425724,0.33007082009346,0.313385166107306 +1296172800,0.4223,0.446,0.4212,0.446,0.282956359309323,0.367769348450706,0.0325265349725891,0.334955958410087,0.317528674055511 +1296259200,0.445,0.445,0.43,0.439,0.28604722814322,0.372839523109874,0.0329323603947243,0.339874349566786,0.321778593684385 +1296345600,0.445,0.48,0.445,0.4799,0.289593187682692,0.380460053108131,0.033378615431351,0.345131149382656,0.326264278505673 +1296432000,0.47981,0.95,0.47,0.55,0.293936095626823,0.392527851503221,0.0338944131635904,0.351226907771528,0.331213461003323 +1296518400,0.5451,0.85,0.52011,0.7,0.300059236742001,0.41441361924226,0.0345594567746076,0.35925688499954,0.337134485611655 +1296604800,0.71,0.76001,0.69,0.716,0.306270412922963,0.435880439943878,0.0352398108934081,0.368947024503097,0.343982783300214 +1296691200,0.7218,0.75,0.6501,0.69,0.312047134928437,0.453968587753446,0.0358935271947258,0.379694431545605,0.351555468948331 +1296777600,0.72,0.88,0.67,0.811,0.31923598537051,0.479381967801594,0.0366673979109968,0.392264748188487,0.360219285702736 +1296864000,0.839,0.92,0.8115,0.92,0.327756014316135,0.510745016329639,0.0375493222110354,0.407168365337874,0.370260358851369 +1296950400,0.92,0.92,0.83,0.8975,0.335910652886554,0.538274110544864,0.0384079018647051,0.423668221871896,0.38143870397051 +1297036800,0.89968,0.9,0.83,0.89,0.343910496985762,0.563309845202642,0.0392581362648509,0.441273816715282,0.39358709070503 +1297123200,0.89,0.918,0.8617,0.918,0.352215562043138,0.588556575305418,0.0401354771455752,0.45987894894661,0.406682902225036 +1297209600,0.905,1.09,0.82,1.09,0.36260685599042,0.624249155530287,0.0411836678636174,0.480632450732915,0.421245651701853 +1297296000,1.088,1.1,0.8,0.98031,0.371544329731505,0.64959345087908,0.0421212969414511,0.502025744811235,0.436681400354745 +1297382400,0.989,1.0899,0.9264,1.07001,0.381503568077563,0.679518564398119,0.0431475468758684,0.524535884039504,0.453196364967802 +1297468800,1.01,1.08,0.9906,1.078,0.391407914281072,0.707882343655976,0.044180749458006,0.547839318243726,0.470666593390851 +1297555200,1.0511,1.08,1.0201,1.05,0.400828050608556,0.732234167399284,0.0451849651253569,0.57135188353451,0.488839156630076 +1297641600,1.04,1.08,1.033,1.07,0.41036427246023,0.75627622974094,0.0462081462919565,0.595006133748206,0.507661240150343 +1297728000,1.055,1.085,1.035,1.05,0.41982260950044,0.777183392379094,0.0472103377947634,0.618399566902916,0.526931015833144 +1297814400,1.05,1.05019,1.0201,1.045,0.429375151354179,0.796246491588907,0.0482065366753945,0.641332974328839,0.546518769467938 +1297900800,1.045,1.05019,1.02,1.04,0.438848063029936,0.813596787206714,0.0491967489169181,0.663646445752308,0.566304614915993 +1297987200,1.031,1.04019,0.78009,0.8989,0.446484453646019,0.819668642207939,0.050045097481411,0.684037233790174,0.585664159079395 +1298073600,0.8376,0.98,0.8376,0.94898,0.454703777985696,0.828872982687208,0.0509425992070453,0.703102904173645,0.604749657020976 +1298160000,0.94898,0.94898,0.83,0.85,0.461576447843552,0.830376796922699,0.0517403826662072,0.720057938038937,0.623138560555077 +1298246400,0.8313,0.8796,0.8313,0.8345,0.46823259747322,0.830670285179544,0.0525218943255561,0.734996005782958,0.640762122967779 +1298332800,0.85,0.95,0.8313,0.87023,0.475333864166635,0.833486132841246,0.0533382987546775,0.74845447564029,0.657753791807707 +1298419200,0.90999,0.945,0.8681,0.9,0.482826832386966,0.838220568318341,0.0541836106184924,0.76083670341228,0.674215547914532 +1298505600,0.939,1,0.9,0.99743,0.491562493757578,0.849553043993567,0.0551253531849412,0.773068733426296,0.690498205704562 +1298592000,0.97,0.99979,0.91109,0.9111,0.49913694760992,0.853933936346865,0.0559799631466452,0.78432515347256,0.706229498422012 +1298678400,0.9111,0.97,0.91061,0.958,0.507198601822948,0.861341324982758,0.0568805450879675,0.795087078161369,0.721574007302206 +1298764800,0.958,0.958,0.89,0.89,0.51437049248762,0.863381240169231,0.0577123362959273,0.804761309398203,0.736249885869206 +1298851200,0.89009,0.92001,0.845,0.86,0.521140078925726,0.863140564591376,0.0585133448679742,0.813197731924772,0.750145275112825 +1298937600,0.8601,0.97,0.8502,0.92022,0.528657108503534,0.867203460278469,0.0593736776994226,0.821063476857185,0.763501470356087 +1299024000,0.92021,0.94,0.9102,0.9399,0.536396306802246,0.872377976381979,0.0602528001937402,0.828561861989619,0.776388196612937 +1299110400,0.9128,0.9399,0.91,0.93909,0.544118446640119,0.877126516571532,0.0611302362585407,0.835686199828467,0.788793647390909 +1299196800,0.91,0.93909,0.9001,0.9012,0.551359350590223,0.878840059308853,0.0619689666944141,0.842113675003984,0.800568812889873 +1299283200,0.91,0.9189,0.8111,0.9103,0.558713751364485,0.881079367676835,0.0628159452288638,0.847990951187922,0.811757180427214 +1299369600,0.9098,0.9098,0.81,0.8999,0.56593540029342,0.882419014177308,0.0636516947158992,0.853274870975381,0.822327118240691 +1299456000,0.87,0.909,0.846,0.88502,0.572989090333713,0.88260415150401,0.0644717535091538,0.857896330133398,0.832235101650639 +1299542400,0.88502,0.88502,0.84999,0.86999,0.579894320100108,0.881706280293914,0.0652759875134515,0.861802907358247,0.841443239913094 +1299628800,0.85132,0.87,0.85,0.86,0.586723666019479,0.880161234307428,0.0660694444930519,0.865001225633323,0.849938539194444 +1299715200,0.86449,0.9329,0.84965,0.9329,0.594449040020781,0.883915162532909,0.0669348930558125,0.868219419326203,0.858024818440018 +1299801600,0.89,0.925,0.8601,0.88,0.601431914305458,0.883636482534493,0.0677466618885622,0.870968836814383,0.865506552793707 +1299888000,0.88,0.9197,0.88,0.918,0.608835072470507,0.886082466554911,0.0685955596630767,0.873637328901524,0.8725503888105 +1299974400,0.90501,0.918,0.88976,0.89249,0.615929461607849,0.886538552705949,0.069418140563953,0.875995648527907,0.879070625943749 +1300060800,0.89249,0.9,0.88,0.8949,0.623092217229221,0.887133717810608,0.0702423063530975,0.878099238982699,0.88509626134897 +1300147200,0.8949,0.8949,0.87,0.87,0.629898734820463,0.885914145337646,0.0710407889886325,0.879759826992709,0.890552564186274 +1300233600,0.866,0.88,0.836,0.85999,0.636485264936575,0.884068873086267,0.0718284803735556,0.88095507183486,0.895429536361863 +1300320000,0.845,0.88,0.81,0.82542,0.642546020173337,0.879894265334646,0.0725808704380565,0.881458301823977,0.899627472065283 +1300406400,0.8499,0.85062,0.70999,0.81648,0.648479803528207,0.875380458509406,0.0733235835651241,0.88131058344783,0.90315449326257 +1300492800,0.78,0.797,0.73127,0.765,0.653774324241754,0.867523613296999,0.0740141572380248,0.880183581510307,0.905859921835801 +1300579200,0.763,0.79,0.7402,0.74108,0.658690551034047,0.858523397940153,0.0746801595740262,0.878053892619501,0.907713067881839 +1300665600,0.76145,0.77241,0.7405,0.75897,0.663739777820195,0.851437219385112,0.075363358447377,0.875272367825189,0.908846955738799 +1300752000,0.75897,0.81,0.7405,0.80901,0.669368721323101,0.848417263679154,0.0760958354320335,0.872411212485981,0.909507423081769 +1300838400,0.81,0.85,0.78,0.84971,0.675430059372361,0.848509280230911,0.0768682162192625,0.869861120971195,0.909885922720598 +1300924800,0.832,0.9,0.82659,0.86688,0.681633035338267,0.849816902101805,0.0776569684828893,0.867737413887384,0.910069838192067 +1301011200,0.86688,0.88999,0.861,0.88377,0.688006873320393,0.852233672590624,0.0784617963239442,0.866128857887565,0.910138800763551 +1301097600,0.88377,0.905,0.841,0.8552,0.693961720824711,0.852444814812893,0.0792372961696085,0.864711036956927,0.909994435382449 +1301184000,0.829,0.87211,0.8152,0.822,0.699463457649174,0.850277762775463,0.0799788746827543,0.863175383094173,0.909530052651951 +1301270400,0.82,0.85,0.76,0.79898,0.704616845519561,0.84662640466994,0.0806967295006029,0.861357062486065,0.908687685393687 +1301356800,0.7989,0.79966,0.7648,0.7925,0.709625139624792,0.842773704752413,0.0814073979392135,0.859265895599717,0.907478182141278 +1301443200,0.7925,0.795,0.76599,0.7897,0.714516282789132,0.838995935673358,0.0821145613064635,0.85694413299154,0.90592675217178 +1301529600,0.7897,0.80098,0.768,0.78461,0.719327226099067,0.835124762423239,0.0828159367527958,0.854408730766117,0.904049104887479 +1301616000,0.77701,0.79697,0.7741,0.77411,0.723928188494226,0.830781751436468,0.0835061286820966,0.851628717334667,0.901840416208668 +1301702400,0.775,0.7998,0.7741,0.78199,0.728564229966111,0.827308770404722,0.0842034989567174,0.848739617695912,0.899366930408702 +1301788800,0.78199,0.79487,0.777,0.779,0.733093647324564,0.823870167806063,0.0848971877398584,0.845759901613287,0.896649211146303 +1301875200,0.777,0.785,0.5619,0.68,0.736298910060727,0.8136295359551,0.0854913417764153,0.841875565292725,0.893344435025065 +1301961600,0.69,0.74784,0.58,0.71,0.739784347500602,0.806253219219077,0.0861148547770329,0.837539927976576,0.889628284346452 +1302048000,0.7477,0.75,0.6902,0.74,0.743567661043107,0.801537336577734,0.0867676974295543,0.833129832479143,0.885663057632127 +1302134400,0.748,0.78491,0.7205,0.7538,0.747425169336685,0.798139408453419,0.0874336662788375,0.828815902591163,0.881537018897556 +1302220800,0.7531,0.799,0.7309,0.74989,0.751149485658587,0.794705031219188,0.0880950664547639,0.82458457910725,0.877264656879039 +1302307200,0.74999,0.7676,0.7205,0.73,0.754564737795741,0.790099348097208,0.0887359479957252,0.82028584984797,0.872799435973776 +1302393600,0.75,0.7589,0.71,0.7369,0.758011304439844,0.786312635765649,0.0893830786761985,0.81602847666627,0.868200672145458 +1302480000,0.73752,0.799,0.7103,0.77,0.76181468426508,0.785151507646162,0.0900626104862023,0.812128071733272,0.863622080978932 +1302566400,0.7787,0.899,0.7703,0.86,0.76668429246286,0.790479199039617,0.0908313203602799,0.809333086321328,0.859419102846086 +1302652800,0.86,1,0.86,0.9225,0.772271503354546,0.79987639680425,0.0916616631059464,0.808011977596515,0.855811690879999 +1302739200,0.939,1,0.91,1,0.778744863563001,0.814121129929038,0.0925685532740088,0.808584801665559,0.853055492095427 +1302825600,1,1.08999,0.911,0.98991,0.785005302393285,0.826633724647911,0.0934644640843059,0.810623568838216,0.851050438265565 +1302912000,0.9841,1.095,0.95414,1.0499,0.79192065254222,0.842525745665767,0.0944193747697597,0.814369327147931,0.849966774768471 +1302998400,1.048,1.14,1.0255,1.1123,0.799495478435182,0.861728189533275,0.0954356325822825,0.820026461853617,0.8499658934172 +1303084800,1.13888,1.1999,1.1103,1.16199,0.807602975970903,0.883100727751471,0.0965004865361765,0.827636720682188,0.851143378365277 +1303171200,1.1618,1.1979,1.1436,1.1965,0.816050718166776,0.905408386235495,0.0975987323143354,0.837086337588116,0.853524912977995 +1303257600,1.181,1.1979,1.13,1.1421,0.823715033448324,0.922256018484315,0.0986415683278762,0.847497213190492,0.856793700749544 +1303344000,1.14209,1.21,1.14,1.21,0.832128906931735,0.942737541700473,0.0997511549146573,0.859195886055234,0.861118369447667 +1303430400,1.21,1.41,1.189,1.40901,0.842924680079056,0.975926663952179,0.101058326401129,0.873573276305085,0.867144330572641 +1303516800,1.3911,1.95,1.3202,1.7001,0.857211214304019,1.02747308697954,0.102654818713748,0.892546532071204,0.875803415617041 +1303603200,1.7999,1.95,1.6,1.6311,0.870405805475658,1.07043905473951,0.104180827086433,0.914540256276326,0.886578482643178 +1303689600,1.631,1.701,1.52109,1.559,0.882638089706503,1.1052146642593,0.105633326833097,0.938205474824952,0.898976662266653 +1303776000,1.581,1.7949,1.53,1.79489,0.897748012983384,1.15430553082123,0.107319890315012,0.96508044518111,0.913703919028585 +1303862400,1.781,1.95,1.72,1.9,0.914116884642417,1.20738382112011,0.109109712344888,0.995272369788532,0.93090353584234 +1303948800,1.89,2.65,1.66,2.21059,0.934251717811896,1.27879171133936,0.111207842230904,1.0306170912294,0.9514732274283 +1304035200,2.211,2.95,2.21,2.88,0.962533850110844,1.39276519764952,0.113972220088031,1.07568230283316,0.977576660582281 +1304121600,2.879,4.14996,2.75,3.5,0.998247098099426,1.54275748697177,0.117352849505136,1.13371463442674,1.01098605494521 +1304208000,3.5,3.87,2.5,3.03311,1.02786543054707,1.64884029515096,0.120263958047888,1.19787707223642,1.04919095488048 +1304294400,3.0988,3.495,3.029,3.2,1.05937425824076,1.75925133950882,0.123338784049644,1.26797074383049,1.09226957774776 +1304380800,3.2,3.49,3.11,3.41,1.0933527495822,1.8767510934074,0.12662020532345,1.3441534397346,1.14043788154573 +1304467200,3.475,3.58,3.25,3.40609,1.12711643948361,1.98560894042737,0.129894446641305,1.42465313706206,1.19306645782178 +1304553600,3.4013,3.4498,3.333,3.333,1.15974335563234,2.08151579874814,0.133092445465773,1.50737664652903,1.24930132655447 +1304640000,3.333,3.61001,3.29,3.452,1.19359368962153,2.1790664193987,0.136406061667647,1.59224326614687,1.30907288452885 +1304726400,3.45,3.7,3.425,3.641,1.22951909418267,2.28312637719119,0.139905068212491,1.67977320872351,1.37256843076523 +1304812800,3.64012,3.937,3.63,3.8659,1.26792009927262,2.39578768996904,0.143625122769962,1.7706817710173,1.44008084506474 +1304899200,3.8696,3.9,3.6905,3.8,1.30514679932476,2.49573906645594,0.147275668268513,1.86301432147064,1.51076479339962 +1304985600,3.81,5.99001,3.81,5.81,1.36710271531677,2.73164708405278,0.15292936448754,1.97309612117327,1.5916740250837 +1305072000,5.75,6.065,4.6,5.5,1.42462270422448,2.92869754613308,0.158267910258781,2.09414855913271,1.68046295968346 +1305158400,5.4898,6.49,5.22,6.30019,1.49161377438593,3.16867928477185,0.164400040248183,2.23009740853119,1.77914808361334 +1305244800,6.3201,8.45,6.3201,8.198,1.58204741459545,3.52666470100143,0.172420832195111,2.39353223589984,1.89368198620287 +1305331200,8.12011,8.9,5.83,7.19769,1.65954982034335,3.78796709034243,0.179434900937447,2.56951923782472,2.01850717157648 +1305417600,7.0022,7.78,6.20001,6.98701,1.73385741731605,4.01567392639337,0.186231622681898,2.75249015648887,2.15148166911595 +1305504000,6.9899,8.5,6.75,8,1.82044464093509,4.29927696318832,0.194032933525099,2.94838198108098,2.29523577777628 +1305590400,8.03388,8.38901,6.97991,7.19,1.8966489481848,4.50503769075618,0.201017746882608,3.14620803299137,2.44525132424865 +1305676800,7.1911,7.5,6.6,6.88,1.96868721090835,4.67408673712737,0.207686080797399,3.34123532817716,2.59925878587379 +1305763200,6.7002,7.34,6.60711,6.8115,2.03951337689858,4.82622711947509,0.214279366219565,3.53168198631642,2.75607850210284 +1305849600,6.8051,7.1,5.5772,5.59039,2.09462827190491,4.88061998529961,0.219646905690444,3.70615764933437,2.91026791053437 +1305936000,5.7999,6.5199,5.5772,6.11971,2.15638004776372,4.96881801039579,0.225537562281548,3.87056166557927,3.06346725029294 +1306022400,6.14,6.7594,5.99001,6.6901,2.22499753109841,5.09133830376885,0.231991818231637,4.03018947940276,3.21733613121569 +1306108800,6.6901,7.45,6.68999,7.14991,2.29925467955319,5.23786676899127,0.238898707138207,4.18848295559989,3.37297294638303 +1306195200,7.1499,7.51,6.96,7.42,2.37680261299163,5.39319030415692,0.246068359561582,4.34664513744981,3.53065958623425 +1306281600,7.4899,9.33,7.21612,8.3997,2.46647256024321,5.60719268853575,0.254208991822024,4.51180129033197,3.69332592123876 +1306368000,8.2502,8.9869,8.01,8.798,2.56102236721742,5.83431331738017,0.262739161416969,4.68472678600959,3.86143837624426 +1306454400,8.7002,8.83,8.5002,8.5002,2.65170925708765,6.02407026622794,0.270963489226202,4.8599747438826,4.03277448193748 +1306540800,8.55,8.7,8.11,8.3001,2.73980117589172,6.1860773239859,0.278979824840253,5.03388858162784,4.20565750211573 +1306627200,8.3001,8.49,8.102,8.4299,2.82953206744665,6.34579189382555,0.287117749958321,5.20632349850896,4.37979321793589 +1306713600,8.4483,9,8.25001,8.8,2.92362789218457,6.52048163030281,0.295617060073134,5.3792504856592,4.55581513657326 +1306800000,8.8,9.4998,8.1,8.741,3.01686363547753,6.6785374071823,0.304048978492355,5.55057734448313,4.73267537584661 +1306886400,8.741,9.6987,8.3,9.57,3.12016830237388,6.88435077610664,0.313300156756928,5.72627321009977,4.91276532257998 +1306972800,9.6,10.888,9.5,10.6,3.23596016284798,7.14882948193884,0.323570456457748,5.9129486581975,5.09901987446833 +1307059200,10.6002,14.499,10.5752,14.29,3.39756233935731,7.6571356817272,0.337514619245465,6.13894225482169,5.30414602566162 +1307145600,14.27,18.89,14.04,18.8,3.61515109131773,8.45028114745351,0.35594766978372,6.43431666509598,5.54279565598451 +1307232000,18.998,18.998,16.2,16.7,3.80602947838154,9.03749345790802,0.372265664700959,6.7660626083061,5.80328705545055 +1307318400,16.7,19.23,16.4513,18.5499,4.01955781660803,9.7145834682955,0.390414318333355,7.14085512193362,6.08976520203018 +1307404800,18.2605,24.32,18.26,23.9234,4.29996809656697,10.7259624175104,0.413909785245863,7.59427419568334,6.41923062811799 +1307491200,23.9999,31.9099,22.2135,29.6,4.65078222233404,12.0694102870093,0.443049343915653,8.15753166473634,6.80822066876743 +1307577600,29.91,31.5,26.151,28.919,4.99207918911031,13.2687586141977,0.471479895206196,8.80039584800308,7.24763370611235 +1307664000,28.9191,29.399,20.01,23.9497,5.27024472879827,14.0290245555091,0.494920683854894,9.46023598536332,7.71275773367091 +1307750400,23.93,23.99,13,14.6511,5.43121177192542,14.0733036837516,0.509054293896102,10.0479538947543,8.16453610902624 +1307836800,14.75,24.99,10.25,18.5464,5.64055810569104,14.3916972277861,0.52706288256224,10.6049307392648,8.61710724808437 +1307923200,18.5479,24.5,16,19.84,5.8655031879971,14.7795056508501,0.546345028957273,11.1429851218571,9.07357970982953 +1308009600,19.8,20.5,18.001,19.28,6.08281147691492,15.0998493779743,0.565048816758639,11.6559797738202,9.52978329964574 +1308096000,19.2804,20,19.022,19.49,6.30213149328402,15.4123388744142,0.583943595787595,12.1457387118268,9.98481114369534 +1308182400,19.5,19.89,17,17,6.48960052998032,15.5253480780535,0.600333479982337,12.5906225901039,10.4276419499161 +1308268800,17,18.34,13,15.681,6.6599134985727,15.5364273313403,0.615390103312359,12.9833398554418,10.8526595897402 +1308355200,15.9635,16.9499,15.052,16.89,6.84471079209492,15.6327741945897,0.631638766508525,13.3401967009394,11.2643391526792 +1308441600,16.85,18.8766,16.85,17.51,7.03674613651361,15.7663945181598,0.648490218477402,13.6698263255794,11.6646013749562 +1309132800,16.45001,18,15,16.75004,7.2185883283261,15.8364100843122,0.664566097469101,13.9676371490284,12.0500356792114 +1309219200,16.75,17.52,16.5,16.9498,7.40237203416578,15.915660817157,0.6808253677332,14.2384233227252,12.4212016385278 +1309305600,16.94991,17.2,16.666,16.845,7.58423117401664,15.9818108785721,0.696963771732497,14.4837297269234,12.7775150252624 +1309392000,16.846,17,15.73,16.10098,7.7561851440856,15.9902932979587,0.712343229252542,14.6995216916127,13.1160834970888 +1309478400,16.10098,16.74,15.26,15.397,7.9187214303576,15.948062873565,0.727004474193825,14.8830812125778,13.4344788429623 +1309564800,15.3705,15.8,15.271,15.4,8.08072258030438,15.9090519361,0.741654076481755,15.03856251729,13.733225244599 +1309651200,15.39981,15.689,15.311,15.44049,8.24260153766497,15.8756998495615,0.756329477969908,15.1699500697693,14.0130180884154 +1309737600,15.4407,15.48988,13.14,13.86,8.3840555929612,15.7322229884709,0.76941225723759,15.2667171749302,14.2684439307635 +1309824000,13.878,14.21,11,12.90691,8.51287894363798,15.5311181269149,0.781530404100607,15.3259266192962,14.4970108584121 +1309910400,12.90701,16.5,12.67132,14.78347,8.66445580637848,15.4779007758924,0.795510020326809,15.3699482667838,14.7072258174157 +1309996800,14.78367,15.83001,14.5,14.77609,8.8151003326103,15.4279461126391,0.809468310990538,15.4010307039603,14.8998274690017 +1310083200,14.77609,15.1399,13.90152,14.31399,8.95916253008639,15.3486550780791,0.822951302345969,15.4172047389738,15.0738410317001 +1310169600,14.31399,14.6999,14.0201,14.38,9.10332544489337,15.2797065240011,0.836486736965943,15.4215445924832,15.2304390908111 +1310256000,14.375,15.68,14.35,14.9,9.25329734008496,15.2526791368576,0.850527828692041,15.420606328264,15.3724746941519 +1310342400,14.9,15.1999,13.8,14.20912,9.39394686610779,15.1783989361861,0.863865123186007,15.4093614358009,15.4980406777057 +1310428800,14.20912,14.63988,13.9,14.00943,9.53141131152224,15.0951921067006,0.876989730016071,15.3880083181845,15.6073090989916 +1310515200,14.0276,14.15,13.91,13.95099,9.66740720422741,15.0137481720997,0.890042886335154,15.3580186531404,15.7010323306743 +1310601600,13.97,14.07,13.7,13.99,9.80310305318814,14.94087810947,0.903121958114778,15.3215202671855,15.7803254773632 +1310688000,13.99999,14.09,13.5021,13.81,9.9357278970796,14.8603825726677,0.916008258649654,15.2784266834203,15.845436281116 +1310774400,13.81,13.81,13.501,13.7191,10.0663850627602,14.7791464495517,0.928790938351068,15.2294940187852,15.8969814432882 +1310860800,13.719,13.75,13.021,13.16,10.1891893888995,14.6638961307712,0.941002647128498,15.1713473308638,15.9338084026494 +1310947200,13.16,13.915,12.51,13.48,10.3151298985048,14.5796267884198,0.953521653488577,15.1088893355748,15.9582379041438 +1311033600,13.47051,14.7,13.44,13.85024,10.44483833951,14.5277092735446,0.966397810525738,15.0466250328921,15.9726299100144 +1311120000,13.86024,14,13.4,13.68943,10.5716757688676,14.4680408269196,0.979100558314662,14.9836681767678,15.9771762378902 +1311206400,13.71982,13.78,13.4,13.61,10.6964108047413,14.4069657593391,0.991711320243546,14.9199991573676,15.9723968902473 +1311292800,13.61,13.81,13.45,13.69542,10.8211028019383,14.3563181631235,1.00439477533033,14.8570330846911,15.9594253934302 +1311379200,13.69999,13.7649,13.51,13.68,10.944491277647,14.3081780557734,1.01705017176752,14.7950563433172,15.9389490321021 +1311465600,13.6904,14.1,13.6,13.98001,11.0705112451735,14.2848191600713,1.02999246467724,14.7370227987824,15.9128161485738 +1311552000,13.98001,14.72299,13.76,14.0478,11.1961888024372,14.2679482131827,1.04298951785005,14.6833209973715,15.8818623635012 +1311638400,14.02979,14.05051,13.768,13.88214,11.3184739535947,14.2404865097835,1.05580819880362,14.6322150296831,15.8459888813625 +1311724800,13.88214,14.13,13.85,13.9394,11.440057067397,14.2190552697356,1.06867125022319,14.5841814259742,15.8059656938452 +1311811200,13.891,13.939,13.312,13.49011,11.5544967448576,14.1671691820171,1.0810728854045,14.5352066673421,15.7606001189655 +1311897600,13.4901,13.7,13.3302,13.49832,11.6675734246321,14.119560714318,1.09347033563338,14.4859519772051,15.7105487054571 +1311984000,13.5015,13.63,13.45,13.53034,11.7795719910771,14.0776201751061,1.10588737712769,14.43716958912,15.6565197878786 +1312070400,13.5365,14.8999,12.82922,13.35,11.8878900472511,14.0258284071933,1.11811196889413,14.3876384773242,15.5983745639124 +1312156800,13.3503,13.5501,12.85,13.0946,11.9914299802029,13.9595438714021,1.13006936274416,14.3357117134315,15.5357181293244 +1312243200,13.09628,13.1,11.5,12.05,12.0802799053535,13.8236231583836,1.14097188367564,14.2732326614912,15.4652259492752 +1312329600,12.05,12.16,8.7,9.26,12.1325821943773,13.4987859431067,1.14907796758056,14.178493617078,15.3772946202856 +1312416000,9.287,11.15,9.26999,10.75,12.2020020868518,13.3031282518027,1.15866358280991,14.0709142497646,15.2793656074133 +1312502400,10.7106,10.99,9.5,9.7999,12.2578765910109,13.0537696018221,1.16729104245611,13.9454878941053,15.1690709167968 +1312588800,9.7403,9.95,5.742,6.55,12.2710677465224,12.5908333923813,1.17266516973101,13.7783687102,15.0356058917583 +1312675200,6.5317,9.47,6.01,7.9,12.2990841683946,12.256941393935,1.17938177913417,13.5900643425543,14.8865425552901 +1312761600,7.9,8.15998,7.055,7.79991,12.3237664068565,11.9396913458569,1.1859917522103,13.3850937163983,14.723392078478 +1312848000,7.79996,12.1,7.671,9.99,12.3742565666336,11.8009129486367,1.19478172417907,13.187116608186,14.5562387113795 +1312934400,9.95017,10.40001,9.5,9.98,12.4226022061187,11.6713009559352,1.20355293613283,12.9965180150386,14.3860162521321 +1313020800,10.08821,10.4959,8.45099,9.46248,12.46187217838,11.5140777971709,1.21179869594363,12.8091635036276,14.2116741539942 +1313107200,9.46268,9.8,8.91,9.46051,12.4985723491335,11.3679055078595,1.22003425628165,12.6260804694117,14.0342136117967 +1313193600,9.47024,10.25041,9.28,10.131,12.5407191269632,11.2798629752513,1.22893101522343,12.453890460829,13.8571018700507 +1313280000,10.1302,11.24,9.62,10.7957,12.5880546981323,11.2454004118094,1.23848253185553,12.297896742325,13.6834881917389 +1313366400,10.7921,11.89,10.72151,11.14979,12.6374523964907,11.2385948937274,1.24837803767139,12.159637101832,13.5150679153138 +1313452800,11.1548,11.32,10.8109,10.96409,12.6834770290888,11.2190557244832,1.25807825982043,12.0355570089058,13.3513342228226 +1313539200,10.92339,11.1,10.661,10.94555,12.7270296470899,11.1995876757816,1.26775028677086,11.9240546622668,13.1924369337185 +1313625600,10.97792,11.04999,10.81,10.83001,12.7668990596317,11.1732812567669,1.27729730132057,11.8228650034602,13.0381285660861 +1313712000,10.83001,11.81,10.83001,11.65,12.8150270636064,11.2072139421898,1.287653466762,11.7381228589436,12.8916981770309 +1313798400,11.65638,11.69001,11.4,11.453,12.8584230912749,11.2247089140142,1.29780260662707,11.6659414874699,12.7522849825836 +1313884800,11.453,11.51,11.31,11.31125,12.8972222430342,11.2308688804275,1.30780008952591,11.6034923414762,12.6192835269687 +1313971200,11.31125,11.501,10.51,10.895,12.9276792977576,11.2069618425259,1.31737200451057,11.5459912864161,12.4910790305476 +1314057600,10.909,11.3,10.809,10.94001,12.9553060191841,11.1879602970149,1.32697930108111,11.4934471607534,12.3679177426943 +1314144000,10.94001,11.083,10.8309,10.8506,12.9780853877481,11.1639471005646,1.33648773821891,11.4446623576762,12.2494983230686 +1314230400,10.8506,10.891,9.1,9.65702,12.9802734880683,11.0566845186239,1.34479500501011,11.3890738500307,12.1313574873939 +1314316800,9.65702,9.889,7.642,8.17939,12.9618433665899,10.8518796286224,1.35161870357252,11.3155948120168,12.0083377333259 +1314403200,8.17939,9.11,8.12082,8.5902,12.944804199623,10.6908940066916,1.35884574435877,11.2315839603692,11.8828697792661 +1314489600,8.5911,9.4811,8.44758,9.07011,12.9302983746777,10.5755271271254,1.36654471450318,11.1437836381915,11.7574478599948 +1314576000,9.07021,9.27027,8.65,8.969,12.9153251982003,10.4611750476195,1.37413504915219,11.0527506958454,11.6321598701311 +1314662400,8.969,9,8.55,8.79134,12.8969958462474,10.3423167308797,1.38154042881219,10.9583094387157,11.5067966508975 +1314748800,8.79,8.79,8.01001,8.19951,12.8691848944023,10.1897924432297,1.3883475284568,10.8567643941387,11.3796030879858 +1314835200,8.19951,8.35994,8.1,8.21,12.8420348087002,10.0488714596679,1.3951583051301,10.7503436456369,11.2512547370103 +1314921600,8.25,8.7138,8.23,8.64,12.8194951388845,9.94858844642197,1.4023915963338,10.6445489228988,11.1239582643451 +1315008000,8.6,8.69,8.36307,8.48,12.7936750013977,9.84405479744022,1.40945792086727,10.5388006347605,10.997500737104 +1315094400,8.4632,8.49,7.85,8.17798,12.7631136958713,9.72546413408774,1.41621565185424,10.4313938288595,10.8711478510254 +1315180800,8.12796,8.19142,7.25,7.61101,12.7212872954624,9.57495797507549,1.42240056980751,10.3186497691446,10.743226814114 +1315267200,7.61101,7.65713,6.122,6.8628,12.6660304974045,9.38190745064821,1.42783229557882,10.1960213598975,10.6115285704012 +1315353600,6.8628,7.59916,6.53001,7.1864,12.6110588641419,9.22563194286927,1.43358168236691,10.0691187214296,10.478093608929 +1315440000,7.19786,7.19786,6.51235,6.53,12.5441904518578,9.03375773605086,1.43866997543665,9.9341223450897,10.3410947286886 +1315526400,6.5299,6.57686,4.18,5.03,12.4543028461957,8.74877155982973,1.4422555797839,9.78066721812287,10.1956878709057 +1315612800,5.019,5.49,4.63,4.7739,12.3583602844511,8.46584149225694,1.445581912545,9.61113891362504,10.0421699084753 +1315699200,4.7739,7.4,4.6,5.86435,12.273872476045,8.28066817215956,1.44999363576607,9.43927955096596,9.88592805676013 +1315785600,5.94,6.58212,5.4121,6.078,12.1888654788386,8.12388296654747,1.45461426367418,9.26883507937709,9.72859072861079 +1315872000,6.05,6.085,5.7,5.8,12.0959833727994,7.95846973121146,1.458952721538,9.09862483501536,9.56979540962177 +1315958400,5.8199,5.84731,5.32488,5.61932,11.9955851596862,7.79196981252153,1.46310645591991,8.92851677879046,9.40958342154206 +1316044800,5.61932,5.61932,4.44,4.84,11.8796520554126,7.58184955933646,1.46647796566395,8.75322630935195,9.24573728839557 +1316131200,4.84,4.99,4.61,4.82,11.7553922565684,7.38526200406903,1.46982614115957,8.57501476446247,9.0791092041709 +1316217600,4.82,4.93,4.7,4.77,11.621088603641,7.19910850341013,1.47312105353298,8.39550843478476,8.91037612268873 +1316304000,4.7604,5.6,4.72134,5.2,11.4802005222506,7.05681260895375,1.47684199069574,8.22020592528246,8.74197800527255 +1316390400,5.2021,5.64399,4.9,5.46001,11.3338192862683,6.94315271749526,1.48081880831827,8.05212502469109,8.57550416220902 +1316476800,5.46203,6.795,5.4511,6.11191,11.1954474557992,6.88398513064614,1.48544251613567,7.89707379959668,8.41388139493678 +1316563200,6.11191,6.28664,5.06,5.6114,11.0433705820087,6.79340293406787,1.48956189558271,7.74975556137637,8.25541751049985 +1316649600,5.64335,5.83001,5.29,5.42781,10.880249331686,6.696200472228,1.4934938649164,7.60848561779345,8.09974904409627 +1316736000,5.43,5.70653,5.4145,5.54514,10.7174042215311,6.61426836139476,1.49753905148966,7.47442707950884,7.94766923705007 +1316822400,5.54514,5.641,5.3201,5.46829,10.5664450087968,6.53269799356122,1.50150347184798,7.34679584909284,7.79915705553105 +1316908800,5.44406,5.49,5.32199,5.33,10.431532214386,6.4470903407186,1.50532586458295,7.22436016141486,7.65394776689527 +1316995200,5.32999,5.4,4.721,4.86969,10.3053105513206,6.33481149641602,1.50868486489403,7.10327795980481,7.51057063583406 +1317081600,4.86969,5.13018,4.781,4.9156,10.1735082993679,6.23379248271026,1.51208634836551,6.9847528634598,7.36958468641673 +1317168000,4.91563,4.969,4.625,4.77247,10.0405706155343,6.12977602266732,1.51534153396946,6.86811877017237,7.23077851380234 +1317254400,4.77985,4.8,4.6742,4.77935,9.91172391111935,6.03365313665847,1.51860033860875,6.75410813507179,7.09451693645159 +1317340800,4.7567,5.35,4.743,5.14009,9.79113081254487,5.97004960259958,1.52221605450916,6.64635989266803,6.96246042085724 +1317427200,5.16699,5.24919,4.86125,5.03241,9.67552039810214,5.90330872000015,1.52572065213304,6.54376425115031,6.83434348764458 +1317513600,5.03241,5.1,4.91,5.02701,9.56219181073271,5.84093406151578,1.52921635935594,6.44624783702482,6.7102945908675 +1317600000,5.02701,5.0399,4.88889,5.02401,9.44778197317095,5.78278567195212,1.53270558122777,6.35372712537574,6.59042496389929 +1317686400,5.02401,5.025,4.9193,4.96,9.33368071524231,5.72422005486,1.5361274114921,6.26556279852619,6.47459020944656 +1317772800,4.96,5.025,4.8312,4.87,9.22147193666705,5.66341694859462,1.53945596886911,6.18096655911605,6.36254482506092 +1317859200,4.87002,4.9,4.4989,4.73443,9.10931290786287,5.59729195909901,1.54264584913548,6.09886509612245,6.25387778698705 +1317945600,4.74688,4.7958,3.7819,4.2728,8.99403025429844,5.50301505131798,1.54537165058649,6.01553513422886,6.14696896597183 +1318032000,4.30281,4.3399,3.825,4.00753,8.87882467502626,5.3965669107291,1.54782988350324,5.9296216725778,6.04107085437662 +1318118400,4.00757,4.389,4.00757,4.10288,8.76754073261128,5.30448269629318,1.55038086008921,5.84314976679015,5.93685748728911 +1318204800,4.1,4.2,4.0104,4.1,8.65788432839064,5.21874800888932,1.55292641435724,5.75694106509995,5.83456828414303 +1318291200,4.06084,4.10001,3.84962,3.9308,8.54825798122613,5.12707228762377,1.55530049688588,5.67023146023735,5.73378697033259 +1318377600,3.92982,4.45,3.901,4.15,8.44487806465464,5.0575245993023,1.55789105964523,5.58575427788288,5.63559367880841 +1318464000,4.16,4.2,4.002,4.04615,8.3409380282309,4.98553528356847,1.5603753515406,5.5029462152218,5.53974700372135 +1318550400,4.05644,4.11455,3.9481,3.98791,8.23386079467768,4.91452463966619,1.56279901595715,5.42172370612526,5.44618943934532 +1318636800,3.9873,4.05,3.70888,3.84214,8.12625798649845,4.83819264906024,1.56507472297526,5.34124762022153,5.35452918694176 +1318723200,3.84214,3.8975,3.4,3.55701,8.01674500756967,4.74699848391161,1.56706348249887,5.25961642850931,5.26387433254405 +1318809600,3.55711,3.74,2.26,2.55998,7.89550179303041,4.59132721802986,1.56805481600407,5.16912155217901,5.1707166638418 +1318896000,2.54127,2.9,2.31,2.41901,7.77329772713797,4.43670238348223,1.56890441450552,5.07089826214664,5.07508842771219 +1318982400,2.41901,2.536,2.0401,2.27,7.65167156513119,4.2824772110354,1.56960439233044,4.96587784141971,4.97699809751343 +1319068800,2.25031,2.39082,2.22,2.34801,7.53239990504465,4.14478246279074,1.57038155692175,4.85684773734683,4.8773200155188 +1319155200,2.35,2.72002,2.32699,2.57,7.41702401404634,4.03268995818943,1.57137958166762,4.747380489568,4.77740388879424 +1319241600,2.57562,3.3,2.5515,3.1588,7.31011844813138,3.97048675458898,1.5729644712528,4.64358995070946,4.67987074397771 +1319328000,3.12002,3.2,2.95,3.17,7.20474722449696,3.91350836719759,1.57455896061898,4.54546365030623,4.58492857708436 +1319414400,3.127,3.1948,2.481,2.545,7.09279838520051,3.81609838577375,1.57552785447885,4.4474425758139,4.49035544385532 +1319500800,2.523,3.04,2.44034,2.77,6.98509096634543,3.74163744218859,1.57672042227082,4.35230050477136,4.39732676612462 +1319587200,2.77,2.8485,2.6502,2.77302,6.87748576243155,3.67269156702115,1.57791481458152,4.26037554865834,4.30607393480318 +1319673600,2.773,3.09,2.7311,3.04001,6.77369965883274,3.62765749841919,1.5793745787405,4.17420001099648,4.21779878632892 +1319760000,3.04001,3.255,2.90501,3.18999,6.67313534541811,3.59650446792795,1.58098262634869,4.0947959698504,4.13314786450183 +1319846400,3.18431,3.82717,3.14,3.58113,6.57858624072231,3.59541011829066,1.58297958487633,4.02503050817171,4.05360974358315 +1319932800,3.58103,3.65026,3.2,3.27,6.48106637471523,3.57224753168351,1.58466391566548,3.96110807911553,3.97787515528063 +1320019200,3.275,3.31589,3.066,3.24801,6.38438734441647,3.5491684094105,1.58632460986796,3.90235515265207,3.90582366206915 +1320105600,3.25617,3.35,3.07001,3.15,6.28745931006477,3.5207557315799,1.58788579228177,3.84751575941216,3.83704408507577 +1320192000,3.15009,3.307,3.141,3.25429,6.19353138015277,3.50178878728826,1.58954953973205,3.797271625919,3.7719117919719 +1320278400,3.2524,3.28,3.1,3.152,6.10046083606315,3.47689093493403,1.59110949916891,3.75035804565319,3.70997635735305 +1320364800,3.1696,3.21,3.01111,3.109,6.00894385160715,3.45070457758547,1.59262496968853,3.70621831177749,3.65103747645579 +1320451200,3.109,3.14999,2.85,2.97002,5.91844751705031,3.41648960536049,1.59400016873033,3.66354072496463,3.59453811178042 +1320537600,2.97002,2.9999,2.92,2.95959,5.83001958520924,3.383967639739,1.59536358139418,3.62234480483496,3.54044481638296 +1320624000,2.95913,3.03248,2.95,3.00677,5.7448013392276,3.35711883416294,1.59677273759973,3.58313182517112,3.48893545279011 +1320710400,3.00677,3.21,3.00579,3.03501,5.66332165072754,3.33419123188856,1.59820868187252,3.5461333056467,3.44009148045 +1320796800,3.071,3.11,2.88655,2.95001,5.58482567888509,3.30684533648985,1.59955832800633,3.51054164083149,3.39354974121539 +1320883200,2.95001,2.969,2.80011,2.83993,5.51018278314686,3.2736104543772,1.60079672214691,3.475463449287,3.3488745511045 +1320969600,2.8401,3.10998,2.823,3.08001,5.44386155698077,3.25983003686821,1.60227357710686,3.44318635995612,3.30698252449162 +1321056000,3.08001,3.11,3.01,3.03099,5.3764344567813,3.24354127731462,1.60370001571926,3.41306897258446,3.26761010788995 +1321142400,3.03097,3.04998,2.951,2.99686,5.31228747991046,3.22598258405647,1.60509095458088,3.38469366347039,3.23056287033105 +1321228800,2.99573,2.99573,2.09995,2.22,5.24221570456903,3.15437707021785,1.60570488327341,3.35128108565539,3.19284937289581 +1321315200,2.2199,2.49,2.11,2.32896,5.1698246860561,3.0956241510512,1.6064269853005,3.31495516951041,3.15508014444597 +1321401600,2.33,2.60031,2.301,2.56035,5.09857547556764,3.05752351070413,1.60737938747047,3.27854681366752,3.11827634491423 +1321488000,2.56,2.58852,1.994,2.25,5.01979967266035,3.00004424929626,1.6080209835494,3.23970247957737,3.08132290158591 +1321574400,2.25938,2.38998,2,2.04999,4.93907542915209,2.93241969617417,1.6084622479322,3.19746085311564,3.04361679008391 +1321660800,2.05069,2.26,1.99998,2.19585,4.8609517534032,2.87999090425628,1.60904869920873,3.15405039726564,3.00591520302143 +1321747200,2.1994,2.499,2.15,2.2,4.78235570869416,2.8315893723843,1.6096387083526,3.11008950464091,2.96837579915292 +1321833600,2.2,2.31125,2.17,2.294,4.70366890194054,2.79332393533415,1.61032197856325,3.06686840976742,2.9314815190115 +1321920000,2.28797,2.35,2.25,2.3289,4.6248501236404,2.76026639034718,1.61103941095178,3.0249312764828,2.89544862699776 +1322006400,2.32889,2.38,2.27,2.33209,4.54657663479015,2.72978893384813,1.61175931196589,2.98444055879149,2.86035200102251 +1322092800,2.33209,2.56,2.30526,2.4321,4.47091506717489,2.70859953215261,1.61257834478023,2.94635438645677,2.82662223668726 +1322179200,2.439,2.52779,2.374,2.50612,4.39722890552967,2.6941871047693,1.61347046185705,2.91121554009981,2.79455001129379 +1322265600,2.46606,2.53125,2.41041,2.47003,4.32410412510158,2.67823167480265,1.61432565577758,2.87849320832899,2.76397922167037 +1322352000,2.4701,2.49,2.42331,2.47991,4.25150621939078,2.66411520235606,1.6151898601159,2.84812720647004,2.73493496308003 +1322438400,2.47991,2.55,2.44,2.55,4.18214522554588,2.65599251928877,1.61612317988281,2.82056815143787,2.70766180247381 +1322524800,2.54998,2.981,2.54028,2.75019,4.11770531722448,2.66269746539373,1.61725543865393,2.79728717757839,2.6828681189592 +1322611200,2.75009,3.09,2.73225,2.9701,4.05873610142153,2.68457827803864,1.61860612636771,2.77962806459858,2.66126716737441 +1322697600,2.99,3.14,2.92894,3.06,4.00318149347834,2.71130067436366,1.62004522221913,2.76752382432436,2.64300854741123 +1322784000,3.058,3.138,3.03498,3.1151,3.95137964508354,2.74004297930823,1.62153789342281,2.76057048860332,2.62808510292516 +1322870400,3.11228,3.125,2.75,2.794,3.899803979913,2.74388362252917,1.62270848626657,2.75513903502677,2.6150570539449 +1322956800,2.792,2.89998,2.61,2.82809,3.85170215519193,2.74987740514812,1.62391194603389,2.75130127234683,2.60394117708221 +1323043200,2.82806,2.93,2.7807,2.8798,3.80416523163934,2.75912525328293,1.62516583181859,2.74925482031044,2.59481213973602 +1323129600,2.88,3.05,2.8701,3.03,3.75900218817392,2.77840602984108,1.62656842625189,2.74999819439848,2.58810268402451 +1323216000,3.027,3.082,2.93241,2.99001,3.71502412101138,2.79346793176032,1.6279296940832,2.75268460225529,2.58348141020509 +1323302400,2.98996,3.00634,2.88421,2.98,3.67280712563636,2.80674522383811,1.62927960877596,2.75685976830606,2.58075042293374 +1323388800,2.98,3.039,2.93471,2.96999,3.63254343223927,2.81836493402376,1.63061818166519,2.76213709441706,2.57972151450197 +1323475200,2.96999,3.1332,2.93471,3.05,3.59429411208754,2.83485264284212,1.63203530055525,2.76896720210604,2.58055599288443 +1323561600,3.06,3.38,2.99,3.2511,3.55953757496709,2.86448099463036,1.63365178397089,2.77875418228534,2.58385168442023 +1323648000,3.25001,3.2901,3.08414,3.135,3.52557604244805,2.88373644963485,1.63515073857916,2.78988549240801,2.58894845450439 +1323734400,3.17321,3.25,3.141,3.2499,3.49564220722555,2.90979985231042,1.63676291343691,2.80301982394841,2.59610781596219 +1323820800,3.229,3.24805,2.99401,3.15,3.46727193297578,2.92689722086532,1.63827373796122,2.81682486910207,2.60475011216024 +1323907200,3.13921,3.21445,3.11001,3.2,3.44202062930491,2.94633658804785,1.63983297435445,2.83149460015592,2.61490543616146 +1323993600,3.1959,3.22,3.15,3.2,3.41804206115495,2.96439226738342,1.64139065399718,2.84674888398442,2.6264067946135 +1324080000,3.2,3.2299,3.15526,3.2001,3.39689202816543,2.98116986729145,1.64294687828426,2.86235306889221,2.63909668726084 +1324166400,3.18191,3.2189,3.1751,3.193,3.37834300214039,2.99624786738757,1.64449446014771,2.8780488421839,2.6527993277007 +1324252800,3.193,3.70036,3.18933,3.5202,3.36365553756048,3.03354261013677,1.64636717523985,2.89651283923945,2.66861246264885 +1324339200,3.5202,4.5,3.483,3.95,3.35282210238341,3.09877574970838,1.64866713537007,2.92081012287789,2.68791998061032 +1324425600,3.92,4.04,3.81,3.89,3.34177132586701,3.15509483505005,1.65090489486532,2.94917766734997,2.71012528683525 +1324512000,3.8753,3.99199,3.509,3.8901,3.33204974914495,3.20741226414317,1.65314052000932,2.98064941098443,2.73489852330923 +1324598400,3.89009,3.95,3.815,3.94678,3.32420216755589,3.26004021961755,1.65543050272721,3.01489286873405,2.76214184279728 +1324684800,3.94678,3.969,3.855,3.94,3.31765396345089,3.30843953610229,1.65771142992271,3.05106195197502,2.79151674678815 +1324771200,3.94,4.3897,3.7807,4.225,3.31452449061324,3.37368001245022,1.66027462545042,3.09096630903963,2.82380731175354 +1324857600,4.225,4.31259,3.81,4.018,3.30845515819597,3.41954250004813,1.66262859189038,3.13180921495928,2.85786200704212 +1324944000,4.018,4.0998,3.962,4.06997,3.30215982820286,3.46583971839661,1.66503209526077,3.17352044700146,2.89359849215248 +1325030400,4.07,4.25,3.99,4.18552,3.29696422855629,3.51706632726685,1.66754856473771,3.21658436007409,2.93117517268378 +1325116800,4.2,4.33,4.116,4.166,3.29137432255161,3.56325721547872,1.67004303287804,3.26022008895047,2.97021997426795 +1325203200,4.166,4.3,4.06334,4.248,3.28837260356617,3.61199698464573,1.67261687979412,3.30465789462709,3.01077028208171 +1325289600,4.2481,4.995,4.2,4.72202,3.29210669439922,3.69100806261751,1.67566142123407,3.35346919015498,3.05433499594365 +1325376000,4.70785,5.4999,4.615,5.26766,3.30313478617329,3.80323363581352,1.67924769306965,3.41017347209456,3.10255379682266 +1325462400,5.26346,5.47,4.8,5.21678,3.3143855881092,3.90384940724582,1.68277958546927,3.47244120015766,3.15465674957993 +1325548800,5.21588,5.29,4.65,4.8808,3.32241098757639,3.97338843336596,1.68597250726217,3.53584317207189,3.20884809622212 +1325635200,4.8808,5.7,4.751,5.57383,3.34022324791462,4.08730734465111,1.68985416632222,3.60562124990408,3.26736270835214 +1325721600,5.57402,7.22,5.57401,6.9476,3.37547076663688,4.29090204754271,1.69510352970265,3.69191756822734,3.33479978049856 +1325808000,6.94758,7.21,6.1261,6.69693,3.40794066699597,4.4621623363154,1.70009738173336,3.78889029781544,3.4091994253008 +1325894400,6.69683,7.01556,6.38,6.81,3.4418643176024,4.62928065921907,1.70519913760563,3.8947855662837,3.49011568581951 +1325980800,6.7866,7.2,6.73357,7.11358,3.47943902739964,4.80611228000943,1.71059889585652,4.00973025694264,3.57783533335516 +1326067200,7.08362,7.191,5.81,6.3257,3.50780605214396,4.91427604073184,1.71520663907946,4.12431513122586,3.66847340323151 +1326153600,6.32687,6.89,6.001,6.36,3.53716909346172,5.01718220293872,1.71984402722065,4.23790994566307,3.76156901043115 +1326240000,6.44904,7.138,6.41266,6.9,3.57396827600843,5.15120056265966,1.72501592444213,4.3543764117336,3.8586008423265 +1326326400,6.9,6.997,6.337,6.79999,3.6103516085926,5.26856085969024,1.73008280745847,4.47133397427629,3.95849013883248 +1326412800,6.78211,6.804,6.4,6.41,3.64280643188554,5.34980812724016,1.73475526343316,4.58431312438152,4.05914402340274 +1326499200,6.42,6.95039,6.2201,6.75001,3.68063572212772,5.4494740421037,1.73976252232137,4.69598189638651,4.16140136400678 +1326585600,6.74991,7.08,6.74115,7.00177,3.72293069995407,5.55996596458469,1.74501614055144,4.8077836858453,4.26569039245043 +1326672000,7.00177,7.18888,6.511,6.68254,3.76188010402895,5.63987042009095,1.74994579248931,4.91596874722604,4.37023903835347 +1326758400,6.67479,6.95,4.64,5.59998,3.78741080476506,5.63703103293543,1.753789688566,5.01088467236656,4.47054236962233 +1326844800,5.5503,6.95,5.09999,5.92,3.8173872041707,5.6571726721727,1.7579492566653,5.09683017276188,4.56779105306921 +1326931200,5.91998,6.36077,5.87284,6.35979,3.85344717750408,5.70718474553099,1.7625437606685,5.17845468575232,4.66353834065968 +1327017600,6.352,6.58,6.258,6.48979,3.89133969194776,5.76289033354733,1.76726347023303,5.25694255726617,4.75804123530999 +1327104000,6.4979,6.548,6.1,6.18,3.92619121895901,5.7925800642313,1.77166917151255,5.32949338013266,4.8498788161015 +1327190400,6.18409,6.45485,6.1,6.3097,3.96356871139386,5.82938849342657,1.7761999673334,5.39765388962028,4.93942067841868 +1327276800,6.3096,6.389,6.212,6.356,4.00269097936531,5.8668725295512,1.78077246576556,5.46201355147223,5.02669872036688 +1327363200,6.356,6.39397,6.219,6.28978,4.04241686062983,5.89697494604192,1.78527428456416,5.52211746411144,5.1113257693919 +1327449600,6.28958,6.322,5.502,5.75,4.07707640856541,5.8865133170838,1.78923268929547,5.57353436836006,5.19116928624591 +1327536000,5.8,5.92,5.3,5.34,4.10651793538762,5.84761267654623,1.79277779559822,5.61381572150758,5.26478619911159 +1327622400,5.34999,5.51,5.05,5.29199,4.13502360233828,5.80806363475859,1.79627142898926,5.64417270629862,5.33224662233589 +1327708800,5.29199,5.76,5.26,5.62667,4.16689465246657,5.79515209470829,1.80009572073466,5.66899580269631,5.3950831032804 +1327795200,5.62572,5.69999,5.32766,5.3809,4.19466792269858,5.76566576505365,1.80367081611787,5.68692701316522,5.45252340348281 +1327881600,5.38,5.6,5.36694,5.49048,4.22281876956424,5.74607813160946,1.80735174740149,5.69998061508062,5.50522322314471 +1327968000,5.49096,5.65,5.426,5.48379,4.25111656327406,5.72740854752786,1.81102232428826,5.70885077637986,5.5533613450442 +1328054400,5.53423,6.2,5.4678,6.07561,4.28745308515771,5.75219341390505,1.81528011290826,5.71931871404631,5.59937872056278 +1328140800,6.0687,6.199,5.823,6.1,4.32328142432034,5.77695017382167,1.81955800164276,5.73122147983382,5.64337399336548 +1328227200,6.1,6.1401,5.71872,5.9593,4.35683100488863,5.78992977526689,1.82369114362756,5.74298545295235,5.68482162947286 +1328313600,5.96,5.987,5.84,5.87343,4.38851882223903,5.79587329416315,1.82773442596289,5.75379122177743,5.72345745221028 +1328400000,5.87352,5.8848,5.45,5.68881,4.41743931441421,5.78825256363232,1.83158934580279,5.76211927893404,5.75867745655908 +1328486400,5.659,5.72,5.45,5.45345,4.44305827274989,5.76442142581409,1.83520543210453,5.76630232493086,5.78975028303459 +1328572800,5.48299,5.78,5.45,5.69,4.47230423526871,5.75912413287833,1.83905408095214,5.76908406290596,5.81780448208448 +1328659200,5.69,5.8494,5.3,5.59998,4.50054874929919,5.74779630515073,1.8428090108062,5.76991071065177,5.84265082847797 +1328745600,5.59998,5.91502,5.5,5.83,4.53184209272799,5.75364753747066,1.84678984499476,5.77111024252969,5.86533686111339 +1328832000,5.83,5.985,5.80119,5.9126,4.56412449884875,5.76496172216503,1.85084917300616,5.77332022899779,5.88627251103601 +1328918400,5.90665,6,5.541,5.6005,4.59276732945278,5.75325539015784,1.85459284574411,5.77364437690188,5.90434896623092 +1329004800,5.63,5.85,5.43,5.51468,4.62050523376159,5.73627367131673,1.85824709760119,5.77167236907914,5.91941698500483 +1329091200,5.51468,5.72,5.2,5.26,4.64525942227428,5.70237266596838,1.86164342707013,5.76562673939829,5.93071371236153 +1329177600,5.26,5.45126,4.21211,4.46292,4.65998826781667,5.61414882747264,1.86424055641344,5.74939148864473,5.93550713994414 +1329264000,4.46302,4.88,4.2001,4.3251,4.67293781446301,5.52239475029761,1.86669749249521,5.72372226423028,5.93381165691558 +1329350400,4.3052,4.444,3.878,4.2739,4.68531262789745,5.43352729917395,1.86910085718645,5.69007109228838,5.92599203461812 +1329436800,4.24185,4.76998,4.2281,4.41,4.69961368923107,5.36067295820745,1.87163770535972,5.65132070372295,5.91311245431352 +1329523200,4.39175,4.49675,4.12,4.22201,4.71168458977803,5.27962329839855,1.87398433044282,5.6070850995977,5.89494186834769 +1329609600,4.22201,4.52,4.181,4.38669,4.72564591059414,5.21606459602258,1.87649303009184,5.56014288306989,5.87262063580697 +1329696000,4.36102,4.47,4.29017,4.36146,4.7397299745847,5.15523411824205,1.87897403526517,5.51116165883847,5.84649067775362 +1329782400,4.37896,4.3975,4.212,4.272,4.75328578411333,5.09236580036173,1.88136324601538,5.46015303362118,5.81663667584793 +1329868800,4.272,4.54,4.27102,4.42474,4.76984331187304,5.04484441257184,1.88390256784974,5.40923783996543,5.7840647905728 +1329955200,4.455,5.19778,4.42,5.015,4.7933065457417,5.04272009697106,1.88702867335595,5.3639423081615,5.75135809730688 +1330041600,5.01499,5.1,4.825,5.0288,4.81655816045338,5.04172926898647,1.8901654357392,5.32378088460164,5.71870368043153 +1330128000,5.02879,5.07,4.65,4.77302,4.83691034700126,5.02260263043037,1.89304369415249,5.28597927530085,5.68525450981797 +1330214400,4.77303,5.1,4.77303,4.922,4.85893393472818,5.01544176784721,1.89606782137656,5.2517337423028,5.65176706296005 +1330300800,4.922,4.99,4.89,4.95598,4.88064959880317,5.01120929851033,1.89912285512028,5.22100355187184,5.61849937044464 +1330387200,4.95,5,4.735,4.86798,4.90073571787268,5.00101428352784,1.9020869789998,5.19267031740902,5.58522606314701 +1330473600,4.86798,4.9,4.8,4.86001,4.92008574699205,4.99097764438967,1.90504018618778,5.16648507082479,5.55204317091146 +1330560000,4.86,4.98888,4.86,4.9213,4.93967019351993,4.98601801227609,1.9080516371619,5.14282315472657,5.5192997626571 +1330646400,4.9213,4.95,4.51,4.70499,4.95600359048102,4.96601452957072,1.91084411635044,5.11957176491126,5.48626527219167 +1330732800,4.705,4.77995,4.51,4.61436,4.97054194425391,4.94098387428636,1.91354332200378,5.09607564020611,5.45274695159662 +1330819200,4.61439,4.94999,4.612,4.82001,4.9870959425652,4.93237299317707,1.91644515488588,5.07435908444378,5.41968910542932 +1330905600,4.82003,5.05,4.82001,4.98427,5.00524489119029,4.93606700527941,1.91950808868089,5.05571428319452,5.38779771027088 +1330992000,4.9888,5.07,4.9,4.9901,5.02283093699312,4.93991305630705,1.92257378513055,5.03980816362274,5.35711603622839 +1331078400,4.9901,5.05,4.84,4.93752,5.03897037737998,4.93974271933579,1.9255839246,5.0258380950603,5.32745853345709 +1331164800,4.93752,5,4.7551,4.93016,5.05411960781461,4.93906062448357,1.92858371046315,5.01351793962391,5.2988223243002 +1331251200,4.93044,4.949,4.821,4.86112,5.06768504907524,4.93351283612868,1.93151157139387,5.00206482339307,5.27096799793549 +1331337600,4.86113,4.91309,4.753,4.83315,5.08053703066003,4.92636904202609,1.93440858372429,4.99118222781304,5.24382863859008 +1331424000,4.83316,4.99,4.8111,4.91,5.0941819275377,4.92520389892729,1.93737943113873,4.98152742014115,5.2177361500285 +1331510400,4.90891,4.95,4.8561,4.89005,5.10770824834492,4.92270165581094,1.94032739424858,4.97279370259007,5.1926247186789 +1331596800,4.89006,5.41,4.86511,5.27,5.12543758023754,4.94742223923365,1.94365175833889,4.96817782908054,5.16994055758085 +1331683200,5.27185,5.45,5.25173,5.38,5.14393695803544,4.97821298385066,1.94708262799155,4.96794049182083,5.14997834298688 +1331769600,5.39298,5.445,5.25501,5.32656,5.16112088669013,5.00300821140315,1.9504567174441,4.97084541121807,5.13238022198591 +1331856000,5.3479,5.4,5.3,5.34388,5.17815796243784,5.02727135468456,1.95384473057316,4.97646005000813,5.1170770501293 +1331942400,5.34388,5.3998,5.21212,5.2159,5.19311204400452,5.04069788043815,1.95710158512984,4.98314905748766,5.10344820160626 +1332028800,5.216,5.34,5.211,5.27943,5.20829941016778,5.05769075522738,1.96041861673816,4.99121331381034,5.09164269207636 +1332115200,5.2553,5.3099,4.5,4.6939,5.21542760445607,5.03179624733962,1.96314774011694,4.99527750280089,5.07933894750365 +1332201600,4.67216,4.89999,4.58778,4.8379,5.22364095504454,5.01799477538356,1.9660179091434,4.99726058393926,5.06716957711297 +1332288000,4.83692,4.87,4.75,4.81488,5.23125273464452,5.00353713159324,1.96886222927768,4.99731541214661,5.0550821807981 +1332374400,4.79439,4.88,4.59768,4.7043,5.23684002067716,4.9822375296847,1.97159330592484,4.99482747502363,5.04269785282344 +1332460800,4.73593,4.79,4.6,4.68596,5.24178873841509,4.96114859127945,1.97430334508909,4.99011059197753,5.03001934926125 +1332547200,4.68607,4.72899,4.59595,4.676,5.24591257546829,4.94085180709797,1.97700073441409,4.98351465089303,5.01708194799368 +1332633600,4.676,4.68294,4.3,4.55001,5.2477658876906,4.91303181411756,1.97956964151678,4.97434069532546,5.00348074297124 +1332720000,4.55001,4.73793,4.51588,4.61911,5.24967314868437,4.89211055478183,1.98220497364148,4.96372249019913,4.98958447673868 +1332806400,4.625,4.84592,4.49,4.81125,5.25297724392973,4.88635492673598,1.98502950830572,4.95366890784061,4.97619628791035 +1332892800,4.824,4.8365,4.72102,4.788,5.25454360170107,4.87935405497229,1.98782801000606,4.9439657555898,4.96323573662205 +1332979200,4.76102,4.86092,4.71001,4.80838,5.25517588008479,4.87430214477419,1.99064406517443,4.93481096006335,4.95079236669604 +1333065600,4.8084,4.88,4.71699,4.86,5.25606598725578,4.87328412275097,1.99350884647922,4.92663267506329,4.93906412662405 +1333152000,4.848,4.95,4.82011,4.90873,5.25698873063993,4.87580714878949,1.99641941987954,4.91974971365216,4.92821852049534 +1333238400,4.88002,4.92,4.73,4.827,5.25618840634752,4.87233307177916,1.9992454876494,4.91328536901943,4.91791282352846 +1333324800,4.78207,5.08,4.76,4.974,5.25652655548704,4.87956969073362,2.00221549949419,4.90849207668767,4.90869516122687 +1333411200,4.974,4.99499,4.81,4.952,5.25563052086522,4.88472525663974,2.00516058113696,4.90492479558592,4.90042475459101 +1333497600,4.9496,4.97,4.89,4.91008,5.25383635612787,4.88652999904317,2.00806086922673,4.90203459276238,4.8928939935776 +1333584000,4.92469,4.93495,4.87,4.919,5.25121593721767,4.88884120317305,2.01096716743116,4.89980351200455,4.88610211314255 +1333670400,4.9189,4.98,4.88001,4.94991,5.24791693679179,4.89318806031114,2.01390142469092,4.89840118092558,4.8801286635323 +1333756800,4.94991,4.95002,4.68715,4.68715,5.24028121073879,4.87852233804843,2.01657041129125,4.89542128370649,4.87393435961052 +1333843200,4.68717,4.8,4.62,4.79252,5.23252839230036,4.87240071953844,2.01934193516819,4.89208019514295,4.86795927773408 +1333929600,4.7899,4.87899,4.73155,4.87191,5.22387303675824,4.87236579028096,2.02218995536798,4.88915714712793,4.8625071414414 +1334016000,4.87178,4.9,4.76391,4.83668,5.21325662106893,4.86982568731069,2.02499995825558,4.88629873170962,4.85742103806046 +1334102400,4.83641,4.98,4.79111,4.9279,5.20319044073854,4.87395939803973,2.02789823018774,4.88430677290553,4.85303352504836 +1334188800,4.9277,4.946,4.84272,4.91968,5.19216458826643,4.87721377564851,2.03078540157389,4.88297379988902,4.84927073276413 +1334275200,4.89102,4.94464,4.73001,4.93999,5.17897279480119,4.88168216692365,2.03368996801135,4.88237006621749,4.84617045050849 +1334361600,4.93989,5.03,4.90001,4.9597,5.16391900057849,4.88723545096111,2.03661131308937,4.8825418778885,4.84376248698189 +1334448000,4.9597,4.98,4.86,4.96892,5.14963954427782,4.89304973065075,2.03953894678033,4.8834299426298,4.84203188882264 +1334534400,4.969,4.979,4.90988,4.93201,5.13501913260338,4.89582290997836,2.04242680635096,4.88458050730076,4.84078821620343 +1334620800,4.95914,5.02207,4.925,4.97587,5.12126625891797,4.90152063586659,2.04535557273991,4.8863162403826,4.84016039290832 +1334707200,4.97587,5.1782,4.96,5.1178,5.11073350376108,4.91691533081152,2.04842311875203,4.88974532976114,4.8406343955432 +1334793600,5.1176,5.19,5.1,5.13766,5.10026678957792,4.93262786472105,2.05150743044585,4.89470956831607,4.84218974925766 +1334880000,5.13755,5.48,5.10103,5.35,5.09201479992662,4.96233627785089,2.05480066421046,4.90272947025993,4.84553049554388 +1334966400,5.39771,5.479,5.11,5.26008,5.08338413415473,4.98352957935989,2.05800083335169,4.91241657186903,4.85015265385141 +1335052800,5.26,5.32498,5.101,5.20352,5.07485309824197,4.99918842610254,2.06114133759974,4.92290257343935,4.85571623200126 +1335139200,5.20406,5.21799,4.95999,4.95999,5.0631424302006,4.99639829485452,2.0640355646117,4.93184991863895,4.86120053865574 +1335225600,4.95999,5.2,4.952,5.09822,5.053724898397,5.00364593078025,2.06706491163007,4.94064904156074,4.86711359912963 +1335312000,5.09998,5.18,5.03575,5.13182,5.04627062375672,5.01276931942805,2.07012478056246,4.94954062070261,4.8735235126958 +1335398400,5.13183,5.1749,4.99,5.09762,5.04001869995102,5.01880896333263,2.07314744902953,4.95813574694802,4.88023468028847 +1335484800,5.09762,5.124,5.0321,5.10947,5.03314786236933,5.02526218649832,2.07617893075467,4.96651512176966,4.88724089371198 +1335571200,5.1,5.10947,4.84634,4.9794,5.02417026400255,5.02199773094807,2.07907752320252,4.97352014028731,4.89399942834219 +1335657600,4.9789,5.0184,4.88,4.90441,5.01462498018288,5.01362787442262,2.08189835123613,4.97868566284087,4.90022263725909 +1335744000,4.9138,5,4.87003,4.9491,5.00651608317282,5.00903480126392,2.08476098168946,4.98267952861148,4.90610129759497 +1335830400,4.9491,5,4.91602,5,4.9993159430022,5.00839170704223,2.08767157292609,4.98611497509254,4.91183471764071 +1335916800,5,5.1789,4.97,5.07367,4.99366669291396,5.01303819474871,2.09065281075936,4.98969817519686,4.91769179409468 +1336003200,5.07359,5.184,5.02,5.13438,4.98977201644144,5.02167526506466,2.09369168531752,4.99389677746895,4.92386915333872 +1336089600,5.10926,5.15,5.067,5.067,4.98643135774554,5.02490146498709,2.09666025327032,4.99798288643017,4.9300617901726 +1336176000,5.06712,5.1198,5.02932,5.077,4.98388678807611,5.02860982180058,2.09963584144492,5.0020275722988,4.93628278331272 +1336262400,5.07739,5.099,5.01378,5.04991,4.98084890318066,5.03012596157178,2.10258141196507,5.00576902833644,4.94240393004619 +1336348800,5.05,5.09569,4.97111,5.06002,4.97746940295499,5.03225380952491,2.10553413549242,5.0093160745183,4.94844878277277 +1336435200,5.08738,5.1,4.96,5.04997,4.97424408864802,5.03351484221308,2.10847387702655,5.01258563855111,4.95436304960863 +1336521600,5.04988,5.09609,5,5.0437,4.97060385361276,5.03423981843874,2.11140442350229,5.0155444535508,4.96011182227322 +1336608000,5.0597,5.125,4.80284,4.85,4.96426518016184,5.02112568795782,2.11413865292072,5.01654755279983,4.96495599674429 +1336694400,4.85,5,4.801,4.96,4.9586210783941,5.0167747813275,2.11697997709533,5.01688395379521,4.96936958392449 +1336780800,4.95001,4.9988,4.915,4.94619,4.95331348143138,5.0117505795011,2.11980467649305,5.01654957643296,4.97332037672798 +1336867200,4.94976,4.99888,4.92,4.92996,4.9485550825561,5.00592875259758,2.12261035157039,5.0155259424738,4.97677151548799 +1336953600,4.95089,5.036,4.9,5.00594,4.9454006574432,5.00592955318403,2.12548908431043,5.01460094050879,4.98003937240187 +1337040000,5.02269,5.04,4.95123,5.035,4.94330414200144,5.0079987781535,2.12839395657678,5.01401629486917,4.98323692929569 +1337126400,5.03824,5.1345,5,5.0887,4.94236824598657,5.01374306493272,2.13134954298791,5.01418093410846,4.98656087489503 +1337212800,5.08879,5.1,5.0515,5.0998,4.94147462952375,5.01986856964079,2.13431326082795,5.01505653631024,4.99002982768459 +1337299200,5.09979,5.13,5.0615,5.11801,4.94122794386913,5.02685424480167,2.13729220064292,5.01666689244701,4.99368712491206 +1337385600,5.1245,5.14291,5.07,5.0995,4.9409199740115,5.03202514607931,2.14024968577801,5.01870778829707,4.99743304275278 +1337472000,5.11817,5.15,5.0855,5.09002,4.94123716946139,5.03615320095899,2.14319475325711,5.0210032898604,5.00121010150015 +1337558400,5.1,5.12999,5.0623,5.09977,4.94298257748466,5.04068142406771,2.1461466148196,5.02357269536844,5.00503820894074 +1337644800,5.09966,5.115,5.04951,5.09877,4.94572787316646,5.04481615004976,2.14909453082099,5.0263365824449,5.00889479239984 +1337731200,5.09857,5.165,5.06502,5.1397,4.95030397136182,5.05156995169439,2.15208036835134,5.02959040400543,5.0129174304435 +1337817600,5.13959,5.14889,5.0701,5.11904,4.95611311301919,5.05637244783519,2.15504259774285,5.03304056109953,5.01699879578491 +1337904000,5.11904,5.15,5.102,5.14546,4.96234058013923,5.06271367088466,2.15802824750611,5.03685081002505,5.02121825219147 +1337990400,5.11561,5.145,5.10011,5.10324,4.96786086981559,5.06559832183816,2.16096876369123,5.04055938327426,5.02538869004647 +1338076800,5.10302,5.148,5.10011,5.13896,4.9734596667794,5.07082018227997,2.16394200709964,5.04446103955954,5.0296334171915 +1338163200,5.13,5.16,5.11,5.1358,4.97897326216254,5.0754454246159,2.16690912704292,5.04846049719948,5.03391815489328 +1338249600,5.13999,5.15889,5.015,5.14997,4.98410400120435,5.08075005970458,2.16988743200544,5.05262833683817,5.03827683083542 +1338336000,5.14997,5.1725,5.1,5.135,4.98876021422648,5.08461155284783,2.17284781727807,5.05676926098696,5.04263016792592 +1338422400,5.135,5.2,5.1121,5.18011,4.99357606120726,5.09140910132183,2.17585028496607,5.06124220926647,5.04713252879408 +1338508800,5.19957,5.279,5.18111,5.27481,4.99871140417514,5.10446351776646,2.1789443039925,5.06676830057334,5.05211185463396 +1338595200,5.27481,5.27488,5.2133,5.24898,5.0025060538707,5.11475015406861,2.18200944511363,5.07288973719853,5.05741124714513 +1338681600,5.24799,5.2543,5.2051,5.2051,5.00589317131801,5.1211812267787,2.18502771593853,5.07906870904662,5.06281777760668 +1338768000,5.21999,5.2785,5.18001,5.26599,5.01036889555915,5.1314886682585,2.1881037662274,5.08576797750926,5.06853185798924 +1338854400,5.26588,5.5,5.22354,5.44001,5.01675693923506,5.15344911652038,2.19135048792908,5.09434173425081,5.0751629099091 +1338940800,5.44607,5.49,5.38945,5.46001,5.02340707962102,5.17527002071125,2.19461393619923,5.10455639165143,5.08268345353054 +1339027200,5.46799,5.59357,5.41,5.591,5.03184666272003,5.20486154571067,2.19800490738595,5.11716507456924,5.09148411615851 +1339113600,5.59087,5.66,5.5599,5.633,5.04080186515528,5.23533630193343,2.2014344260469,5.13199737999125,5.10158142679947 +1339200000,5.6329,5.635,5.46177,5.55997,5.04881802864822,5.25844362320102,2.20478760708902,5.14789949121186,5.11255122673843 +1339286400,5.55997,5.577,5.4267,5.46829,5.05592377083159,5.27338042019533,2.20804590646203,5.16375170148504,5.12393169856788 +1339372800,5.46829,5.59997,5.4324,5.57471,5.06417485047924,5.29482896188846,2.21140720306439,5.18034579424743,5.13604682140504 +1339459200,5.595,5.74999,5.5,5.70003,5.07342498934072,5.32367104027209,2.21489026393072,5.19849013451746,5.1492616258034 +1339545600,5.73,5.96,5.66,5.929,5.08523424257847,5.36675815916428,2.2185984522411,5.2197323829239,5.16429736492211 +1339632000,5.9288,5.97422,5.808,5.9541,5.09736288716864,5.4085649607715,2.2223279982581,5.24355660019072,5.18103722074732 +1339718400,5.95411,6.587,5.883,6.5,5.11638906943777,5.48625295263544,2.22659885034372,5.27401819115339,5.20133456063882 +1339804800,6.5,6.599,6.261,6.4,5.13411688587733,5.55129317090764,2.23076559781685,5.30881247907059,5.22443263555822 +1339891200,6.4487,6.52999,6.1027,6.16382,5.1488579411375,5.59489263180511,2.23469238172866,5.34482873173929,5.24911420784428 +1339977600,6.2,6.36,6.03,6.30998,5.1652448170751,5.64579231858958,2.23876117209336,5.38280244789692,5.27570337883972 +1340064000,6.30998,6.53294,6.281,6.49876,5.18364219371528,5.70650628131928,2.24301437918158,5.42369023265759,5.3046504349842 +1340150400,6.49876,6.71031,6.45,6.67,5.20387024503829,5.77508745151034,2.24743430683475,5.46810225573153,5.33629223742688 +1340236800,6.67001,6.8,6.561,6.68008,5.22357064780251,5.83950452739393,2.25185988553639,5.51511684455403,5.37031824405753 +1340323200,6.68009,6.7,6.42771,6.54781,5.24164025810748,5.88992148105147,2.25614898659384,5.56272266977543,5.40589775902894 +1340409600,6.54783,6.65062,6.4,6.4285,5.25854268140262,5.92825732523304,2.26031468560496,5.6093719546752,5.44231378988297 +1340496000,6.4285,6.47,6.35,6.35002,5.27476585861821,5.95827825553867,2.26439787067956,5.65415259207797,5.47906133258793 +1340582400,6.35002,6.4455,6.21748,6.30482,5.29093317350171,5.98294498443832,2.26843185114155,5.69661805120465,5.51580274349363 +1340668800,6.32969,6.47,6.28888,6.4195,5.30892901014127,6.01401882876083,2.27257630121951,5.7378031115218,5.55283286212888 +1340755200,6.45887,6.65,6.4,6.647,5.33070843902799,6.05907422309379,2.27694375075041,5.77954544521004,5.59084640954652 +1340841600,6.6469,6.66897,6.49,6.60588,5.35171015416493,6.0979956808266,2.28126578535266,5.82102991858858,5.62946093982569 +1340928000,6.6059,6.67921,6.542,6.65,5.37332657676787,6.13728716911079,2.2856275544702,5.86232503619909,5.66864614509354 +1341014400,6.65,6.694,6.60201,6.68999,5.39555015375717,6.1766283772322,2.29002489501634,5.90345309020903,5.70835654330022 +1341100800,6.68998,6.69399,6.5351,6.62898,5.41691986119779,6.20882661892881,2.29435693250121,5.94356074506421,5.74816713159943 +1341187200,6.6001,6.765,6.5778,6.75999,5.43981907387695,6.24805824951181,2.29881544598523,5.98361475490457,5.78841378620695 +1341273600,6.75998,6.76,6.4,6.44993,5.45873701331015,6.26242741519351,2.30295994239436,6.02059798486765,5.82773657383249 +1341360000,6.44994,6.55,6.44991,6.5101,5.47796233407479,6.28005666939719,2.30716037498532,6.05525535714742,5.86629277050019 +1341446400,6.51,6.77,6.48101,6.67,5.49871651320565,6.30781270911228,2.311516258911,6.08908195910453,5.90460578354546 +1341532800,6.67,6.72,6.55,6.64811,5.51907575970056,6.33203495983322,2.31584593879672,6.12174343835009,5.94246894583923 +1341619200,6.69997,6.87,6.63,6.76207,5.54065794584719,6.36264471442319,2.32028507421832,6.15414918726521,5.98020786878325 +1341705600,6.76207,6.86,6.7235,6.79898,5.56247837674576,6.39370291843669,2.32475662873603,6.18638348737404,6.01782998548072 +1341792000,6.7915,7.1,6.74257,7.0215,5.58692611085441,6.43838931094903,2.32944588406337,6.22012170969394,6.05604345404249 +1341878400,7.0215,7.25,6.96,7.1999,5.61355922298831,6.49259339464522,2.33430857318739,6.25634775882434,6.09532737928193 +1341964800,7.1997,7.257,7.01777,7.15,5.63925876726713,6.53938738345119,2.33911658693074,6.29387598161924,6.13525396272926 +1342051200,7.17,7.9,7.1,7.76437,5.67265753347203,6.62658124852554,2.3445331908323,6.3374621408702,6.17793782385723 +1342137600,7.68749,7.81639,7.4201,7.6651,5.70479260297492,6.70050267620127,2.34984527503239,6.38479715167325,6.22260846937743 +1342224000,7.60011,7.665,7.51563,7.5421,5.73529617687598,6.76040730056646,2.35502925171695,6.43374380413781,6.268463802716 +1342310400,7.54211,7.7,7.45,7.62101,5.76674404057834,6.82166472140108,2.36028683688302,6.48427536440292,6.31552792052195 +1342396800,7.62277,8.65,7.6178,8.4996,5.80936111475843,6.94109960995308,2.36641636210522,6.54326916801118,6.36683812401003 +1342483200,8.5,9.49,7.3215,8.80001,5.85526788263288,7.07341624820196,2.37283969862922,6.61131176044625,6.42297406450901 +1342569600,8.80002,9.39899,8.5,9.10977,5.90469791350894,7.21836324735053,2.37956588820537,6.68888829099647,6.4844831938569 +1342656000,9.10977,9.23355,8.8183,8.86999,5.95089678526078,7.33592550356395,2.38604596459812,6.77156483526392,6.54977090793704 +1342742400,8.86998,8.86998,7.6,8.52,5.99234188702792,7.42020754192552,2.3921701392367,6.85469682002821,6.61694772940005 +1342828800,8.52001,9.7,7.96,8.84553,6.03766508174626,7.5216615318988,2.39861321047016,6.94029896059647,6.686828653152 +1342915200,8.85841,8.97,8.2712,8.4096,6.07726775557432,7.58486470387529,2.40461461391023,7.02342476205828,6.75727367981991 +1343001600,8.4321,9.2,7.75,8.44565,6.11708185120591,7.64613512188312,2.41064601804021,7.10410634453544,6.82810496164816 +1343088000,8.4456,8.8499,8.34,8.6,6.15860173794727,7.71403091432792,2.4168255043009,7.18341393603279,6.89960504792661 +1343174400,8.549,8.9,8.3688,8.8,6.20239500666129,7.7913298413917,2.42319850206621,7.26263451340828,6.97220232614765 +1343260800,8.8,8.901,8.6,8.9,6.24704217916134,7.87024462345938,2.42966497756372,7.34196313792027,7.04590698888289 +1343347200,8.9,8.95,8.81415,8.9,6.29123702378777,7.9435422769515,2.43612499689526,7.42069487598697,7.12034655198042 +1343433600,8.9,8.93,8.71,8.8881,6.33504641293369,8.0107755891192,2.44256668547895,7.49815207290703,7.19513248849341 +1343520000,8.88809,8.8881,8.7,8.71027,6.37631798695885,8.06056537426279,2.44882439615943,7.57235382400418,7.26928139900637 +1343606400,8.71027,9.15,8.7,9.098,6.42265766861156,8.1344096342204,2.45546297094585,7.64658772279419,7.34403161711475 +1343692800,9.07881,9.44,9.07881,9.35,6.47228345381163,8.22093496193328,2.46234651597641,7.72238481195118,7.42000136248054 +1343779200,9.35,9.65,9.111,9.5503,6.52458097406559,8.31555873389366,2.46942316909701,7.80054421898679,7.49755645201851 +1343865600,9.55439,11,9.412,10.53,6.58874373083995,8.47318194451189,2.47747089490572,7.88844067178666,7.5799688477005 +1343952000,10.62468,11.12,10.3,10.97,6.65823651365107,8.65090464335212,2.48594988432471,7.98739154526472,7.6681759130025 +1344038400,10.9797,11.3,10.5307,10.98398,6.7278147573376,8.81697219003207,2.494434365984,8.09470223395694,7.76140465838084 +1344124800,10.98398,11.29112,10.10986,10.86998,6.79583964678753,8.96310461963605,2.50279655843931,8.20697728850851,7.85844556510912 +1344211200,10.86987,11.19,10.63539,10.85517,6.86368248396607,9.09778121933515,2.51113561564572,8.32223786166852,7.95855212654031 +1344297600,10.91,11.10002,10.651,11.1,6.93437560973755,9.24029850231707,2.51971078675611,8.44107468737533,8.0620102045218 +1344384000,11.10001,11.14999,10.85,11.0553,7.0040756009584,9.36948971985824,2.52823276763229,8.56143992776494,8.16797535220318 +1344470400,11.0987,12,10.8,11.0611,7.07343166187206,9.48989799058179,2.53675203086726,8.68207219300018,8.27585615604139 +1344556800,11.06111,11.6,11.01,11.38637,7.14647498235662,9.62488825270679,2.54558753984155,8.80469317824613,8.38631066205959 +1344643200,11.4699,11.59788,11.38751,11.5102,7.22078434644606,9.75908413099582,2.55453785997051,8.92896071616745,8.49917055294885 +1344729600,11.5102,11.765,11.45,11.62399,7.29639687217399,9.89182752549103,2.56359285263285,9.0544922816719,8.61423482514757 +1344816000,11.6239,12.05007,11.4919,12.03749,7.37693727805329,10.0445550840457,2.57305164549363,9.18355316458337,8.73244303070314 +1344902400,12.03749,12.34,11.89499,12.19,7.45916432407995,10.1972671568531,2.58265326149421,9.31572029503716,8.85365739249371 +1344988800,12.19,13.25,12.16138,13.25,7.55439348196696,10.4145596898551,2.59330360122285,9.45846378516736,8.98116743484781 +1345075200,13.24999,13.84119,12.5,13.5,7.65248838638518,10.6341803297428,2.60419290901527,9.61083555114388,9.11490042933955 +1345161600,13.44,15.4,10.6,11.5836,7.72631676083427,10.7017597137349,2.61315800018789,9.75324440200498,9.24658539186358 +1345248000,11.80915,12.89592,11.02009,11.61,7.80036328534426,10.7664079625392,2.62214049847277,9.88645399026584,9.37599886886761 +1345334400,11.57935,11.61538,7.58,8,7.82860270063779,10.5694959416113,2.62750978402316,9.97973633707189,9.48921290763451 +1345420800,7.99999,10.5,7.81011,10.1,7.88286772845602,10.5360773728636,2.63497036080668,10.0575184859441,9.59510751865653 +1345507200,10.061,10.29999,9.69876,9.91502,7.93441685431199,10.4918707106291,2.64223880382249,10.1202772573093,9.69320660551917 +1345593600,9.91503,10.09999,9.5714,9.80679,7.98409896224039,10.4431068879915,2.64939193253509,10.1691982843245,9.78339381935801 +1345680000,9.72,10.25,9.705,10.09997,8.03703876281993,10.4186825156703,2.65683063210476,10.2088466873334,9.86710841905249 +1345766400,10.09996,10.6188,9.852,10.6,8.09581937530861,10.4315886353578,2.66476113763382,10.2448464726081,9.94647285823614 +1345852800,10.6,10.62611,10.2,10.5239,8.15328931680058,10.4381593283331,2.67260774662766,10.2768755005995,10.0212699280771 +1345939200,10.6,10.61913,10.446,10.61,8.21148509806226,10.4503908915709,2.68053248425268,10.3061052541265,10.09193064855 +1346025600,10.59,12.14999,10.54441,10.95,8.27362329357993,10.4859529057594,2.68878876771066,10.3357186009572,10.1598238108097 +1346112000,10.96,11.20999,10.5,10.94,8.33526480941073,10.5182718305651,2.69702682399127,10.3653050790372,10.2248905776378 +1346198400,10.93,11.134,10.55,10.9169,8.39620300579985,10.5466460542896,2.70523359217804,10.3944139912386,10.2870383183637 +1346284800,10.80405,10.93199,10.6,10.77699,8.45497026626792,10.5630418615865,2.71329247974,10.4216688889912,10.3457521936042 +1346371200,10.77699,10.8285,9.66,10.16,8.50554908952205,10.5343534726871,2.72072731493329,10.4418291732732,10.398772515884 +1346457600,10.15,10.3,9.77635,9.96544,8.55332131755285,10.4938583963438,2.72796047733288,10.4542965842006,10.445648441582 +1346544000,10,10.35579,9.71922,10.2041,8.60365027984966,10.4732334877339,2.73542469760498,10.4623905187854,10.4876266240435 +1346630400,10.21,10.5934,10.08889,10.53,8.65767376294561,10.4772741096533,2.74320684597288,10.4696337886177,10.5261956591174 +1346716800,10.53,10.53,10.15,10.38471,8.70934839605412,10.4706854263701,2.75083616623619,10.4748586132926,10.5609511030541 +1346803200,10.38471,11.17,10.261,10.99971,8.76824243384485,10.5083412238247,2.7590718888448,10.4836942337376,10.5944083710932 +1346889600,11,11.29,10.64,11.181,8.82885580970831,10.5562208571995,2.76748038982942,10.4969912458243,10.6272360978465 +1346976000,11.19686,11.21,10.9544,11,8.88663042558667,10.5878089125543,2.77569978428806,10.5122789541202,10.6586803355235 +1347062400,11.09792,11.14177,10.765,11.037,8.94418475873707,10.6197821883724,2.78394791346717,10.5293920865096,10.6888796943033 +1347148800,11.05,11.14288,10.92452,11.02,9.00082618965235,10.6482695623122,2.79217083477034,10.5477120785905,10.717761780873 +1347235200,11.02,11.192,10.8745,11.17,9.05880424890872,10.6854061655377,2.80053530711622,10.5681632828703,10.7458959707751 +1347321600,11.1511,11.35,10.878,11.33081,9.11815485795978,10.7313458010071,2.80905198194501,10.5915811812858,10.7738468747437 +1347408000,11.33081,11.39,10.78,11.36489,9.17706051854544,10.7764412714729,2.81759417934321,10.6175319219268,10.80165322172 +1347494400,11.22854,11.399,11.2201,11.399,9.23544508782611,10.8207547997162,2.82616190378113,10.6456369425156,10.8293511069244 +1347580800,11.399,11.799,11.32103,11.67,9.29651617415122,10.8812037974475,2.83499164209739,10.6776140341063,10.8578685298985 +1347667200,11.74999,11.789,11.6,11.75,9.35777241217535,10.9430444291749,2.84389243720819,10.7131917875445,10.8873302228876 +1347753600,11.75,11.99,11.722,11.87,9.41990705193738,11.0090248258601,2.8529041543978,10.7524615801259,10.9179977983713 +1347840000,11.87,11.9625,11.7655,11.89,9.48174958085244,11.0717323528324,2.86192684235154,10.7946021957584,10.9497284433741 +1347926400,11.9325,12.3456,11.8402,12.25,9.54737516681854,11.1556010615477,2.87129994805225,10.8418524238217,10.983671409284 +1348012800,12.2345,12.68666,12.1501,12.5725,9.61592036544124,11.2564554681281,2.88098568142733,10.8956857457885,11.0207282683464 +1348099200,12.572,12.66,12.25,12.28253,9.6796653269872,11.3294911202914,2.89037223681183,10.9519628241971,11.0593993182927 +1348185600,12.3998,12.49998,12.011,12.368,9.74327693925265,11.403411845298,2.89983475434068,11.0105027231902,11.099724039924 +1348272000,12.27319,12.39999,12.14,12.23781,9.80429732432077,11.4628040351434,2.90915784200079,11.0692727011592,11.1409179192703 +1348358400,12.23781,12.27,11.6304,12.19331,9.86345328225174,11.5148012126341,2.91842719238368,11.1273392202013,11.1825834525458 +1348444800,12.151,12.29888,11.95105,12.1,9.92125237216159,11.5564554723909,2.92759412695902,11.1835183987358,11.2241708319276 +1348531200,12.1,12.22909,12.008,12.197,9.9799773560237,11.6020492239755,2.93684875456703,11.2384977658009,11.2658959561309 +1348617600,12.196,12.46,12.02,12.27,10.0386772517681,11.6495937434276,2.94616702591785,11.2926458431659,11.3078652162981 +1348704000,12.37,12.395,12.207,12.30889,10.0970020436411,11.696522236994,2.95551482185093,11.3459781241952,11.3500462268068 +1348790400,12.27,12.44998,12.12,12.39101,10.1557303071709,11.7459556505668,2.96493527396696,11.3988881198473,11.3925718046856 +1348876800,12.44,12.49,12.21111,12.36309,10.2138411434997,11.7898830732667,2.97431844516297,11.4507519505638,11.4351466309249 +1348963200,12.363,12.44889,12.301,12.4,10.2722906627539,11.8333109980964,2.9837290993016,11.5016258392657,11.4777451262346 +1349049600,12.35,12.481,12.321,12.4,10.3304469472821,11.8736477373314,2.99313035778955,11.5512455202433,11.5202044141928 +1349136000,12.4299,12.88,12.3435,12.84,10.393611852653,11.9424323777557,3.00296152851305,11.60320811509,11.5640375570686 +1349222400,12.84,12.99,12.68001,12.89,10.4566802637644,12.0098799335713,3.01283280402445,11.6570812367738,11.6091510317494 +1349308800,12.88351,13.0899,12.6,12.85,10.5182568685688,12.0696794072364,3.02265428777039,11.7117146214478,11.6551145664749 +1349395200,12.8001,12.97,12.51,12.688,10.5768339483375,12.1136912663516,3.03230422396852,11.7651007267047,11.7010705563891 +1349481600,12.78998,12.85999,12.35,12.505,10.6325717234331,12.1415444950123,3.04176181737331,11.815417209238,11.7461550403462 +1349568000,12.505,12.6185,11.7,11.80001,10.6787906428713,12.1172341805033,3.05050610223245,11.8566789097533,11.7876096238363 +1349654400,11.89901,11.95198,10.621,11.77809,10.7241035583107,12.0930940078053,3.05921977169497,11.8899451374246,11.8255036158624 +1349740800,11.7381,12.35,11.5711,11.895,10.770328433553,12.0789937406217,3.06804146499001,11.9173566447375,11.8604381396704 +1349827200,11.895,12.19,11.767,12.12,10.8186250582936,12.0819125528555,3.07707899193749,11.9416596315626,11.8933825627161 +1349913600,12.13,12.151,11.85788,12.03,10.8654282035846,12.0782174341916,3.0860176392541,11.9624171478577,11.9240418187705 +1350000000,12.11751,12.15,11.92,12,10.9107441523389,12.0726499426116,3.09491741000349,11.9798190534193,11.9523811357979 +1350086400,12,12.11,11.85,11.86101,10.9531121007637,12.0575854801848,3.10366952676362,11.9931083616487,11.9779658818775 +1350172800,11.86101,12.03,11.496,11.7389,10.9929361243174,12.0349015511356,3.11229099004117,12.0018437825352,12.0004725250169 +1350259200,11.57621,11.98863,11.43,11.83807,11.0327329051023,12.020891145208,3.12100285749342,12.0076145475418,12.0204522809864 +1350345600,11.83807,11.99,11.5,11.8499,11.0714155598032,12.0087200509877,3.12971783810696,12.0109986988815,12.0380892205523 +1350432000,11.82461,11.95998,11.7,11.81,11.1080783464334,11.9945752222536,3.13838428124702,12.0120452253544,12.0533652640249 +1350518400,11.81,11.9599,11.75,11.93977,11.144993425281,11.9906742043208,3.14717163486787,12.0122813917821,12.0669135062926 +1350604800,11.9349,11.967,11.619,11.74012,11.1781594244801,11.9728398373753,3.15575088344792,12.0101229175954,12.0780757553442 +1350691200,11.74013,11.85,11.56025,11.73991,11.2094542692517,11.956259967149,3.16432135679215,12.0060112394003,12.0870119335047 +1350777600,11.73991,11.76528,11.61,11.63107,11.2386409687435,11.9331130508286,3.17277460685119,11.9993873291074,12.0934665544717 +1350864000,11.63108,11.81,11.4711,11.71012,11.2677560832366,11.9172404778437,3.18129834110738,11.9914372585268,12.0979247513562 +1350950400,11.71014,12,11.41,11.65,11.2944057123578,11.8982183873644,3.18975354106841,11.9819451727018,12.1003124029585 +1351036800,11.65001,11.79,11.591,11.64999,11.3186807882142,11.8805495713151,3.19820028932559,11.9712664558141,12.1007965015171 +1351123200,11.64999,11.6989,10.52,10.86158,11.3320691574763,11.8080196479383,3.20585145126763,11.9528882195483,12.096559807642 +1351209600,10.85369,10.95,9.74,10.17061,11.3362313513408,11.691469360624,3.21280510586331,11.9223612770157,12.0854104035345 +1351296000,10.17065,10.83883,9.82207,10.26051,11.3417948078571,11.5896141377568,3.21984157456257,11.8828807696222,12.0683176279885 +1351382400,10.2603,10.95,10.24998,10.69998,11.3528719652407,11.5262902685645,3.22730978736197,11.8401746549319,12.0475109216848 +1351468800,10.69998,10.93979,10.3209,10.59999,11.3618419758409,11.4603565160815,3.23467071326979,11.7943196591482,12.023007040069 +1351555200,10.59,10.89,10.58,10.88753,11.374409835296,11.4195829105793,3.24231137156065,11.748756223825,11.996298698542 +1351641600,10.881,11.21,10.70543,11.201,11.389904355863,11.404024249946,3.25025737160782,11.7065364053212,11.9688579392625 +1351728000,11.17963,11.279,10.4,10.57,11.3962965761581,11.3446586745198,3.25756544433008,11.6619774935635,11.9384678248958 +1351814400,10.57,10.8,10.33,10.46877,11.4002789044904,11.2823132029396,3.26476515202246,11.6150043248639,11.9051116105262 +1351900800,10.46876,10.65,10.4,10.6425,11.4055179572725,11.2367715068076,3.27213112450699,11.5679528927273,11.8698235025977 +1351987200,10.6425,10.9,10.51002,10.80011,11.411895695788,11.2056900824727,3.27964710148415,11.522606320071,11.8334961966753 +1352073600,10.80011,10.88,10.61,10.748,11.4166564945623,11.1731118509469,3.28710354754635,11.478603850994,11.7961584498127 +1352160000,10.748,10.9,10.6667,10.89899,11.422166972223,11.1535999465636,3.29470329832616,11.4373928234938,11.7586073528289 +1352246400,10.89898,11.21603,10.8,10.92,11.425892061509,11.1369723781827,3.30231643797515,11.3990161734155,11.7210821889278 +1352332800,10.92011,11.07,10.75,10.925,11.4278704153855,11.1218842530999,3.30992696865064,11.3633463188173,11.6837413402282 +1352419200,10.925,10.98497,10.79,10.815,11.4265782840951,11.1000403315644,3.31742007630256,11.3292607539166,11.6462947539521 +1352505600,10.815,10.95899,10.75,10.88999,11.4237953481085,11.0850890171361,3.32498057323617,11.2974214996283,11.6091760127339 +1352592000,10.88999,10.939,10.7,10.8687,11.4197991667723,11.069686517126,3.33251226566935,11.267521459352,11.5724170156186 +1352678400,10.84001,11.18,10.76666,11.00801,11.4174151316372,11.0652964026543,3.34017552631522,11.2406795698045,11.5366520620328 +1352764800,11.00801,11.129,10.9215,10.9512,11.4142376730158,11.0571750577437,3.34777441649051,11.2160945250956,11.5017171621702 +1352851200,11,11.05,10.82011,10.95,11.4106539816309,11.0495463719174,3.35536452180375,11.1935683229523,11.4676691339123 +1352937600,10.98748,11.3,10.86,11.19771,11.4095222555047,11.0600926108774,3.3631943641872,11.1750720343054,11.4354965697958 +1353024000,11.20192,11.8,11.17214,11.74889,11.4150453289476,11.109120985484,3.3715666904621,11.1648158239196,11.4072429144226 +1353110400,11.74879,11.8,11.52,11.78889,11.4205619256766,11.1575067233163,3.37997059398656,11.1617730997638,11.3828327108499 +1353196800,11.78879,11.832,11.616,11.65152,11.4235161379758,11.1926704280172,3.38822895601563,11.1635036170049,11.3615126045038 +1353283200,11.66468,11.84,11.6,11.7999,11.4279099646928,11.2358928318729,3.39662721628597,11.1704287820813,11.3436606979944 +1353369600,11.69276,11.799,11.57297,11.73281,11.4310494702631,11.2712632346243,3.40495010864739,11.1809876922657,11.3287961734351 +1353456000,11.7,11.784,11.6435,11.76999,11.43408991409,11.3067624439205,3.41330181210941,11.1947661825674,11.3168615659337 +1353542400,11.74978,12.43,11.67,12.42191,11.4453196170842,11.3861382850379,3.42229605782347,11.2167099619971,11.3101146645863 +1353628800,12.36969,12.40999,12.132,12.34501,11.4554471845039,11.4543904625044,3.43120454623348,11.2445167678295,11.3078494708818 +1353715200,12.38548,12.4756,12.25,12.41153,11.4689041269801,11.522519344141,3.44017055430474,11.2774816954802,11.3099446835923 +1353801600,12.41153,12.6,12.3125,12.4821,11.4880821103928,11.5908219837904,3.44919806815233,11.3150152472161,11.3162881428467 +1353888000,12.48211,12.6515,11.89,12.24546,11.5062734506765,11.6374189053196,3.45798030615516,11.3539372018888,11.3256010705616 +1353974400,12.24546,12.339,11.9,12.2,11.5280631307585,11.6774632450516,3.46670838839868,11.3932719219084,11.337424151984 +1354060800,12.2,12.40712,12.1,12.34769,11.5474371722576,11.7251697679448,3.47557521101221,11.4338829239126,11.3520570352606 +1354147200,12.34768,12.599,12.15,12.45,11.5678360236804,11.7767629486168,3.48453532782614,11.4760772831312,11.3695919128602 +1354233600,12.539,12.65,12.42423,12.565,11.5889579570106,11.8328694061097,3.4936013154633,11.5202036415414,11.3901501009413 +1354320000,12.565,12.68778,12.4625,12.56201,11.608713277094,11.8847693969381,3.50265526633374,11.565512128379,11.4133856203334 +1354406400,12.57216,12.68,12.434,12.50004,11.6265057744227,11.9285641587763,3.51163830648719,11.610865745784,11.4387490729283 +1354492800,12.50202,12.50202,12.50004,12.50004,11.6440422709079,11.9692416236805,3.5206123779222,11.655864421182,11.4659637533368 +1354579200,12.5,13.01,12.42,12.59,11.6621553260076,12.013427003438,3.52966730616945,11.7009597683887,11.4951092064912 +1354665600,12.86,13.43,12.63,13.2,11.6872954095069,12.0978868842276,3.53932222139841,11.7510181037263,11.5282147412031 +1354752000,13.2,13.59,13.02,13.45,11.7156490932124,12.1941298569761,3.54921709852865,11.8068878871019,11.5657627096242 +1354838400,13.34,13.48,13.11,13.37,11.7431859884011,12.2778279121246,3.55902222410165,11.8663641337947,11.6069315029883 +1354924800,13.3,13.37,13.3,13.36,11.7709994473012,12.3548565701175,3.5688075761245,11.928206779084,11.6512200357125 +1355011200,13.35,13.36,13.1,13.29,11.7985018524544,12.4214197759531,3.57851326999756,11.9908564918456,11.6979314686075 +1355097600,13.388,13.55,13.26911,13.43335,11.827176088003,12.4934486408759,3.58835239510689,12.0548678048184,11.7472247311207 +1355184000,13.5,13.67,13.3,13.55703,11.8560496663288,12.56915401683,3.59830517959397,12.1205151139777,11.7991612106424 +1355270400,13.67,13.79989,13.3,13.6989,11.8854514827263,12.6495689692498,3.60838967098022,12.1881672674398,11.8538557842037 +1355356800,13.699,13.8,13.46777,13.7001,11.9141060252153,12.7243454270657,3.61846529203968,12.256894325276,11.9108719364192 +1355443200,13.70635,13.90119,13,13.60004,11.93993014035,12.786677082558,3.62843095306791,12.325046575506,11.969419112908 +1355529600,13.60005,13.64,13.44216,13.49011,11.9638317478518,12.8367472093204,3.63827690958542,12.3911864611885,12.028730922045 +1355616000,13.49012,13.66548,13.13111,13.30002,11.985230351138,12.8697228162045,3.64792324890542,12.4534557514444,12.0878005397142 +1355702400,13.3,13.485,12.74919,13.25005,12.0054487420768,12.8967943817108,3.65751006693275,12.5115704594942,12.1462367935844 +1355788800,13.25005,13.39807,13.11,13.29899,12.0256960281111,12.9254225352868,3.66713617540107,12.5661879192327,12.2040576743607 +1355875200,13.29899,13.601,13.2,13.599,12.0488645565489,12.9733675606136,3.67705220480027,12.6200495821709,12.2622300783265 +1355961600,13.595,13.72,13.32591,13.52463,12.0703382530558,13.0126062421354,3.68688408254775,12.6721809281292,12.3202235998633 +1356048000,13.57999,13.6,13.41999,13.49998,12.0909231152268,13.0472973480416,3.69668153339214,12.722225003533,12.3777413629719 +1356134400,13.5,13.58996,13.3213,13.37136,12.1092160577542,13.0703640224326,3.70634078746539,12.7690073957667,12.4341209097396 +1356220800,13.47221,13.47222,13.01,13.31202,12.125860240977,13.0875650164857,3.71593115229046,12.8121890311488,12.489022026327 +1356307200,13.3718,13.45,13.2105,13.38001,12.1428111247921,13.1083811554984,3.72557982364384,12.8526228201013,12.5426198424023 +1356393600,13.4198,13.43,13.14,13.35001,12.1588143077996,13.1255802182287,3.73518890953796,12.8901870997096,12.594709481024 +1356480000,13.35001,13.46997,13.20001,13.46786,12.1757951227748,13.1499435820073,3.7449060637771,12.9260847109031,12.6456675035108 +1356566400,13.46332,13.47,13.25,13.42174,12.191401479998,13.1692899628277,3.75456746988349,12.9599021484295,12.6952235305192 +1356652800,13.43998,13.6499,13.34201,13.42119,12.206724490415,13.1872201257188,3.76421868086387,12.991711149089,12.7433075510454 +1356739200,13.4999,13.67,13.27,13.4,12.2223364810089,13.2023657281118,3.77383909980359,13.0214096649373,12.7897831229449 +1356825600,13.41197,13.59,13.35,13.45001,12.2385636604395,13.2199929670111,3.78349984393103,13.0495474926098,12.8348003502715 +1356912000,13.39112,13.561,13.36634,13.51001,12.2558029806101,13.2406362852934,3.79321084705819,13.0766767973364,12.8785398067927 +1356998400,13.51001,13.56,13.16123,13.30413,12.2705104177881,13.2451557472992,3.80270660290015,13.1009620936015,12.9201675002079 +1357084800,13.35574,13.4,13.16382,13.27999,12.2849047504206,13.2476352381009,3.81216877661194,13.1224890267584,12.9596146240494 +1357171200,13.28306,13.464,13.24897,13.39786,12.3004760698995,13.258328187897,3.82173918531483,13.1425795421318,12.9973627264766 +1357257600,13.4265,13.52,13.27311,13.5,12.3171223523892,13.2755303090472,3.83140201602479,13.1621976271895,13.033799427456 +1357344000,13.50001,13.548,13.314,13.44,12.3328875283029,13.2872372082701,3.84099529496789,13.1807387702064,13.0686720555575 +1357430400,13.44884,13.521,13.356,13.45395,12.3487028951644,13.2991037706783,3.8505929236861,13.1983542339782,13.1020345850543 +1357516800,13.51394,13.59,13.404,13.58755,12.3662136368036,13.3196352796654,3.86031435707792,13.2162108070719,13.1343939359342 +1357603200,13.55376,13.87998,13.5,13.74275,12.3855662472661,13.3497524481357,3.87018103709907,13.2354530375325,13.166299283722 +1357689600,13.79904,13.86225,13.62,13.77001,12.4051301769013,13.3796662442816,3.88006508270993,13.2559045467182,13.1977716875174 +1357776000,13.77001,14.32,13.77,14.13999,12.4289162804927,13.4337858424484,3.89030865017221,13.2803725029873,13.2301262585534 +1357862400,14.13,14.34999,13.91001,14.13701,12.4531440557251,13.4838411097496,3.90053901514943,13.3079074714896,13.2631545579251 +1357948800,14.25664,14.338,13.975,14.23699,12.4793874798866,13.537450003321,3.91085898667334,13.3385919106896,13.297052130998 +1358035200,14.237,14.3148,13.94896,14.11601,12.5051030456979,13.5786317161113,3.92104786755799,13.3705562889657,13.3311602069106 +1358121600,14.19,14.35,14.11,14.30002,12.5341690171312,13.6299799000299,3.93141029243779,13.4048880567112,13.366026959932 +1358208000,14.35,14.47899,13.99178,14.25003,12.5638376192305,13.6741148649067,3.94171246111291,13.4404385130196,13.4012674410271 +1358294400,14.3,14.73,14.21001,14.73,12.5993917823646,13.7492724261321,3.95248354882534,13.4808334668308,13.4385292988368 +1358380800,14.73,15.69999,14.63,15.50001,12.6442874151354,13.8738893584332,3.96401266499126,13.5315212793332,13.4804077318615 +1358467200,15.59897,15.985,15.41,15.70499,12.6915302366351,14.004226507811,3.9757349236212,13.5920107455949,13.5271261371934 +1358553600,15.6843,15.77272,15.25,15.615,12.7379622721101,14.1188808422039,3.98735563215293,13.6592630824986,13.5777567504322 +1358640000,15.615,15.89,15.51,15.7,12.7856989201098,14.2314243906991,3.99904960298712,13.7322325928354,13.6320967277771 +1358726400,15.7,16.98,15.63412,16.8,12.8475427169639,14.4142547689306,4.01183014475815,13.818783984977,13.6937793918049 +1358812800,16.8,17.59,16.65,17.26142,12.9152825205647,14.6169150660225,4.02505861071905,13.919749706026,13.763689957827 +1358899200,17.26142,17.5855,16.80155,17.50004,12.9858279718157,14.8221349630966,4.03851210887101,14.0337639447159,13.8417659496698 +1358985600,17.52899,19.18999,15.6101,16.89596,13.048825049836,14.9697491561576,4.05134905806189,14.1523053326537,13.9247370944111 +1359072000,16.76002,17.797,15.38613,17.40001,13.1182481218449,15.1427343342742,4.0646764371599,14.2779037872214,14.0137772985754 +1359158400,17.4511,17.88,16.54001,17.88,13.1937062931691,15.3375720159732,4.07846973487602,14.4123716482698,14.1098468823698 +1359244800,17.81,17.99999,17.21,17.81821,13.2688499195016,15.5141430225781,4.09218756979729,14.5524396863967,14.2117520559565 +1359331200,17.81821,18.88,17.75,18.72101,13.3554675437099,15.7424067732332,4.10679306941502,14.7037085609384,14.3220210586047 +1359417600,18.8,19.8,18.7,19.52538,13.4524417418561,16.0116775797397,4.12218707440723,14.8698381503784,14.4425638843374 +1359504000,19.53999,19.7989,19.14901,19.70001,13.5517186987677,16.2742118843551,4.13774006152363,15.0482669926036,14.5727112580803 +1359590400,19.70001,21.43,19.51123,20.41001,13.6603678243947,16.5685966519416,4.15398638849219,15.2414096107511,14.71383624853 +1359676800,20.50879,21.13,20.301,20.49897,13.7707914454806,16.8483593512425,4.17030531320597,15.44575648024,14.86480850287 +1359763200,20.3611,20.5,18,19.63001,13.8717415991087,17.0463563416285,4.18574037040013,15.650042515706,15.0209392124522 +1359849600,19.7,20.9,19.42,20.59,13.9850885372982,17.2985917471317,4.20211847662792,15.8608113723105,15.1848253840224 +1359936000,20.59999,21.05,19.85502,20.43005,14.095241931317,17.5214879292472,4.21832053587036,16.0737088139497,15.3545847185888 +1360022400,20.43006,20.79,20.2,20.60001,14.2061393004981,17.7406161311003,4.23467610791642,16.2879862389943,15.5297186129539 +1360108800,20.65999,21.3339,20.60001,21.18,14.3237172302959,17.9854303586267,4.25159441578495,16.5065604555343,15.7112989507602 +1360195200,21.11121,22.21999,20.77002,22.15,14.4524160957647,18.2818630740767,4.2694642858422,16.7351654865197,15.901754924184 +1360281600,22.11001,22.77219,22,22.66,14.5869116271652,18.5934974395271,4.28782550142361,16.974455361197,16.1015385781448 +1360368000,22.66,23.98961,22.57541,23.65,14.7342493170742,18.9534176506793,4.30715680670036,17.2290252534608,16.3128409147358 +1360454400,23.8,24.11,22.67,23.96975,14.8847884185567,19.310478559239,4.32678805171264,17.4967293364227,16.5350920962963 +1360540800,23.96975,24.67503,23.6456,24.65,15.0426313385579,19.6905439624355,4.34707886225177,17.7788051478358,16.7690907392777 +1360627200,24.38651,25.82767,24.3001,25.16975,15.2059186856048,20.0805520698974,4.36786833568982,18.0747590765982,17.0149171032296 +1360713600,25.19,26.3,24.19491,24.2,15.3562357711848,20.3737730365835,4.38766884887699,18.3711887118079,17.266975185185 +1360800000,24.2,27.5969,21.721,27.2205,15.5433539093093,20.8611208397148,4.41046527751919,18.6915586021701,17.5351895587773 +1360886400,27.24997,27.50617,26.103,27.1,15.7280784972749,21.3052022334979,4.43311863819104,19.02781270474,17.8167186527623 +1360972800,27.1,27.49989,26.8075,27.21584,15.9133876097609,21.7259195114032,4.45586503693424,19.3752291738157,18.1098047048045 +1361059200,27.386,27.39989,25,26.8146,16.0928176902482,22.0881301370358,4.47818812524256,19.7253568708141,18.4108431220843 +1361145600,26.89999,27.148,26.36268,26.95,16.272770566815,22.4341964559478,4.50062411018343,20.0758588028868,18.7185322635765 +1361232000,26.95,29.65,26.8,29.41759,16.4825159649017,22.9312721419332,4.52550135081679,20.4449703028865,19.0404630539243 +1361318400,29.41759,29.87035,28.98839,29.64501,16.6936975149154,23.4091538237077,4.55058081129448,20.8281668305298,19.37506770887 +1361404800,29.64501,29.978,29.311,29.74768,16.9049224548413,23.8603280597494,4.57573773860866,21.2205258960022,19.7203927923347 +1361491200,29.75,31.3,29.67001,30.24539,17.120825907263,24.3148146963664,4.60136646560156,21.6213336263109,20.0761022570794 +1361577600,30.24539,30.6899,28,29.79999,17.3291713298031,24.7052476942498,4.62652491483116,22.0217767421117,20.4382879632854 +1361664000,29.79999,30.39877,29.20123,29.88999,17.5366718825908,25.0742959688502,4.65174810223429,22.4192361911855,20.805371423439 +1361750400,29.89,30.4,29.55,30.39999,17.7495663470147,25.4533771415183,4.67745529356767,22.8152138904634,21.1774759032592 +1361836800,30.39991,31.699,30.1171,31.1,17.9703011101266,25.8553019239575,4.70383571266502,23.2126008502378,21.5554127586586 +1361923200,31.19999,31.65,30.7901,30.9012,18.1871506824615,26.2144673113496,4.72999131034965,23.6059933104817,21.9365081749421 +1362009600,31.25997,34.51541,30.902,33.38,18.4338600971601,26.7245076025337,4.75859564217208,24.0141273521035,22.3284151243935 +1362096000,33.37999,34.9,32.92,34.5,18.6929624410997,27.2779646278272,4.78828962964453,24.4405430528957,22.7329638505763 +1362182400,34.5,34.808,33.15,34.25,18.9468169790515,27.7742318428245,4.81770436904718,24.8761514590988,23.1466077352779 +1362268800,34.2489,34.5,33.8,34.49999,19.2029398210343,28.2529691255883,4.84733933204608,25.3177179927204,23.567955466549 +1362355200,34.49999,36.7,34.19,36.152,19.4786721681952,28.8152195795759,4.87859408352048,25.7746501972694,24.0009993601598 +1362441600,36.152,40.64625,36.15,40.33,19.8057148089475,29.6348379127469,4.91398896906454,26.2763912786211,24.4588869737874 +1362528000,40.22994,49.099,40.1446,41.0201,20.1405117732802,30.4452371729984,4.95003751592307,26.8166245119914,24.9403828898015 +1362614400,41.0201,45.5,33.3,41.99999,20.4861533231287,31.2677007290964,4.9870283994631,27.3923255939692,25.4453619084122 +1362700800,41.99999,44.5,41.02,44.17999,20.8573562068531,32.1867932886791,5.0261588755083,28.0110744942886,25.9781527511188 +1362787200,44.17999,46.99,43.411,46.85,21.2603163641324,33.2305155834054,5.0679160366517,28.6829710564673,26.5444614845161 +1362873600,46.61,47.95,45.471,46,21.6509077837925,34.1394433398061,5.10878286236732,29.3854352859012,27.1360898941197 +1362960000,46,48.469,45.54,48.39999,22.0700252628981,35.1545044227777,5.1520050500941,30.1277219235009,27.7577140801222 +1363046400,48.39999,48.39999,36.65,44.28994,22.435964825679,35.8047617622327,5.19108058721797,30.8608228607788,28.3889155344208 +1363132800,44.33,47.295,43.7508,46.92002,22.8329895173288,36.5959422361083,5.23274299795198,31.6027657115912,29.0364282887582 +1363219200,46.92006,47.99,46.05,47.1696,23.2308809965724,37.3485717640313,5.27461299479109,32.3477263689151,29.6973627812096 +1363305600,47.0333,47.44999,46.4,46.95,23.6233568710624,38.0319983096967,5.31622193849642,33.0868313652329,30.3672526917404 +1363392000,46.86012,47.3599,46.2707,47.00019,24.0147549270219,38.6703512835603,5.35783944957722,33.8151634698436,31.0429964308158 +1363478400,47.00019,47.74,46.8,47.4,24.4099581827525,39.2917248459642,5.39981458207868,34.5317928287426,31.7230542774472 +1363564800,47.4,52.875,47.12009,51.60001,24.8563889586276,40.1678245885394,5.44594112026966,35.2689073903187,32.4203517639639 +1363651200,51.60001,62,50,59.14001,25.395725847136,41.5182585886504,5.49954958439856,36.081684149085,33.1592630857486 +1363737600,59.14001,66,57.702,64.4888,25.9999987331728,43.1532942711556,5.55844478792614,36.9959201599536,33.9536582668627 +1363824000,64.4888,74.9,63.101,70.85,26.6818753071482,45.1247367958901,5.62363224845082,38.0407133524976,34.8198416677318 +1363910400,70.84,73.74999,65,69.86501,27.3492755889107,46.8857414130325,5.68777120581871,39.1753677376341,35.7447189977791 +1363996800,70.28001,70.5025,52.3456,64.35,27.9457703526027,48.128841671178,5.74633990909725,40.3264654131939,36.6989810150671 +1364083200,64.35001,72.49999,62.7,71.5,28.6302973787593,49.7923931358475,5.81198873776439,41.5429498134632,37.7035261708513 +1364169600,71.50001,78,69.51777,73.6,29.3393077725179,51.4870108656113,5.87966867422555,42.820865018466,38.7582159292876 +1364256000,73.58561,79.72001,73.11,78.5,30.1077186224775,53.4097866650545,5.95217322655566,44.1806307651234,39.8733077659187 +1364342400,78.74999,89.49999,78.4,88.92,31.0041504168412,55.9373921252951,6.03500877726425,45.686057596871,41.078804010079 +1364428800,88.8,95.7,75.00111,86.18,31.8631965680998,58.0900511384921,6.11502599288446,47.2746177828344,42.3521187887996 +1364515200,86.18,93.06,83.01,90.5,32.7732410418809,60.396980779713,6.19927643146105,48.9551835921267,43.6989910315826 +1364601600,90.46598,94.98,87,92.19003,33.7018233580364,62.6599997046884,6.28513008949583,50.7115233687443,45.1144624349616 +1364688000,92.19003,93.8,91,93.03001,34.6381199435183,64.8217271808353,6.37173667156478,52.5222799706753,46.5905271919328 +1364774400,93.25,106,92.2361,104,35.70903401011,67.6104239246835,6.46920928561332,54.4569840224649,48.1578851507986 +1364860800,104.00001,118.36,99,117.98,36.9517062043701,71.1957140021351,6.58054229405766,56.5977869852917,49.8556478308579 +1364947200,118,147,110,135,38.4036170522824,75.7372823716004,6.70875701191231,59.0367724400971,51.7305887813955 +1365033600,135,142.12,116.39063,132.12001,39.8150351935416,79.7505866250151,6.8339683210465,61.6750886058502,53.7496875968237 +1365120000,132.79998,144.94,130.24303,142.32356,41.3497547709131,84.2045105616098,6.96924190092048,64.5427917766571,55.9315941752137 +1365206400,142.05001,143.9,139.54,142.63112,42.8836943525244,88.363297658912,7.10468749253739,67.5770776691546,58.2553878539459 +1365292800,142.63113,164.9,142.63113,162.30102,44.6592674185451,93.6261607384523,7.25963639467404,70.8922202394344,60.7745086045632 +1365379200,163.83899,194.9,162.59806,187.5,46.7451315607222,100.308070150067,7.43958940007134,74.6276011417852,63.5579944690332 +1365465600,186.5,240.111,186.5,230,49.3571983931573,109.5394996249,7.66179498137837,79.0438184056333,66.7333488173228 +1365552000,230.04359,266,105,165,51.1474352592574,113.487160041737,7.818882341227,83.420067716668,70.0098039072539 +1365638400,166.48159,188.7,110.20003,124.9,52.429689586034,114.299522285896,7.93577679581268,87.3789499011797,73.2149619547951 +1365724800,124.9,140,54.25,117,53.6079331796762,114.491741413138,8.04466713732293,90.8919510952181,76.3129487129641 +1365811200,117,130,85.5,93,54.4803713681878,112.961966234557,8.1294870254288,93.8002873335977,79.2105466648994 +1365897600,93,109.998,84.43689,89.99999,55.310774984321,111.327540218556,8.21122700180792,96.1600953086577,81.9025226706301 +1365984000,90,102,71.51,82.38601,56.0414852506228,109.267491490655,8.28528352753955,97.982413433028,84.3674413634163 +1366070400,82.5,84.5,50.01,68.35568,56.5919818367919,106.355402026795,8.34525815344686,99.2255016519831,86.5623173799322 +1366156800,68.49,98.77799,63.3,93.07,57.4477838521659,105.409751422343,8.42984781816914,100.194965766841,88.5951506777881 +1366243200,93.07,112.99999,86,109.01,58.4982186794491,105.66601594763,8.53026761485836,101.068738410007,90.5322362077085 +1366329600,109.15263,136.4321,105.54,118.48,59.6617940505672,106.578111173663,8.64004205377738,101.938098789723,92.4101612644394 +1366416000,118.48001,132,115,126.61552,60.9211182953048,108.004367430723,8.75782944276696,102.866643345455,94.2575863697872 +1366502400,126.61553,130.49979,110,119.2,62.0816134204465,108.80126892343,8.86809553476117,103.771745842817,96.0421252544868 +1366588800,118.5,127.39999,118.5,127.39999,63.3388302039653,110.125119853392,8.98643845317184,104.720625230034,97.793351328626 +1366675200,127.39999,144.019,124.97,143.475,64.791175238828,112.498953498429,9.12071259886157,105.836281003273,99.5681876504597 +1366761600,143.476,166.43438,140.96635,154.2,66.3704781212473,115.467220454218,9.26556058555283,107.172212462709,101.398425129556 +1366848000,154.9,162,120.089,141.71002,67.7854724093434,117.335174408711,9.3977938880335,108.569841144758,103.225276131634 +1366934400,141.71001,144.987,121.45164,136.90001,69.1317471140761,118.727793056276,9.52509282665752,109.96456408669,105.023965923085 +1367020800,136.89,139.88,122.71,128.00011,70.3581726044524,119.387793566973,9.64337895845607,111.267902104895,106.756487984311 +1367107200,128.00011,136.68,127.5,134.44444,71.6582208770968,120.459520773399,9.76798104847612,112.540501184059,108.446261294167 +1367193600,134.4,149.08,133,143.99991,73.0707059486432,122.135118038448,9.9019989707213,113.859414944261,110.126623628455 +1367280000,143.80001,146.93,134,139.2269,74.414980072188,123.351705531285,10.031117688346,115.163768219693,111.774005386875 +1367366400,139.00004,140.06,104,116.37999,75.4636458066138,122.855461082458,10.1372970080626,116.247361189737,113.29871333618 +1367452800,116.37999,126.9,91.11,106.25,76.378084525006,121.673489751958,10.2332564780409,117.052398180021,114.667166279468 +1367539200,106.5,109,79,98.1,77.1838738621463,119.995536402257,10.320983135128,117.550855794566,115.856705300071 +1367625600,98.10246,116.3,92,112.9,78.169174532032,119.490478424021,10.4233986096992,117.9207266699,116.933939364475 +1367712000,112.9,118.85,107,115.98,79.1847270989208,119.240603709135,10.5287869216164,118.208238834601,117.915980122564 +1367798400,115.9372,124.9,106.01,112.25,80.1452589095072,118.743014805939,10.6303459600025,118.393264899268,118.793127308837 +1367884800,112.245,114,97.52,109.60013,81.064678669174,118.092227232802,10.7291579559687,118.469469667577,119.560980399573 +1367971200,109.69773,116.777,109.5,113.2,82.0199865778613,117.744000086157,10.8314654281828,118.486609380103,120.239526535089 +1368057600,113.48999,113.71852,108.8,112.799,82.9616464938104,117.392016584938,10.9332703953506,118.451542121102,120.832282295696 +1368144000,112.799,122.5,111.54,117.7,83.9570269914742,117.413938744465,11.0398669061681,118.416195729803,121.36281108907 +1368230400,117.59001,118.74,113,115.64,84.9183161540507,117.287670360371,11.1443002746915,118.363117083135,121.826621143003 +1368316800,115.65,117.47,112.4,114.82002,85.862188343065,117.112023808603,11.2478107036437,118.288820611228,122.224537210038 +1368403200,114.82,118.88,114.5002,117.97968,86.8387254835672,117.173783294706,11.3543724097309,118.225025167961,122.572591000456 +1368489600,117.97968,119.80002,109.42198,111.4,87.723030479657,116.762807273687,11.4542585340241,118.113540655164,122.848860930189 +1368576000,111.29998,116.44,103.01847,114.22,88.6343845055027,116.581811077221,11.5568604355003,117.988164736724,123.06905620924 +1368662400,114.22,118.96999,112.1,118.21,89.5861821746701,116.697705036311,11.6633435373749,117.88693686979,123.25218038964 +1368748800,118.21,125.5555,116.5712,123.49997,90.5936538543155,117.181888048732,11.7750018620857,117.852180910687,123.420670307388 +1368835200,123.5,125.31189,122.25,123.211,91.5863925857139,117.611038280658,11.8862601971958,117.869913142568,123.574042730752 +1368921600,123.25,124.50101,119.5,122.5,92.5597817380539,117.959032989114,11.9966975849018,117.924527205337,123.71031889757 +1369008000,122.5,123.69,120.1,122.02,93.516329982091,118.248091302951,12.1065454765577,118.004861997116,123.828625170045 +1369094400,121.99999,123.08085,121.1,122.89001,94.4739098225992,118.578501569259,12.2171523183912,118.113183529655,123.933328070102 +1369180800,122.89001,124.5,122,123.8,95.432480364676,118.950166132907,12.328557268922,118.251459707961,124.028625205629 +1369267200,123.80001,126.93446,123,126.3,96.4123094158724,119.473324922157,12.4423470063519,118.434795790827,124.12439713301 +1369353600,126.3,133.98,125.35502,133.1,97.4676592338217,120.443267231622,12.5628122941824,118.712401606818,124.245920546675 +1369440000,133.4,133.5,128.2,131.986,98.4946591523494,121.264875203848,12.6820450848399,119.055532157617,124.386340260986 +1369526400,131.986,136,130.61,133.5,99.5315824788278,122.135767415894,12.8026704190217,119.462691153744,124.549236661188 +1369612800,133.5,135.47,124,129.76999,100.511877699807,122.679168901722,12.9194512569585,119.886760968744,124.717997968432 +1369699200,129.76994,130.62998,125.4,128.99996,101.472423055007,123.129080760666,13.0353466979047,120.314420464276,124.888580381949 +1369785600,128.99901,132.71988,127.6,132.25,102.461537134659,123.778304831902,13.1543712866261,120.769431918012,125.07245796731 +1369872000,132.25,132.4,126.5,128.79901,103.39299277565,124.135676996283,13.2698315524527,121.213179177929,125.254774024141 +1369958400,128.8,130,126.33,128.81505,104.314264367449,124.468753247984,13.3851925565198,121.643962072096,125.435033414686 +1370044800,128.82506,129.78999,127.10001,129.3,105.230971190439,124.812639823797,13.500922560345,122.064547566649,125.614561603346 +1370131200,129.2981,130.1,115,122.5,106.051154075,124.648026871713,13.6097478599529,122.414323630981,125.76706408557 +1370217600,122.49962,122.78483,115.111,120.73716,106.838623662076,124.369652637068,13.7167044782676,122.687582421157,125.887605824881 +1370304000,121.21357,123.99,118.78525,121.39997,107.621946944837,124.15827159078,13.8242160637639,122.901258748385,125.980952016249 +1370390400,121.39997,123.5,119.5,121.90001,108.397781907627,123.997529263674,13.9321195518644,123.068392690845,126.05095073026 +1370476800,121.9,123.29999,117,118.9699,109.12247423567,123.639664244417,14.0369898699986,123.170461769025,126.088257807563 +1370563200,118.02768,119.13333,106.15,111,109.73276092161,122.739977045738,14.1337982914655,123.149222480615,126.065415347483 +1370649600,112.12,113.1862,107,107.89242,110.286292445307,121.683132754039,14.2274074332852,122.999857939996,125.975888673863 +1370736000,107.89611,108.99,88,100.43743,110.731468211603,120.17087052736,14.3134800107364,122.681930696843,125.797533483659 +1370822400,101,110.63051,95,106.35001,111.236813507531,119.187106160622,14.4053698063771,122.27918967213,125.560903445832 +1370908800,106.10002,109.6,103.23021,109,111.758611482823,118.461991250364,14.4998136238289,121.833063239337,125.281854026989 +1370995200,109,112.25,106,108.77592,112.257677175845,117.772539842405,14.5939394252875,121.353163578671,124.964199481023 +1371081600,109.14444,110.3,100.3,103.949,112.674912378326,116.788584762892,14.6831520265952,120.807900118411,124.594193914897 +1371168000,103.94895,104.7,97.1,100,113.027291575264,115.593578748252,14.7683328534463,120.179438044181,124.162773135832 +1371254400,99.99999,103.7,97.5,99.8,113.360726084998,114.469396938802,14.8532289541359,119.486233206776,123.676032833365 +1371340800,99.79,101.7499,98.90017,99.9,113.677683339014,113.432351993238,14.9381401346446,118.746622167711,123.140892203039 +1371427200,99.9,102.4,98.9,101.95,114.003992368023,112.615041904989,15.0250132710207,117.992948666083,122.571228666756 +1371513600,101.95,113.3,101.03311,107.34998,114.386086531579,112.240276507383,15.1171910435449,117.280902880735,121.992520570921 +1371600000,107.05,110.9863,104.6603,108.21042,114.763349279243,111.953432629089,15.2101358534518,116.616697561867,121.41097155259 +1371686400,108.25,114.48,107.12222,111.29,115.169282921393,111.906209709869,15.3060625369399,116.024214212647,120.840648618589 +1371772800,111.09999,115.005,107.56,109.5,115.531577649795,111.734936483663,15.4001063004877,115.480383619044,120.275991434209 +1371859200,108.9,109.95653,107.5111,108.2,115.859515268977,111.483320852029,15.4927582428037,114.970042292707,119.713741410987 +1372032000,107.60002,108.334,100.761,102.09,116.091257636759,110.814707322411,15.5792174220997,114.438844642157,119.132744007449 +1372118400,102.97996,109.98,100,103.32933,116.315512034047,110.281900594002,15.6668276341881,113.905794453474,118.541467276177 +1372204800,103.84,105.4899,101.8322,104,116.520456478092,109.83475694853,15.7550199764889,113.381626054382,117.945550676883 +1372291200,103.99999,104,100.055,101.73678,116.661932677187,109.258345577555,15.8408646553171,112.849730960057,117.339092500948 +1372377600,101.60626,101.78799,92.25,94.66,116.677971873294,108.219240077279,15.9195581288786,112.254900320381,116.69855527045 +1372464000,94.7,100.4398,93,94.999,116.668636324343,107.278227679245,15.9985114939584,111.616365934293,116.030535539533 +1372550400,94.999,98.12228,93.85,97.51,116.665167579727,106.582928403343,16.0798930282477,110.969103815745,115.349374864234 +1372636800,97.50888,98.1801,86.011,88.05,116.528788601402,105.263760574507,16.1517483928801,110.238477595436,114.623039160142 +1372723200,88.04,92.57,87.51,90.40502,116.405314213628,104.20612024286,16.2258832820859,109.465943148337,113.867005469298 +1372809600,90.04007,91.2,76,78.89,116.101139590329,102.404127020393,16.2884474930561,108.566065143998,113.043169860908 +1372896000,78.20001,84.27001,72,80.03565,115.782261743194,100.811946085834,16.3520930630457,107.579105875239,112.164734473798 +1372982400,80.04214,80.60299,65.42448,68.50001,115.28488303252,98.5119929621752,16.4041578402704,106.429315013977,111.19609698854 +1373068800,68.88997,74.99997,66.8119,69.655,114.76734471834,96.4579615687468,16.4573237843181,105.165488394057,110.152946184688 +1373155200,69.66206,77,66.60001,76.5,114.318345088672,95.0373603416967,16.5172707341632,103.877944384663,109.071405387956 +1373241600,76.5,80,72.46,76.00003,113.832950749926,93.6822893465945,16.5766586597371,102.577696681531,107.956934852632 +1373328000,76.00101,78.3,72.51,76.7,113.327591792218,92.4734955025542,16.636686146102,101.284289143997,106.819186244439 +1373414400,76.7,89.84,75.53,88,112.929181383523,92.1550735445681,16.7079356850301,100.105375753226,105.707107222808 +1373500800,87.94636,90.7,85.00001,88.97901,112.492841932136,91.9290023722662,16.7800915371718,99.0393103080115,104.626411795906 +1373587200,88.97901,104.17188,88,93.98994,112.072099354763,92.0756992437251,16.8571782895464,98.1186178761415,103.597435301 +1373673600,93.98994,98.32,87.76404,98.32,111.669368972609,92.5201665449512,16.9385112346299,97.3629138608768,102.636017616425 +1373760000,98.32,99,92.86,94.41986,111.210536054868,92.6553861085307,17.0158690544526,96.7157613978147,101.725317161148 +1373846400,94.33999,101.94,93.11,98.89028,110.783609034232,93.0991838321729,17.0976129325722,96.2021533782803,100.881342377761 +1373932800,98.89999,100.7319,96,97.1,110.321637382292,93.3839606285225,17.1774877713917,95.7873745982955,100.094846453191 +1374019200,96.97,100,96.18,98.50001,109.845762094532,93.7481193623559,17.2586806406736,95.469590082093,99.3691991590192 +1374105600,98.50002,98.8,86.2,90.06889,109.25393420091,93.4862330104478,17.3313747683136,95.1614641015263,98.6701288428901 +1374192000,90.08,95.2001,87.6,92,108.720568850621,93.3804434271253,17.4059243489434,94.8806417323723,98.0053081240896 +1374278400,92,93.10072,89.27,89.82138,108.341331393073,93.1271104474867,17.4782243522332,94.6058758066149,97.3661084234552 +1374364800,89.94998,92,88,91.998,108.086221349396,93.0467407322906,17.5526253205907,94.3572840675811,96.7609846668657 +1374451200,91.98,92,89.8,91.601,107.861118550661,92.9438333761854,17.626555639537,94.1289426314818,96.1878255087714 +1374537600,91.601,97.13124,91.60001,95.55851,107.724799096332,93.1299452096678,17.7043633465519,93.9534465489575,95.661022274268 +1374624000,95.61155,95.99,92.3,95.08999,107.57885968703,93.2694605617055,17.781625596873,93.8188927192313,95.1768536821745 +1374710400,95.09,97.4767,93.57,96.95,107.44988394683,93.5314401643938,17.8606677526991,93.7352641891159,94.7405470382802 +1374796800,96.99997,97.476,96,96.02015,107.286971487511,93.7085857227744,17.9387026248518,93.6862160494073,94.3461691594382 +1374883200,96.02015,97,93,94.4,107.027917557343,93.7578003666268,18.0150420195579,93.6520350919145,93.9855262235165 +1374969600,94.2,100.5771,94,98.78002,106.777246897723,94.1152803301546,18.0956782334875,93.6682448693253,93.6736520294541 +1375056000,98.78009,102.85,98.45,101.484,106.53346094271,94.6397834047153,18.1789336087917,93.7491457158551,93.4177887733912 +1375142400,101.21001,107.99,100.47,107.96,106.354879413791,95.5879120988534,18.2685715367325,93.9385512969271,93.2385955918097 +1375228800,107.26367,111.65202,103.55,106.21188,106.154500854776,96.344122686018,18.3563746366929,94.2004732755472,93.123628961357 +1375315200,106.22691,108,103,104,105.901570524812,96.8890655484904,18.4418817199509,94.5006684157763,93.0595095325657 +1375401600,104.62049,108,101.21111,104.50102,105.633113095892,97.4308819958674,18.527803653671,94.834086602149,93.0440481894286 +1375488000,104.6,105.8852,102,104.95,105.376248780218,97.9660903750504,18.614088066632,95.1958360753084,93.0748616792888 +1375574400,104.9,106,103.50108,105.12,105.160490699561,98.4753033403326,18.7004560617118,95.5792358033571,93.1485411293009 +1375660800,105.12,107.77,105,106.72001,104.986560745272,99.0621588845247,18.7883352855887,95.9909642769171,93.2672057519025 +1375747200,106.22002,107.5,105.11111,106.55641,104.829118507148,99.5955972466437,18.8759634311764,96.4210249717113,93.4259648077949 +1375833600,106.5564,106.96,105.22,105.98993,104.662181862134,100.050743776729,18.9629385114668,96.8575525696325,93.6186705919907 +1375920000,105.98992,106.65,100.95969,103.05,104.467055724067,100.264229861284,19.0468915124884,97.2702118094825,93.8306070915811 +1376006400,103.07,105.78999,101.935,102.8,104.30797866946,100.444725156766,19.130511092932,97.657506257302,94.0583948274329 +1376092800,102.38002,103.89999,102.38001,102.99999,104.202352848353,100.626608078989,19.2142468582653,98.0223141324616,94.3005810887929 +1376179200,102.99999,105.19,102.7,105,104.137479953571,100.93790469653,19.2998958427066,98.3827584248103,94.562579692685 +1376265600,105,108.121,103.5,106.81349,104.093272159942,101.356126951493,19.3872699134569,98.7521740499066,94.8485649813489 +1376352000,106.98999,109.64,104.5,109.6,104.054485114466,101.942923159513,19.4773388168892,99.1498654717476,95.1659401954055 +1376438400,109.42519,115,108,112.56205,104.04971619896,102.698789161551,19.5702751226027,99.5929873509854,95.5220234723792 +1376524800,112.56206,113.321,108.78,109.99497,104.018232340187,103.218128945636,19.6605556528892,100.047462005506,95.9024849982002 +1376611200,109.10523,112.3,108.21,108.99438,103.973205899513,103.629280620987,19.7497470518264,100.498697816212,96.3000367902891 +1376697600,108.99499,114,108.225,112.75,103.965825181169,104.278490466229,19.8425990339572,100.975834622401,96.7259067787326 +1376784000,112.76,114.69,112,113.38,103.962552950635,104.926332960922,19.9359873077278,101.475601394847,97.1784580843425 +1376870400,113.395,123.74518,111.771,118.50203,104.015543009083,105.892646670133,20.0343962060334,102.033943916288,97.6730554230738 +1376956800,119,123.01111,116.817,121.20001,104.10491154358,106.982219823904,20.13540053093,102.658972771878,98.2144444614528 +1377043200,121.20003,125,119.68162,123.30002,104.219104143854,108.14371554445,20.238400674476,103.351614677847,98.8045325668052 +1377129600,123.13496,124.49,120.54,121.99994,104.312230495209,109.129997104119,20.3399999748169,104.082654623277,99.4320413301827 +1377216000,121.99993,122,118.444,118.51002,104.365796423922,109.797664089535,20.4380134818365,104.80879514483,100.078240513499 +1377302400,118.51003,121.39,118.02,119.60255,104.420532107515,110.495572686438,20.5370199197859,105.53407230085,100.743226450333 +1377388800,119.60255,122.99,119.14,122.11102,104.494662301805,111.322356456391,20.6384319798763,106.274054423191,101.432363329783 +1377475200,122.111,122.96996,119.91611,120.07,104.534542831967,111.945010884752,20.7377050235979,107.002093124999,102.133287892041 +1377561600,120.1,133,120,131.295,104.716594566839,113.322336829882,20.8480860564678,107.811049650871,102.884739787151 +1377648000,130.20501,131.72442,128.02,128.76,104.867753890079,114.421184683993,20.9558259258504,108.657668847182,103.670012396438 +1377734400,128.57206,131.2,128.18,129.30034,105.024766744915,115.480278130314,21.0639977056668,109.532625058669,104.485305205965 +1377820800,129.30033,142.76173,128.56,138.03002,105.287566561825,117.085361438016,21.1807772483852,110.498795954069,105.357952738977 +1377907200,138.03002,148.7,135.89,141,105.58318818511,118.787597649294,21.3004054426877,111.557330723372,106.290998577339 +1377993600,141,147.29,141,146.01003,105.9353293644,120.725281548899,21.4249162420012,112.726012045814,107.294703250069 +1378080000,146.01005,148.5,142.11,144,106.256167382029,122.381968454372,21.5472959036256,113.957830739072,108.351678331182 +1378166400,144,148.90893,142.2,144,106.585206816468,123.920732923596,21.6695533806989,115.230943187646,109.453403109839 +1378252800,144,145.8,130.08998,132.51,106.776918628463,124.532114166424,21.7802171137815,116.427693752853,110.548522861358 +1378339200,132.51,137.97,127.24164,130.20002,106.953027171227,124.935553864123,21.8884640623766,117.531307327934,111.624740552189 +1378425600,131.65,133.99999,121.9,121.9,107.032409200133,124.719484125272,21.9883161493697,118.477005964182,112.648255986851 +1378512000,122.41,131.02499,121.25,128.99496,107.206202674031,125.023811110417,22.0951521919365,119.345948282883,113.646477625904 +1378598400,128.5,129.86999,124.06,126.31501,107.361775685471,125.115718228315,22.1992058914491,120.121064636561,114.607666236577 +1378684800,126.31502,137.48007,124,133.1,107.613018788409,125.684036813503,22.3099298758086,120.870945090888,115.556962845181 +1378771200,133.1,136.02,131.375,132.61636,107.871439332519,126.177477328012,22.4200604437815,121.589400739858,116.489967385331 +1378857600,132.61636,145.9,127.5,142.1,108.269500853908,127.310837324104,22.5395495769485,122.357776291192,117.440354697317 +1378944000,142.1,145.51679,137.51,139.35499,108.643312545289,128.16813620261,22.6561787778692,123.136848146552,118.392691958476 +1379030400,138.37013,145.60414,137.82,140.66,109.041571038428,129.057303013439,22.7739944649468,123.929266351157,119.348145168052 +1379116800,140.66,142,136.65004,136.7101,109.402261869419,129.602026619205,22.887748921519,124.691668334814,120.287925392565 +1379203200,136.71,141,135.04,138.3002,109.801694570346,130.221159777433,23.0029773698887,125.436531497791,121.215821006568 +1379289600,138.4,142.23,137.9,139.41938,110.236386764811,130.875886107567,23.1192081692046,126.170201513624,122.13356483352 +1379376000,139.01,141.37,138,139.15001,110.677794104107,131.46483556084,23.2350539824867,126.885992007679,123.03753714307 +1379462400,139.15002,142,139.01001,140.41238,111.143274934906,132.101718870068,23.3520444920456,127.591798230027,123.930262258569 +1379548800,140.41234,141.2,131.14,135.05037,111.531080903089,132.311602900504,23.4635647362957,128.236935757836,124.789076813095 +1379635200,135.89477,137.28,131,133.80726,111.903236479961,132.418063287426,23.5737325099961,128.815838307325,125.608926562669 +1379721600,133.80726,135.99,132,134.38,112.289731038834,132.557713305875,23.6843621184413,129.340196696037,126.392191302166 +1379808000,134.33795,135,131,134.00001,112.682944128424,132.660375516461,23.7945018894757,129.811864260137,127.137588863465 +1379894400,134.9,135,132,133.4,113.073709783514,132.713021747152,23.9039326429347,130.230919203481,127.843258233132 +1379980800,133.4,136.59141,132.5,134.7788,113.478760647014,132.860063172736,24.0146307418778,130.614986995905,128.515119200584 +1380067200,134.77898,138,134.7,135,113.881694582378,133.012383181578,24.1254391665482,130.968863241147,129.15434447467 +1380153600,135.00135,139,134.71,137.10002,114.303077925244,133.303339843659,24.2382336313829,131.312996156468,129.769225253457 +1380240000,135.85005,142.66,134.82811,138.93,114.739166005064,133.703843687439,24.3527425440344,131.661958097291,130.366419966771 +1380326400,138.93,143,138.02021,142.5,115.221415252891,134.329951238949,24.4707014386648,132.04273788689,130.958658512515 +1380412800,142.49,145.81,141.36005,143.88402,115.72336479302,135.010006752561,24.5899243759122,132.458366674893,131.549352275787 +1380499200,143.89402,145.81,138.12,141.8965,116.211816567227,135.500185106882,24.7070439290143,132.881890792134,132.128896535392 +1380585600,143.28122,144.44,139.41,140.3,116.691806658939,135.841834373181,24.8224525945965,133.29444772659,132.690021909745 +1380672000,140.30001,141.92999,109.7,123,116.969496163163,134.927756770352,24.9204736169953,133.544861510966,133.166845783719 +1380758400,123,132,120.1,130.98925,117.351046172054,134.647415136692,25.0263732873418,133.728781939194,133.594904872568 +1380844800,130.97902,139.8,128.5,136.82222,117.81345492204,134.802217041023,25.1379908973181,133.906833513176,133.99875583676 +1380931200,136.82222,138,135.3,136.69511,118.287795729802,134.936952547499,25.2493701602891,134.077418792303,134.378451893733 +1381017600,136.73026,138,134.1,137.8,118.791606840945,135.140743335958,25.3617413500375,134.249938448478,134.738785332712 +1381104000,137.01002,139,135.12,135.80001,119.273726704054,135.187669723138,25.4720035463453,134.405268704429,135.072489195209 +1381190400,136.82274,137.79499,135.66,136.50002,119.770505565133,135.281082389918,25.5828545502186,134.55116602216,135.383210915258 +1381276800,136.50998,142.1,135.8,139.5,120.324081024416,135.581383576142,25.6965900769336,134.713975770697,135.68305993168 +1381363200,139.42001,141.69,138.51,140.41013,120.892321729875,135.925092179408,25.8111207284259,134.897159608949,135.97526528114 +1381449600,141.41,141.85,138.87001,140.1,121.47372351474,136.2222607631,25.9252273963055,135.092840444399,136.258202271476 +1381536000,141.7929,143.0571,139.4,142.89995,122.086664534657,136.697576515719,26.0420156254623,135.321315685711,136.542163891193 +1381622400,142.61096,147.65,141.50021,147.53,122.762632491593,137.468624903637,26.1633099208718,135.614821068142,136.843475082139 +1381708800,147.53,153.69902,146.03267,151.38003,123.465668474038,138.45883420341,26.2883270072419,135.99257138099,137.174061677849 +1381795200,150.6295,158.1,150.628,158.1,124.226716723789,139.856886010215,26.4199285321558,136.494456074664,137.555562681168 +1381881600,158.1,163,144.20004,152.83,124.905744555529,140.780308053546,26.5461370673479,137.0485684673,137.962307467701 +1381968000,151.645,159.95,150.75471,157.60001,125.622594587221,141.977528979213,26.6769820003665,137.682093454792,138.408626629777 +1382054400,158.25323,168.3,156.5,168.3,126.442374522362,143.851153923439,26.8183792280057,138.467972460895,138.929876151885 +1382140800,168.2,195.83267,167.1,183.17999,127.435507528744,146.650567711083,26.9744915505973,139.501031677507,139.573907809465 +1382227200,180.80004,186.12,177.25,186.12,128.448903929684,149.459989091492,27.1333833324828,140.753928808734,140.338952414287 +1382313600,186.12,197.39005,183.2,192.795,129.536073293038,152.544561103458,27.2987808339192,142.234557204033,141.237038602428 +1382400000,192.795,205.5,192.795,203,130.751302878169,156.135962868658,27.4742019316603,143.977957920925,142.292000161532 +1382486400,203.99829,228,200.75,228,132.269723107516,161.251221707989,27.6744080303403,146.138586319276,143.580922133367 +1382572800,227.99997,233.4,175.30001,206.995,133.524615524254,164.507249000541,27.8534427304989,148.442202995477,144.999724060766 +1382659200,206.985,209,176.60399,197.90999,134.663487682443,166.884845263927,28.0232281556751,150.765002985573,146.497697637256 +1382745600,197.19879,198.42679,187,188.56002,135.691565491786,168.427677166901,28.1835090028247,153.002676775749,148.027146450864 +1382832000,189.92363,207.9,189,207.0001,136.939684386118,171.173249705372,28.3620405055424,155.310383734208,149.649253675737 +1382918400,207.5,209.79,200.42,206.9,138.179002866455,173.716268196125,28.5402938209811,157.654891435341,151.349637562817 +1383004800,207.5,216.5,204.20001,216,139.518040518568,176.726010502619,28.7274546591143,160.088074271693,153.149585747101 +1383091200,215.502,216.5,204,208,140.744983638957,178.95208292498,28.9064413892452,162.504017084913,155.003625475385 +1383177600,206,215,205.43565,211.1714,141.995608459855,181.245443457509,29.0884157618249,164.912307430348,156.912132382923 +1383264000,211.20177,215,209.76,213.5,143.266039712127,183.541312323895,29.272533337655,167.313613260489,158.872061831991 +1383350400,213.50003,214.87996,211.02,211.70001,144.501668040444,185.545639285495,29.4546699691828,169.672853861596,160.864843141986 +1383436800,212.2,226.959,212.105,224.01001,145.882523605528,188.283520709232,29.6489151285596,172.08350958462,162.926643848483 +1383523200,224.7,239.02,222,238.19039,147.428692844997,191.835875467933,29.8571241246048,174.638210314838,165.097358819011 +1383609600,238.19039,258.87626,229,251.3,149.11804673935,196.068512552874,30.0782139528791,177.402660011436,167.409036070264 +1383696000,251.4134,272.52,251.4134,264.1,150.950701219511,200.910971749548,30.3118626366991,180.426422970849,169.889297273563 +1383782400,264.11,324.198,263.60001,309.659,153.337412264716,208.651621105933,30.5907644093771,184.031226800685,172.686486227432 +1383868800,309.99999,358,308.01001,355,156.288083706523,219.068651217829,30.9146564375302,188.47484624046,175.93431387943 +1383955200,355.06361,395,340,367.8,159.391675779282,229.655300352961,31.2510046829272,193.68079009578,179.630536743241 +1384041600,365.12,372.5,290,336.33101,162.088117558588,237.248442743732,31.5555982975054,199.196845519666,183.604236576737 +1384128000,341.0302,376,321.41,363,165.10676629799,246.199397776207,31.886514275566,205.150888526795,187.917524964311 +1384214400,362.99999,391.52574,359.02,380.1,168.327097657179,255.730399184675,32.2341726026053,211.561613721051,192.589814904949 +1384300800,380.25003,445,372.183,434.87999,172.219787603577,268.4822089154,32.6361764795503,218.766187011084,197.779803441259 +1384387200,434.87499,447.49999,402.54,433.4,176.08171479876,280.221003760263,33.0363013630916,226.548775741552,203.418285938622 +1384473600,433.4,458,413.05,434,179.939327261545,291.166942803196,33.4366258030873,234.744800626728,209.448102821836 +1384560000,434,477,428.01172,461.9999,184.136239848125,303.326777252142,33.8645058164871,243.452154973889,215.918946452789 +1384646400,458.95149,536.777,457,528.31991,189.145161242346,319.341715418973,34.3581729076865,253.078221975092,223.019326282463 +1384732800,528,788,522,785.50007,197.35312337797,352.522715805029,35.1081172551001,265.600147362443,231.640088550797 +1384819200,785.50007,900.97998,502.6212,645.71675,203.776647184649,373.392172002068,35.7177523911265,279.187827781091,241.091548132837 +1384905600,643.00001,650,453.29,638,210.074643716271,392.226871319737,36.3190744168187,293.468123347576,251.238243636762 +1384992000,630.12001,784.4444,595.21,765.10001,217.9363323364,418.767860313959,37.0466934529277,309.293524571002,262.462712012678 +1385078400,768.99999,821.999,682.3,802,226.230870479794,446.046199637729,37.8104271901896,326.572253996067,274.770274526312 +1385164800,802,889.99999,799.60484,832.524,234.883588151575,473.555564035045,38.6038737467572,345.161124716606,288.137632393606 +1385251200,839.99,855,745.2,795,243.034486373668,496.435874661323,39.3590639464852,364.342754721806,302.282497190643 +1385337600,795.00166,850,758.95852,830,251.586494652406,520.178860843743,40.1484443593238,384.148787944697,317.217516909927 +1385424000,829.995,975,825.1,970,261.858092306865,552.196983538154,41.0768134474893,405.50755805529,333.347790036272 +1385510400,970,1094.794,914.31556,1080,273.465238531128,589.765830949936,42.1140802730625,428.910030948868,350.926169772644 +1385596800,1087.94315,1224.59998,1032.15,1101.47497,285.30238110317,626.189121390861,43.171752217867,453.97717592403,369.844246645485 +1385683200,1101.42,1242,1050,1206.97761,298.425044671293,667.529457513502,44.3337026135368,481.109175209829,390.31508180487 +1385769600,1205,1233,1150.25,1205.8,311.498417368752,705.843380030453,45.4933171787849,509.69518113323,412.124902566712 +1385856000,1206.00001,1216.9,840.32,1004.42392,322.01252404005,727.096245960321,46.4507189532453,537.489420709241,434.317049608369 +1385942400,1005,1117.79999,975,1096.63251,333.641396672922,753.399717300619,47.4992264336573,565.189127325454,457.12341785581 +1386028800,1099.9,1185.77338,1065,1155,345.956694405008,781.985495082645,48.6049615126183,593.076177767297,480.626072507689 +1386115200,1155,1240,1131.72718,1237.955,359.266890567938,814.441256456461,49.7924153637648,621.593402622179,504.990321259154 +1386201600,1230.005,1240,870.001,1106.4345,370.8691934473,835.225240764652,50.8473728380846,649.245580519157,529.554242820231 +1386288000,1106.899,1118.989,800,845,379.160206977027,835.921004954598,51.6402593433231,673.687011647189,553.220849162212 +1386374400,846,895.89,576,696.99999,385.559397131707,826.03265219734,52.2845901733938,693.996279493972,575.418172047372 +1386460800,693.25256,829,653.0001,804.00001,393.258575054334,824.46437587649,53.0351071291712,711.655475405243,596.591375114332 +1386547200,810.98,980.17661,787.75,918.99,402.368433519492,831.192679123041,53.8996814253695,727.975882302262,617.181812075971 +1386633600,915.935,1067.99999,912,1033.975,412.889158385395,845.626658909483,54.878194204446,744.047810534139,637.595492746321 +1386720000,1026.00001,1056.9,856.123,920,421.961844645871,850.920529190227,55.7419367417644,758.791095086899,657.339955982297 +1386806400,908.00003,941,839.5,899.9999,430.766900918335,854.413982875617,56.5848486998849,772.140969384157,676.322014736005 +1386892800,899.9999,990,882.15864,936.87547,440.027029857576,860.28356476602,57.4637358689814,784.547871968822,694.674062800541 +1386979200,943.39623,948,875.13535,908.98998,448.910510661948,863.750471594569,58.3139045201143,795.83068319489,712.275060294819 +1387065600,900.005,928,838.0201,920,457.904191121881,867.754294770523,59.1742168246889,806.186356933877,729.16397529343 +1387152000,916,925,714.11,760,464.842741229099,860.08437904072,59.8739252774441,814.306601971145,744.733369416893 +1387238400,760,780,678.8904,715,471.183394940201,849.75732002815,60.5280068810443,820.12857004538,758.866706687992 +1387324800,715,717.015,455,541.00001,475.299177349985,827.78007490841,61.0077128649927,822.505252381453,770.975641981375 +1387411200,541.21,746,522.44,731.98999,481.777960502402,820.961767753575,61.6776253913742,823.678044910245,781.907803916986 +1387497600,730,774.47,621.25001,650,487.186638980697,808.792764611004,62.2650098003689,823.141487618416,791.412346351743 +1387584000,629.9999,649,568,595.96,491.897211335299,793.643397501473,62.7978539176954,820.736140812194,799.370689304955 +1387670400,595.96,674.39,574.0123,629,496.99647444552,781.924133902801,63.3631533645664,817.099774649961,806.009012583639 +1387756800,629,670,617.61,657,502.424908698265,773.032074596083,63.9558437726957,812.724148909421,811.520217539497 +1387843200,657,665.35,627,650,507.733948806358,764.274691456744,64.5409535954852,807.717654291961,815.952890650804 +1387929600,648.22,695,635,690,513.514623346684,758.987843024916,65.1654154690746,802.581219553399,819.533045517227 +1388016000,690,764,684.3,760,520.143967806138,759.059888029904,65.8591422749865,797.987419694644,822.583986957141 +1388102400,761,761.45,704.0123,715.5201,526.185392312604,755.960740048898,66.5077674746554,793.495235195124,824.97122100346 +1388188800,715,740.01,690,713,532.171852831941,752.902808515248,67.1532290010407,789.103696855089,826.732647361637 +1388275200,712.1,732,700.0123,728.3,538.316523465342,751.151588590044,67.813321702088,784.96518749816,827.972600314734 +1388361600,726.38,740.62618,724.73,735.82,544.517827925457,750.060291090115,68.4802633736461,781.135627530974,828.75913295581 +1388448000,735.82,740,710.02,739.28,550.724921506882,749.292953469095,69.1499936505443,777.623253683448,829.140892752385 +1388534400,737.67,757,735,752.98,557.064040832371,749.555396244523,69.8327334229345,774.520622439101,829.202588636008 +1388620800,750,800,742.52,786.6,563.780603898709,752.192219116907,70.5483579434963,772.072540353833,829.098159440825 +1388707200,786.6,818.99,768,802.49,570.651936560109,755.772398835877,71.2791326469468,770.321477699266,828.902129311049 +1388793600,802.4698,842,791.04,839.99,577.945291482136,761.766980353677,72.0466179543147,769.483161766161,828.764637424419 +1388880000,839.99,939.8,825,910,586.067781916215,772.318158582654,72.8832353826514,770.008219570287,828.945603402547 +1388966400,909.71,995,875.181,925.9999,594.34100241642,783.257175058894,73.7349919186545,771.78868806705,829.477687394574 +1389052800,925,943.15,765,799,600.979119792041,784.377744228823,74.4591006327243,773.488697451929,829.849438996395 +1389139200,799,849,779.59,826.01,607.920141040012,787.341114682748,75.2094533303383,775.341312326547,830.175083908194 +1389225600,827.8,846.35,779.99,824.85,614.809929622309,790.010984966015,75.9578987209405,777.293430997128,830.452932098476 +1389312000,822.16,860.64,799.98,854.33,622.037745962527,794.589191581214,76.7350298592758,779.565382032739,830.797323037717 +1389398400,853.1,915,853,899,629.750708675552,802.021119037638,77.5559838878293,782.466976472877,831.3699850309 +1389484800,898.68,902,821.1,827.24,636.49739724279,803.81619079968,78.3044726785704,785.241142048518,831.878360905303 +1389571200,827.24,844.2,784,817.9,643.070597696699,804.818671767618,79.0428890646543,787.805749225961,832.290726281086 +1389657600,817.74,836.99,802.3,818.9999,649.598260874383,805.828086990641,79.7816663580368,790.185292679762,832.617840699175 +1389744000,819,850.25,812,844,656.3802216046,808.545151369844,80.544666294165,792.608134929465,832.960124732478 +1389830400,845,847.68,807.11,818.49,662.7748245053,809.25302246771,81.281435117546,794.825126364898,833.218663053128 +1389916800,818.39,820.22,765.03,807,668.953923124899,809.092653059683,82.0059966653089,796.754272834715,833.356210266278 +1390003200,804.98,820,794.93,809.14,675.08969048515,809.096023199528,82.7319713948826,798.448434762458,833.39061537231 +1390089600,807.22,844.88,794.41,835.9,681.487320926046,811.003921568879,83.4839386435363,800.1659649406,833.431571358615 +1390176000,836,844.99,815.01,828,687.703329452867,812.21369691548,84.2272677188206,801.819578852139,833.448533943901 +1390262400,828,834.17,813.6,822.8,693.767764160222,812.967226533221,84.964662940512,803.361361708251,833.423842420132 +1390348800,822.8,824.13,803.1,818,699.685609244006,813.325457715186,85.6965295952816,804.756319116988,833.343005477741 +1390435200,818.51,823,802.52,810.14,705.416395203741,813.098717868868,86.4198180814568,805.950477871095,833.181420513804 +1390521600,806.97,809.14,767.23,775.0123,710.627209201233,810.387739006018,87.107312736575,806.665448242909,832.813911114419 +1390608000,775.0123,817,775,804.73,716.10799218214,809.985022979805,87.8237913140213,807.236916113861,832.371596107407 +1390694400,805.5,836.7318,794.64,812.5,721.574139814123,810.164038227859,88.5473121674219,807.752555322089,831.891847805925 +1390780800,812.7,824.9999,726.5,749.03,726.135121720994,805.812537228026,89.2067418440542,807.669125231164,831.139979922278 +1390867200,748.1,814.5,741.214,784.69,731.052843897777,804.309041883515,89.9011162894072,807.40183939089,830.276630727042 +1390953600,784.42,805,781.8,794.731,735.997842352372,803.627279970827,90.604822458938,807.072409684406,829.352456738883 +1391040000,794.74,812.65489,770,803.0101,740.945474829973,803.583349300811,91.316091944807,806.766273361317,828.407383705075 +1391126400,802.5,809.6746,793,805.22,745.823466871996,803.6998455664,92.0288576719153,806.501050777906,827.455102621567 +1391212800,804.8,829,801,812.6,750.75842530634,804.333355670413,92.748280003688,806.335578545441,826.527691399308 +1391299200,812.6,827.2,811,814,755.637955391279,805.021424276456,93.4683818280802,806.265703088161,825.631824462002 +1391385600,812.05,815.2,798.5,805.31499,760.314662043885,805.04232018938,94.1790935352697,806.199998540597,824.735405772777 +1391472000,805.31499,814.4,795.2,800.01,764.792810865004,804.684121271554,94.8837991316186,806.092433069643,823.821834230523 +1391558400,800.03,807.48,777.85,780,768.915007686604,802.927113530747,95.5678230479407,805.778377526612,822.820454722574 +1391644800,784,829,678.03,761,772.681879056383,799.942755197192,96.2321943226947,805.132909323173,821.670765164152 +1391731200,760.61,763.07,620,700.5,775.587626597881,792.864452156686,96.8354987408691,803.697363858757,820.161251923382 +1391817600,707.8,723.97,667,678,778.081621283958,784.688437731758,97.4157366883513,801.429732485476,818.243242699293 +1391904000,678,728.8993498,666.53,694,780.638287148994,778.233264167202,98.0113698140741,798.635470974422,816.01913301038 +1391990400,693.5,703,450.13,687.05035,782.957200181368,771.742893930455,98.5994696861578,795.372033577231,813.497103824781 +1392076800,689.13,721.35,631.2,678,784.979373746628,765.070305165008,99.1779464750034,791.672583249316,810.677832720826 +1392163200,675.31,682.5,642,656.01,786.533654461518,757.307428039196,99.7338907681074,787.456312074218,807.5141983542 +1392249600,656.01,658.9899,601.2,606.01,787.261573720821,746.538126215377,100.23935971854,782.419068600772,803.858612558347 +1392336000,607,710,535,661.13,788.464845265963,740.458803510817,100.799356127773,777.226463101634,799.974856360293 +1392422400,661.13,668.4,633.3,654.99,789.337714726812,734.375161816061,101.352663222438,771.897852755992,795.873809549884 +1392508800,652.5,670.9999,585,625,789.61814634987,726.589873296014,101.875475705372,766.244161069993,791.476183070303 +1392595200,625,664,611,633.99,789.860720303055,719.998644368356,102.406741876539,760.449619048096,786.857748837479 +1392681600,633.51,651.3,611.304999,628.1999,789.899952060542,713.46443953776,102.931696759724,754.539239193786,782.032856311656 +1392768000,625.81,636.85,617.89,627.45,789.690333908862,707.341959647694,103.455378820534,748.578171692586,777.034447768834 +1392854400,627.45,629,541.2,542.42,788.177938326926,695.602868085863,103.893643597992,741.891873120024,771.575054322036 +1392940800,542.42,588.489697,530,579.98,786.867746898206,687.372869861242,104.368970927284,734.991431844298,765.856324251322 +1393027200,579.9,619,562,614.389,785.791449012623,682.177901691642,104.878177828605,728.271927023117,760.051841114124 +1393113600,614.389,644.93,600.2,607,784.373166857842,676.826763048433,105.37949911518,721.695489287626,754.162912411785 +1393200000,606.9999,608.4,505.7511,517.87,781.505231313267,665.512272244515,105.791331980179,714.523096918927,747.882376209183 +1393286400,519,549,400,544.24,778.564285684146,656.880151265412,106.229081627063,707.150383795235,741.366826287877 +1393372800,542.01,609,541,597.6001,775.834483694324,652.66061645585,106.719669249905,700.13788842464,734.862351905978 +1393459200,597.7001,599,568.75,584.3339,773.040618048015,647.797142954153,107.196522017647,693.367679088518,728.342477184405 +1393545600,585.2928,591.18,540.2044,549.995,769.603951018747,640.83561816064,107.638614539569,686.558471845839,721.703459009415 +1393632000,549.01,577.25,541.1,570,766.06545362363,635.793561849867,108.100238779716,679.948983402883,715.056042813229 +1393718400,569.31874,572.24,555.161,565.37191,762.303404748949,630.780971526741,108.556781420183,673.520930404102,708.408568178262 +1393804800,566,719.25,563,680.98,759.85262429719,634.35412208123,109.128292021262,668.297114061396,702.222711696887 +1393891200,680.98,703.85,658.5,672,757.187961961539,637.033743453411,109.690266339765,664.031540516326,696.448673179345 +1393977600,673.26,678.9999,651.21,669.61,754.229072319641,639.352510821681,110.249293390299,660.570518069421,691.06421722148 +1394064000,669.61,676.43,648.7,668,750.903309424532,641.391629803769,110.806154871874,657.787393782356,686.050473293307 +1394150400,667,669,616.23,631.01,746.934765179885,640.652668763725,111.325529353136,655.266260121141,681.255170506536 +1394236800,633,639.999,600.6,616.8001,742.787228701552,638.954850660542,111.830198042881,652.859617243306,676.624183894119 +1394323200,616.9,654.999,610.25,638.5,738.900568566945,638.922474538148,112.356028172261,650.755559781216,672.242975487639 +1394409600,638.52,648.3,606,626.9801,735.11233854117,638.072420194454,112.869831776086,648.819038898895,668.063350375252 +1394496000,626.9801,641.9999,615.31,634.01,731.787277856044,637.783258443483,113.390141087659,647.097861198028,664.110499439603 +1394582400,634.0001,654,631,636.2296,728.416915411339,637.67266953972,113.912146980732,645.587911307386,660.388450310644 +1394668800,636.10235,648,634.5001,644.18,725.228696724458,638.13585920991,114.441569424782,644.333518848953,656.921657722598 +1394755200,643.1,645,623.5,627.98,722.056496977962,637.412968447462,114.954289118199,643.16017008217,653.640334497 +1394841600,628.89,639.8899,626.3,635.45,719.547018174458,637.273244990458,115.473954999891,642.128214743566,650.56931129055 +1394928000,635.45,638,628.5801,633,717.550129007007,636.969076798931,115.990655950257,641.200323798683,647.693052672454 +1395014400,632,632.5,619.2,623.8,715.551691261323,636.031706186445,116.497655691063,640.286535360965,644.971118702238 +1395100800,623.8,623.8,600,615.5999,713.164427838726,634.577376853295,116.995962213905,639.32136061021,642.369700944809 +1395187200,615.5999,622.2,605.9841,609,710.511297592665,632.756787470087,117.487181846933,638.265200060432,639.863453205008 +1395273600,608.9841,609,584,586.5551,707.567399415892,629.468166350856,117.955501927512,636.949286142026,637.368989732778 +1395360000,588.8294,605.96,555.5,570.9999,704.739660472965,625.306414128044,118.407824034396,635.296580586942,634.835987541496 +1395446400,570.9898,574.24,550.09,563,701.933132581933,620.871463792134,118.851707394598,633.311929870724,632.247078800949 +1395532800,563,571,555,558,699.150541355594,616.396293404523,119.290155550653,631.028124097364,629.597911957394 +1395619200,557.8884,590,550.5,585.6587,696.926746037289,614.208401481963,119.755780561154,628.757051654465,627.008061493264 +1395705600,584.9899,586,568.55,583.9899,694.899448165345,612.057458353977,120.21927454957,626.501661293706,624.475962228345 +1395792000,583.89,593.25,566.51,576.6,693.171249591812,609.53360797616,120.674927664707,624.214785901974,621.978359482444 +1395878400,577.9999,579.4799,465,474,690.313401678014,599.886369748236,121.027689428926,621.034826606905,619.134305224854 +1395964800,475,533.36,470,502.25,687.971530353739,592.936644637718,121.40830395466,617.391839683468,616.090676168994 +1396051200,502.4996,507.99,485.45,492.4398,685.217696180534,585.783311852942,121.77874391314,613.31461034159,612.838888514251 +1396137600,490.01,491.9999,436.2,460.9999,682.208421246324,576.901269096062,122.117424247063,608.643590555915,609.290194485811 +1396224000,460.6,488,436.1,456.9899,679.154760578128,568.36601676138,122.451762833777,603.48977936414,605.468096287706 +1396310400,456.3,513.9,453.4,479.9181,676.249883613785,562.070322752328,122.808659260386,598.181542121183,601.496856589128 +1396396800,477.53,496.2,431.2,437.2203,672.69976442044,553.183538653248,123.122569632908,592.423036766271,597.24291357086 +1396483200,436.5301,463,415.46,447.9999,669.210672425243,545.696601391559,123.446929009552,586.437067833067,592.787074770184 +1396569600,447.1161,458.5899,430.2,447.0211,665.572277726298,538.672911227923,123.769987304453,580.307252478889,588.159636496749 +1396656000,448.001,464.5,444.395,463.99,662.039424019743,533.357005845271,124.109664902501,574.258778565123,583.456742745345 +1396742400,463.97,465.9998,450,458.78,658.493584839828,528.048638773384,124.443801670834,568.284471875121,578.682894080628 +1396828800,458.5,461,445.05,446.58,654.754113749566,522.249727506373,124.765424285641,562.31736231875,573.81608013727 +1396915200,445.222,458.8,445.01,452.3849,651.020482259501,517.276771759298,125.092521435814,556.457939806563,568.904504626531 +1397001600,452.3849,455.1359089,440.0536,442.45,647.107307397769,511.950626430714,125.409372949596,550.651878934965,563.933003869312 +1397088000,442.4499,442.8689,357,364.2,642.154691533968,501.433784794262,125.64778287143,544.26345873577,558.629952602657 +1397174400,364.04989,433.6,340,421,637.833417078721,495.70853409762,125.942664206886,537.94218488633,553.258059345854 +1397260800,421.999,441,413.0741,423.3,633.444164515622,490.554518140948,126.239547464235,531.750680421937,547.852148574746 +1397347200,422.2001,428.2,400,418,628.924776362849,485.39011108745,126.530842761468,525.673642826687,542.415512550223 +1397433600,417.6,478,406.4,460,624.855407430155,483.582851220679,126.863780266986,520.106389807888,537.129897829631 +1397520000,460,526.995,452,519,621.477659863105,486.103832376054,127.255291301776,515.516699207205,532.22522462888 +1397606400,519.11,547,495,531.25,618.358601255842,489.317321935209,127.658641919477,511.876814761629,527.733884603821 +1397692800,531.25,535.7499,486.1,498.1,615.048188011888,489.942470109418,128.028492680853,508.763219363021,523.512511219556 +1397779200,499,503.9999,474.25,480.044,611.473130962167,489.237900219606,128.379946967903,505.953423670829,519.485907312458 +1397865600,480.044,513.9899,473.83,504.999999,608.216468021291,490.359841295161,128.755966572504,503.633589347924,515.74695927795 +1397952000,504.99999,517.995,492.2,500.9501,604.888690145742,491.113652472673,129.127567314767,501.701885617027,512.2700351676 +1398038400,501.3551,515.646,485,495.39,601.516488532221,491.418041501767,129.493245813231,500.058126671415,509.024989945763 +1398124800,499.25,506,488,489.2503,598.235886622134,491.263742365218,129.852429304758,498.612390895982,505.981177260219 +1398211200,491.7,496,482.88,491.78,595.02725020037,491.300489416109,130.213779852327,497.363933532369,503.142534637988 +1398297600,492.08,504.96,480.16,503.7,591.987682027533,492.183082555174,130.586670621329,496.391613210175,500.547350472047 +1398384000,503.7,504.96,441.3,464.33566,588.466955540494,490.200912055657,130.919887512849,495.314578954514,498.036074160578 +1398470400,464.33566,469.19,449.8001,460,584.974987810278,488.051220937327,131.248442971094,494.123227549714,495.594682116333 +1398556800,459.01,465.6,427.55,429.99,581.149213551256,483.918442074943,131.546708242807,492.588698620064,493.113125617063 +1398643200,429.99,450,423.11,441.39,577.481962717976,480.891281370775,131.856057549691,490.883656517893,490.647240300631 +1398729600,441.39,454,434,446.53,573.884334500948,478.445456514855,132.170229805736,489.097508498716,488.224415713548 +1398816000,446.53,453.9899,432,449.0201,570.385562082408,476.350969188211,132.48657452043,487.281602489843,485.859543246015 +1398902400,449.0201,463.53,448.82,459.4102,567.080208491015,475.145130735569,132.812976929767,485.546732685481,483.595861952687 +1398988800,461.11993,461.11993,443,452,563.746616727821,473.497667841629,133.131655071202,483.829468809169,481.405333423584 +1399075200,451.99,451.9999,430,439.7398,560.330223766316,471.094793764874,133.43777438907,482.035548159223,479.243711973392 +1399161600,439.7297,441.4999,429,435.0413,556.933030163655,468.528517779955,133.738897066513,480.153453359948,477.098959829324 +1399248000,438.587999,444.4,425.5999,432.389,553.496904940855,465.956118633561,134.037071029937,478.192160297899,474.96772604778 +1399334400,431.6,435.39,419.4,429.7,550.085813255399,463.375419876251,134.332262581865,476.159420736312,472.846754957693 +1399420800,430,453.6,424.2487,440.43,546.920537984891,461.74217233646,134.637872305968,474.178233458507,470.783702887022 +1399507200,440,450.59,437.69,438.5,543.693001287419,460.087802052864,134.941249984592,472.239900255573,468.774147759941 +1399593600,438.2,456.6,438.2,454,540.681320128083,459.654474278555,135.259800057479,470.48757265129,466.87966207905 +1399680000,453.99,459.65,448.2,456.09,537.732707288988,459.400756156268,135.58011875606,468.921486030649,465.105508703072 +1399766400,456.11,458.4,430,437.97,534.611929979217,457.875321888478,135.882026535445,467.365513723053,463.379729929917 +1399852800,437.45,442,431.8,440,531.578857663604,456.602962277942,136.185659651943,465.848862183887,461.71239563177 +1399939200,440,440.9,434.01,438.81,528.618649045083,455.336464997755,136.487801516632,464.367383286702,460.100339163528 +1400025600,438.81,448,438.47,445,525.847574376858,454.600718773944,136.795821852412,462.981158573117,458.56832334615 +1400112000,444.03,451.4,444,447.58,523.227494776418,454.100986290209,137.106110545627,461.707585575623,457.125070923448 +1400198400,447.58,453,443.4,448.6,520.765063900498,453.709427871433,137.417107818651,460.546517429857,455.772336797593 +1400284800,448.6,450,446.83,449.03,518.454915203305,453.376347714266,137.728223904676,459.491760336001,454.509156831856 +1400371200,449.04,449.11,445.5,447.4,516.291476997799,452.950953223605,138.037401969347,458.519491505342,453.326531539394 +1400457600,447.6,448.5,444.1,447,514.194803246818,452.527366304548,138.3458719866,457.620032103366,452.220567238477 +1400544000,446.89,498.68,446,491.35,512.67970811214,455.290748770994,138.69831331818,457.171642402679,451.356400480039 +1400630400,490.62,501,489.5,494.99,511.280989767988,458.116528588969,139.054036967057,457.129686547733,450.730481631066 +1400716800,495,530,492.25,528.85,510.383947099895,463.151314127257,139.443211476231,457.715173746707,450.452782447224 +1400803200,528.85,544.78,521.11,523.57,509.507855519067,467.451896578622,139.826725849292,458.766146736194,450.474805727061 +1400889600,523.61,529.75,514.25,528,508.760312533428,471.761690929096,140.214280256646,460.229281290831,450.787713576841 +1400976000,528.92,586,528.92,573.99,508.533643279977,479.038268790275,140.647364405362,462.416420682788,451.539263401148 +1401062400,574.55,593.3,566.21,586,508.520990530594,486.651770103048,141.092007012788,465.284108106235,452.734675113595 +1401148800,586.69,597.3,551,576.08,508.461396923201,493.017242482927,141.526301502013,468.601129618821,454.294234772111 +1401235200,573.6,583.5,565,578.77,508.457698847969,499.12109593169,141.962848100466,472.282393574013,456.191249852794 +1401321600,580,583,563,569.5,508.391664403891,504.130643481599,142.389703627521,476.151355939301,458.354858668958 +1401408000,569.85,630,569.85,621,509.034074297113,512.449366348296,142.867550872852,480.586494217412,460.948702483011 +1401494400,620.9,629,610.02,626.21,509.854451112955,520.546811330287,143.350122726441,485.49411852017,463.946080256191 +1401580800,627.01,680,618.01,626.42,510.595903560596,528.082830538352,143.832422442738,490.749842816244,467.302155910096 +1401667200,631.97,679.8,615,667.11,511.820522878849,537.978739338969,144.354865755961,496.598265975966,471.127414913371 +1401753600,667.78,685,652.16,674,513.192521099697,547.660688526733,144.88366647404,502.943301024291,475.393538658192 +1401840000,670.84,672.97,620,642,514.263043213248,554.375730099308,145.379990252247,509.365410870501,479.926091823453 +1401926400,642,672,641,660.9,515.466820246062,561.958093058084,145.894688365594,515.958797609457,484.756677008444 +1402012800,660.99,664.94,646.8,649.39,516.434094984461,568.181467817935,146.39738095187,522.536593042716,489.798247604216 +1402099200,649.35,659.4,637.01,657.21,517.519542028189,574.518489844191,146.907379179536,529.112300199748,495.043356881687 +1402185600,657.21,664.5,652.5,658.7,518.629889015148,580.510502415733,147.418355846552,535.642324705937,500.460518772169 +1402272000,658.7,661.99,639.06,650.3,519.545737970456,585.478096203401,147.92043574372,542.005700262106,505.982927125361 +1402358400,650.3,672,646,657,520.465634084036,590.569002103005,148.428703679613,548.234885343851,511.606080364737 +1402444800,657,666.5,635.11,637.6,520.970605873981,593.916653269269,148.917095087432,554.132115406399,517.226918226356 +1402531200,637.6,647,575.2,597.99,521.038735586864,594.206592767546,149.365452032929,559.362850791667,522.674833124347 +1402617600,596.43,620.97,592.11,605,521.248464906491,594.974863991321,149.820360160218,564.060648631343,527.970426570405 +1402704000,605.2,606.98,522.15,570.27,521.086975050638,593.216379790453,150.240139474873,567.979160526083,532.97550160121 +1402790400,570.26,595.1,540,593.89,521.314915039836,593.264327858343,150.683082021973,571.426875638544,537.785054538435 +1402876800,593.61,612,582.1,591.1,521.538009148096,593.110271703825,151.122796780824,574.433347251305,542.387011427673 +1402963200,592.35,619,591.1,613.4,522.031062736843,594.554487978858,151.584336972943,577.243599680318,546.865855777441 +1403049600,613.4,619.6,601.5,608.1,522.497001769509,595.518653128288,152.040124810525,579.822313380896,551.195127447797 +1403136000,608.6,611.99,592.9,597.3,522.841615329943,595.645448820475,152.484674805434,582.094886790622,555.330411322632 +1403222400,596.06,598.28,582.37,592,523.148226651137,595.385966956575,152.923489408916,584.050138520365,559.252570755349 +1403308800,592,599.91,583.5,595.5,523.533018297442,595.394083791596,153.36536031733,585.757686676317,562.978132286945 +1403395200,596.9,615,595.5,603.4,524.081377244909,595.963942308967,153.814677464299,587.314983628905,566.539575357553 +1403481600,603.39,604.19,580.11,591.57,524.516689991653,595.651182921482,154.251734871104,588.63294056485,569.892731561032 +1403568000,591.02,597.79,580,580.56,524.874834187521,594.576997419017,154.677363470609,589.647422689467,573.001070976828 +1403654400,580.65,584.99,560.53,566.75,525.132977887627,592.596280774063,155.088779137456,590.284085091004,575.821520516342 +1403740800,566.75,584,562.9,581.98,525.654522581521,591.840617354109,155.514989763285,590.736074492165,578.425419760891 +1403827200,581.99,604.9,575.03,604,526.52665152232,592.706118264481,155.962759751391,591.222585141337,580.904501418713 +1403913600,604,607.21,593.89,596.1,527.387747023202,592.947693664921,156.402195278405,591.664996839997,583.230183654131 +1404000000,596.1,607,593.37,601.95,528.385543604928,593.588474908128,156.847032743798,592.117875977755,585.428817951485 +1404086400,601.5,647.74,598.4,640.79,529.913453382723,596.948264144778,157.330204158107,592.911213481918,587.649574630057 +1404172800,642.26,665,636.1,641.34,531.479609740092,600.108053495489,157.813442294455,593.982539257196,589.884263501926 +1404259200,641.35,661.98,640.14,654.61,533.22536347049,603.987484358918,158.309446806663,595.388017779225,592.173372452556 +1404345600,653.5,654,636.24,644,534.92434680003,606.835562236074,158.794363020722,596.964529831809,594.463563771211 +1404432000,644,648.66,629.3,632.11,536.59495629292,608.63458851322,159.266924047965,598.565334970137,596.701197013463 +1404518400,632.58,636.59,628.45,631.88,538.446243243445,610.289189358484,159.738783634278,600.17029895408,598.881422405819 +1404604800,631.59,644.69,630.38,637.38,540.343885438808,612.217504467547,160.215663344612,601.812355977215,601.021657413389 +1404691200,637.76,639.76,616.73,621.45,542.090650948328,612.874670503115,160.676162332815,603.333023124105,603.057063863295 +1404777600,620.31,629.85,617.51,625.36,543.942486843729,613.763372204554,161.140105322471,604.774479148881,605.003633715424 +1404864000,625.11,632.99,620.13,624.47,545.781690469006,614.525466496167,161.602696527736,606.130614091599,606.858208539338 +1404950400,623.24,626.55,608.43,615.84,547.49713487028,614.619034564334,162.056209638165,607.330228592483,608.589017415624 +1405036800,615.84,636.4,615.84,636,549.522122542356,616.140924744792,162.529397817322,608.564982927443,610.276177287727 +1405123200,636.2,642.79,630,636.31,551.517528850961,617.576552975527,163.002423068471,609.820652203696,611.918198831613 +1405209600,636.7,638.21,626.36,629.49,553.412088019364,618.424548268185,163.46816692168,611.023715894895,613.486964908365 +1405296000,629.6,630.25,616.8,619.17,555.151300916495,618.477609280517,163.923142226807,612.083887514265,614.94380865873 +1405382400,619.15,627.99,618.57,620.8,556.926015963478,618.642916298192,164.37929068328,613.031429205856,616.298900075643 +1405468800,620.11,622.5,611.21,616.48,558.663184846329,618.488960618067,164.830670605937,613.840774767231,617.539459817683 +1405555200,616.48,627.5,613,622.51,560.472669833448,618.775176896233,165.287620254646,614.581558916618,618.693312130873 +1405641600,622.52,633.6,616.96,630.8,562.412412155751,619.631099902069,165.752390465431,615.33119929643,619.794777358686 +1405728000,630.8,632.1,625.6,629.3,564.378374524107,620.319329072971,166.21519903845,616.068678043496,620.838485801787 +1405814400,626.77,628.23,620.36,624,566.12353865763,620.581318034984,166.672253990572,616.743959061559,621.805392545372 +1405900800,624,624.95,616.8,620.01,567.75876512549,620.540651802677,167.124868977707,617.327740430439,622.683308909059 +1405987200,620,623.17,617.5,618.54,569.302256504399,620.39824605668,167.575564415091,617.818491489674,623.470934831524 +1406073600,618.56,620.9,616.21,619,570.718972683938,620.29871935617,168.026269142203,618.232441562323,624.174709976785 +1406160000,619,619.99,591.4,603.98,571.850984925838,619.137158208685,168.461527829618,618.449785617465,624.742386263349 +1406246400,602.43,608,592.5,600.47,572.956773972894,617.80843594587,168.892847548293,618.473161828687,625.170136927293 +1406332800,600.6,600.6,589,593.82,574.049324584943,616.100946860758,169.317097237036,618.279272897072,625.443131442028 +1406419200,593.9,599.78,590.1,591.55,575.130084560001,614.353418431289,169.738656971548,617.888694545001,625.564924757626 +1406505600,591.5,592,572,583.5,576.077278268408,612.157282120915,170.15175865258,617.270087922747,625.51751362955 +1406592000,584.86,590,577.11,583,577.040122439018,610.081876242627,170.563948687695,616.464909934121,625.313575426024 +1406678400,583.04,583.98,561.55,565.99,577.812334149673,606.943430801821,170.958744309067,615.36615488791,624.902954288649 +1406764800,566,590,561.47,580,578.779771428286,605.025606141914,171.367133428023,614.156488134344,624.357679615906 +1406851200,579.49,605.72,579.1,594.6,579.940496540563,604.283514880393,171.789691532096,612.992245924401,623.746393061421 +1406937600,594.6,596.6,585,587.6,581.033985014171,603.095987705889,172.204838911891,611.814925411803,623.050581641758 +1407024000,587.61,589,578.13,585.71,582.182090081324,601.858458743656,172.617684819415,610.620684570878,622.272922421531 +1407110400,587,595,581.22,586.6,583.355443915539,600.772366602458,173.031007120302,609.430541269026,621.426671997596 +1407196800,587.21,588.77,579,582.94,584.507039178741,599.503064535241,173.440262593009,608.222417690181,620.507036766968 +1407283200,582.94,586.3,574.01,581.36,585.595078859355,598.211647090006,173.847531981723,606.996287131208,619.517762489576 +1407369600,582.87,592.7,576.5,586.8,586.723520387054,597.399369753822,174.259826077339,605.812969405322,618.489048929299 +1407456000,586.82,598.88,586.81,590.6,587.878119394456,596.915392821499,174.675502477821,604.70795290551,617.442483968946 +1407542400,590.61,591,584.19,589.98,589.003928836732,596.421733811367,175.090144853087,603.671546924511,616.381196239526 +1407628800,588.61,594.49,583.31,588.61,590.120461987611,595.865697133994,175.503005431243,602.688702329689,615.305271747721 +1407715200,587.97,588.7,567.02,572.51,591.039044752522,594.203246192154,175.899379475366,601.619238211727,614.159219809936 +1407801600,573.32,578.8,562.51,569.54,591.903922451509,592.447724332724,176.292392512473,600.462083385717,612.942115211688 +1407888000,569.52,571.4,525,547.3,592.464268107682,589.234123967543,176.662808620481,599.050530409377,611.580610743571 +1407974400,546.25,546.5,451,510.98,592.535880453649,583.664020821132,176.996592808114,597.127911840283,609.954970712375 +1408060800,509.99,519.5,478,496.39,592.37585081671,577.451884344116,177.315477004632,594.675338172645,608.038695938661 +1408147200,496.39,523.11,484.5,519.01,592.46713105046,573.292009983982,177.65662676216,592.003521509795,605.949153327982 +1408233600,519.54,522.43,484.82,497.4,592.23932345708,567.89004134429,177.975860366771,588.987619936879,603.627360065514 +1408320000,497.57,512.3,443,467.04,591.613787025596,560.711568132571,178.264463649848,585.452260197581,600.987182869907 +1408406400,467.95,492.61,462.9,487,591.236147708055,555.464802636194,178.572706967426,581.692658575827,598.14103674678 +1408492800,487.24,521.89,464,511,591.116972404288,552.299812415728,178.904604269788,577.988549989694,595.207812686919 +1408579200,510.61,534.89,510.6,517.47,591.034884688195,549.820637672091,179.242629888836,574.418047579482,592.230423658147 +1408665600,518.24,525,503.7,514.13,590.854704407908,547.28018966609,179.576983346162,570.95945433503,589.211255429791 +1408752000,514.42,515.58,491.52,499.5,590.439367766948,543.879211272854,179.896396307782,567.496353725372,586.110014456847 +1408838400,498.85,517.7,495.71,510.82,590.112007644322,541.526067343914,180.226792318143,564.15734109684,582.988137597202 +1408924800,511.41,511.41,497.55,501.76,589.610169095587,538.695531576564,180.547812903655,560.870957989093,579.82495536644 +1409011200,501.49,517.47,497.75,513.34,589.181853896621,536.890733068155,180.880074518328,557.756388791524,576.679654150592 +1409097600,512.3,522.8,508.1,508.35,588.59500587456,534.85921295134,181.207022356697,554.766956642125,573.543747525866 +1409184000,508.3,514.77,503.86,505.87,587.835181356265,532.795770181995,181.53116772236,551.884877464291,570.418913613805 +1409270400,505.87,513.99,498.8,508.52,587.031933226883,531.067828739211,181.857635234535,549.13893997429,567.326018373664 +1409356800,508.34,508.37,495.5,499.15,586.008930553165,528.795928048576,182.174421738329,546.447741619954,564.238642120836 +1409443200,499.08,500.27,471.65,477.81,584.67235559318,525.166766237706,182.469585983155,543.64036248161,561.087388533115 +1409529600,477.84,484.9,471.01,472.6,583.193364620923,521.4250808776,182.759253840648,540.716632469836,557.869914320298 +1409616000,472.97,484,468.82,475.45,581.640243963398,518.152589542076,183.051477948333,537.747094128958,554.614762338234 +1409702400,475.46,479.9,472.99,474.14,580.036821705064,515.019787702882,183.342102386345,534.754215998318,551.332481553568 +1409788800,474.14,497.24,473.1,489.68,578.618358572063,513.216109838291,183.647951887755,531.902348465786,548.096456831948 +1409875200,489.69,491.42,478.1,481.9,577.06355802851,510.987039303735,183.945728430979,529.123886559321,544.88559595167 +1409961600,480.62,486.9,480.1,482.61,575.471964291629,508.967170855944,184.243916540448,526.43597163029,541.712565658048 +1410048000,483.08,487.1,479.88,479.88,573.73800553532,506.896755474742,184.539081289666,523.822185024207,538.575822443645 +1410134400,479.88,480.9,464.22,471.1,571.873366586742,504.348754037988,184.825185342719,521.216077737178,535.450970493418 +1410220800,471.16,479.7,463,473.06,570.01174425314,502.121630680419,185.112960623018,518.655760989964,532.356200602708 +1410307200,473.09,489.99,472,478.12,568.163554851779,500.413202398384,185.405500519653,516.198991386189,529.319749788357 +1410393600,478.1,480.6,472.2,477.38,566.336292637899,498.773706527158,185.697009522575,513.842250070017,526.345331566152 +1410480000,477.04,477.98,467,474.37,564.53645370699,497.036658616848,185.985222280108,511.562153819994,523.427537297898 +1410566400,474.34,483.93,472.86,478.69,562.785617935902,495.730749410961,186.277460396982,509.402168892047,520.588884537624 +1410652800,478.69,481.56,475.33,476.5,561.047171580643,494.361910909283,186.567220233186,507.340738934448,517.825093838632 +1410739200,477.12,480.3,474.77,474.77,559.303224324513,492.967365049371,186.854963529668,505.363254341941,515.13370400064 +1410825600,474.77,475.5,462.11,466.5,557.49226437274,491.083426595215,187.134162726511,503.400433606946,512.487492787259 +1410912000,466.65,467.75,451.6,458.3,555.630603290713,488.749912930122,187.404896242591,501.395757858582,509.861646243433 +1410998400,457.8,458.3,408.8,424.99,553.396269135262,484.211503021218,187.642102563104,499.086021816654,507.138560829087 +1411084800,425,431.92,381.5,393.3,550.851369760594,477.740451741755,187.847432579019,496.271330655889,504.217116930839 +1411171200,392.99,426.3,385.5,408.4,548.578212434149,472.804820891418,188.067633518262,493.196085670501,501.182233893668 +1411257600,408.4,414.14,392.23,399.21,546.198399634684,467.566365425775,188.278439259302,489.853625027116,498.02031332504 +1411344000,400.03,411.2,397.67,404.99,543.931559236342,463.112200044106,188.494805315603,486.370189955561,494.775923712645 +1411430400,404.23,447.11,392.15,438.65,542.041500561793,461.370988584243,188.744561686478,483.091872118083,491.595438343827 +1411516800,438.01,440.28,422,424.51,539.970152305338,458.747235380156,188.97995124265,479.888405797652,488.432037581616 +1411603200,424.51,426.97,402.33,409.86,537.692618251078,455.267457832288,189.200479141125,476.647566734316,485.240892170378 +1411689600,409.67,415,396.2,404.01,535.369505149595,451.618968619539,189.414946189977,473.35342593744,482.014320488945 +1411776000,404.03,409.04,393.2,399.8,533.020905085929,447.930511251194,189.624995825733,470.007516940968,478.751620923741 +1411862400,399.8,402.9,365,376.7,530.392752397782,442.8603465784,189.811772575194,466.448249642527,475.380953956517 +1411948800,375.93,386.56,368,373.64,527.723626178086,437.93326477461,189.995307724259,462.717770535927,471.912672595343 +1412035200,373.64,398.7,370,387,525.224024065449,434.307851518489,190.191998330865,458.994179950443,468.418624780322 +1412121600,386.93,391.18,377,383.63,522.709900491396,430.700618495044,190.385127933259,455.279313186552,464.901469723168 +1412208000,382.72,385.52,367.8,371.39,520.054866445525,426.478907919997,190.565844228258,451.497925817605,461.33023216657 +1412294400,371.39,376.86,355,359.74,517.246655716403,421.728454114554,190.734748668738,447.593790422772,457.679002737456 +1412380800,358.93,367.05,321.5,328.25,513.990294630283,415.074688089379,190.872044678743,443.350198605204,453.849455601475 +1412467200,327.36,346.69,275,319.9,510.585676771069,408.300184680393,191.000866924082,438.791840360085,449.839681568653 +1412553600,319.9,346.89,301,327.56,507.273012002622,402.553124539299,191.137208340177,434.080151368594,445.709072656718 +1412640000,327.59,340,317,335.97,504.030030768903,397.813759344335,191.281810224117,429.355752295915,441.51525964383 +1412726400,335.97,354.87,323.85,352.9,500.94404882936,394.616812531094,191.44317074512,424.808093536762,437.343385906183 +1412812800,353,387.13,347.14,364,498.013759814627,392.437517751904,191.615452466068,420.541107386749,433.24925699335 +1412899200,363.98,379.74,351.15,359.1,495.035238242446,390.06456405811,191.782669992062,416.499555680638,429.223219516666 +1412985600,359.1,368.5,351,360.66,492.127426509735,387.971556731789,191.951278080009,412.69189073964,425.280578515422 +1413072000,361.01,382.46,351.86,378.05,489.478927184209,387.265343543689,192.137080103708,409.259890643234,421.494801363143 +1413158400,378.05,399.89,368.24,391.2,487.015000858746,387.545411113246,192.33582565649,406.280293620301,417.916505126239 +1413244800,391.5,414.42,391.5,399,484.66843595997,388.360745032585,192.542160344998,403.766071182461,414.57101657439 +1413331200,399,402.68,384.7,394.2,482.303270243207,388.776381306019,192.743496680445,401.614948026311,411.433048774128 +1413417600,394.2,400,370.21,381.6,479.789637015653,388.265568813772,192.932052088797,399.67221531323,408.44922612784 +1413504000,381.55,386.8,372,382.48,477.305530696692,387.85375390333,193.121297839367,397.925325243822,405.621033455794 +1413590400,381.24,396,376.4,390.9,474.945943269902,388.070584711823,193.31876122185,396.427443236617,402.977714804407 +1413676800,390.92,394.5,383.5,388.02,472.539770566837,388.066984108453,193.513152047367,395.12246973659,400.502657632763 +1413763200,388.08,388.25,370.2,380.55,470.071701504459,387.531927619272,193.699890701439,393.92290514458,398.162693325447 +1413849600,380.86,394,376.66,384,467.688357505048,387.280526157629,193.889887414221,392.850253763495,395.968200264573 +1413936000,384.01,386.7,377.25,378.8,465.276745986133,386.676885058108,194.074502723592,391.84633279489,393.895460229154 +1414022400,378.79,383.6,355,357.87,462.620211785713,384.626420329029,194.238037080802,390.726699794345,391.8629109137 +1414108800,357.87,363.1,351.5,356.58,459.970389342733,382.630085232554,194.400120221032,389.510398825551,389.869939210961 +1414195200,356.58,358.88,337.65,344.62,457.180642974663,379.924539701982,194.550100604426,388.121693490496,387.875541745597 +1414281600,344.65,359.9,340.2,353.01,454.514601810069,378.008771501186,194.708307870328,386.675687144376,385.919054166673 +1414368000,353.07,359.47,346.44,349.01,451.837972453568,375.944648357365,194.862363558417,385.160461175059,383.989536335101 +1414454400,349.51,355.44,347.44,352.7,449.25238269586,374.290101831405,195.019949553443,383.633286735261,382.105916060038 +1414540800,352.71,353.78,332,333.58,446.468638050646,371.392369995625,195.158288696835,381.944196896626,380.199201488993 +1414627200,333.5,351,331,345.08,443.868917660374,369.519464039091,195.307971387125,380.23591712801,378.321983745711 +1414713600,345.08,347.99,332.14,336.82,441.209584202536,367.191926801493,195.449257802328,378.45521203012,376.447651693278 +1414800000,336.72,339,315.54,325.9,438.473949550805,364.252780853175,195.579500566187,376.535916420565,374.541800975072 +1414886400,325.9,329.55,317.7,323.82,435.751731040143,361.37478863462,195.707536611083,374.50121446575,372.606453803346 +1414972800,323.8,334.14,323.8,325,433.085489595979,358.785642985149,195.836622942783,372.399359089003,370.655882523274 +1415059200,324.83,331.28,321,329.66,430.51184118169,356.712489170277,195.970232964491,370.30071175153,368.716344941105 +1415145600,329.75,342.54,329.75,338.62,428.088337380419,355.424671663105,196.112655304214,368.300302833147,366.828062665199 +1415232000,338.62,354.32,336.32,350.48,425.839254030171,355.072711538933,196.266776540199,366.500533440868,365.038595160434 +1415318400,350.49,354,338.1,341.84,423.514692700987,354.130811426306,196.412117675464,364.806696224484,363.313671230105 +1415404800,342.04,348.3,341,345,421.217716593801,353.480883232412,196.560468663306,363.241968591459,361.666249964355 +1415491200,345.01,364.12,343.41,362.61,419.148151617974,354.130690801048,196.726253460957,361.949218832602,360.162463236011 +1415577600,362.6,374.26,356.33,366.07,417.1633263848,354.980526954893,196.895327221825,360.921308999434,358.808843297858 +1415664000,366.17,371.45,360.74,367.65,415.229708821282,355.88233593433,197.065809659484,360.133825173541,357.603700518579 +1415750400,367.66,436,367.59,433.56,414.151811113574,361.411406852017,197.30192680583,360.120720335074,356.787856526989 +1415836800,432,475,381.56,417.65,412.909124629025,365.414451659895,197.521923576873,360.607265110642,356.271211699936 +1415923200,417.65,425.67,382.22,399.99,411.475462630529,367.875527969151,197.724068857323,361.347994606889,355.963588706175 +1416009600,400,410.1,368,375.34,409.759611957694,368.406846665691,197.901401614404,362.078343053388,355.755291925082 +1416096000,375.37,399.9,372.5,391.65,408.288519468658,370.061286776396,198.094841318329,362.934833237037,355.700253990312 +1416182400,391.8,413.48,373,387.5,406.821049944135,371.302568723868,198.283944507319,363.851819193629,355.769980455459 +1416268800,387.5,393,366.46,372.85,405.237418426417,371.41271437988,198.458232251184,364.684001810372,355.898277473204 +1416355200,372.89,386,368.55,375.26,403.771712369542,371.686562921672,198.634752142897,365.46005735575,356.088781485781 +1416441600,376.73,379.5,352.01,356.77,402.148975044518,370.624806814121,198.792635274855,366.023387539287,356.26566052165 +1416528000,356.59,357.39,340,350.46,400.54787345669,369.189482409637,198.944060835462,366.35229239701,356.405576741782 +1416614400,350.11,365.3,349.1,352.81,399.067342488048,368.023596167727,199.097681465309,366.505809621234,356.520018781948 +1416700800,352.44,372.28,351.5,368.25,397.811934476709,368.039711519028,199.266564103367,366.647184864964,356.669026209494 +1416787200,368,391.92,363.62,376.05,396.64912565736,368.609881253342,199.443065692455,366.844777881327,356.878552444133 +1416873600,376.06,396.87,375.08,377.02,395.556713948139,369.208510776201,199.620359514874,367.095297986951,357.146323687129 +1416960000,377,379.26,365.22,369.99,394.40750858847,369.264136925516,199.7904575341,367.326422459875,357.439829253147 +1417046400,370,375,368.15,370,393.210074517552,369.316515420331,199.960395710551,367.539678765262,357.755810504759 +1417132800,369.99,387.5,355.51,377.43,392.076447687067,369.894030619458,200.13758237407,367.800622014154,358.119221013681 +1417219200,377.79,390,371,376.28,390.942590384164,370.34858184738,200.313443966865,368.088599612409,358.52031307886 +1417305600,376.07,385.59,373.7,379.89,389.887111785672,371.027736894789,200.492734223003,368.427536152295,358.968000601067 +1417392000,379.67,386.5,377.3,382,388.894586547398,371.808739021539,200.673952110743,368.823706522594,359.464599201521 +1417478400,382,387.99,379.08,384.5,387.936417131681,372.712098859001,200.857485083747,369.285149693626,360.013515665939 +1417564800,384.67,386.3,372.64,376,386.902167020371,372.946130595119,201.032348367984,369.722822778747,360.576130439557 +1417651200,376.24,380.33,367.8,370.99,385.81377811663,372.806893854227,201.202035055193,370.09384669083,361.130235063596 +1417737600,370.74,382.51,366.1,378.18,384.853409869017,373.189349805826,201.37873086319,370.468987276988,361.701612126309 +1417824000,378.3,381.19,370.11,376.69,383.908376495133,373.438524950501,201.553762632601,370.831390945437,362.281008709086 +1417910400,376.59,379.8,373.01,376.02,382.989651257891,373.622273506699,201.727950717482,371.174391205423,362.863024883464 +1417996800,376.29,378.34,362.11,362.11,381.951358928308,372.802833614834,201.888077068776,371.378214900854,363.39271196488 +1418083200,362.1,363.91,343,351.99,380.841745194727,371.321382872994,202.037939683382,371.378292527451,363.834302959002 +1418169600,352,352.5,345,345.08,379.664311213584,369.45352975681,202.180753690951,371.151014334936,364.167526476009 +1418256000,345.12,362.99,335.7,348.53,378.536623693029,367.964199699511,202.326869611848,370.768481806441,364.413366204001 +1418342400,348.06,354.9,346.11,352.29,377.46649620404,366.848515252006,202.476593655188,370.294034152306,364.592522343538 +1418428800,352.49,352.49,344.11,346.56,376.324322175595,365.404385321064,202.620447348562,369.698535883627,364.688349966658 +1418515200,346.56,358,345.04,353.65,375.30810860678,364.56771198883,202.771236113963,369.069889604207,364.734345988555 +1418601600,353.7,354.6,345.45,346.01,374.221015373347,363.246780072423,202.914246511496,368.353361400445,364.705722804153 +1418688000,346.34,346.93,325.1,325.1,372.903864992118,360.531504647514,203.036237463562,367.389966141342,364.529970860989 +1418774400,325.13,335,314.21,318.86,371.543020733955,357.56534047131,203.151876567634,366.17786079534,364.196699346115 +1418860800,319.5,325,302.32,311.77,370.110522374717,354.30564299957,203.260321520591,364.710331119415,363.693785914964 +1418947200,311.76,319.97,305.6,318.47,368.781866372595,351.754873561421,203.375347519644,363.10327249333,363.062854475553 +1419033600,318.47,330,315.3,329.66,367.626572393404,350.182167632273,203.501430835804,361.492052045612,362.359428839947 +1419120000,329.69,329.73,316.85,320.79,366.396662006643,348.090042679519,203.618532411154,359.814657402387,361.558833472129 +1419206400,321.19,336.85,319.64,332.63,365.348431820778,346.989601859192,203.747338195047,358.199676318742,360.717064617315 +1419292800,332.41,337.79,330,335.7,364.388511798492,346.186011662927,203.879080483994,356.676542748102,359.852394964822 +1419379200,335.69,335.93,320,322.61,363.3213770935,344.507878804422,203.997622110149,355.128978632846,358.920605328092 +1419465600,322.62,323.4,315.5,318.5,362.274411841241,342.656646432054,204.111941936265,353.539164133766,357.915400707772 +1419552000,318.49,332.4,316.17,327.2,361.414172872101,341.556447355519,204.234833754357,352.003543476687,356.879672754154 +1419638400,327.79,330.6,310,315.89,360.508474352406,339.729517962872,204.346310908154,350.428010553053,355.777218129159 +1419724800,315.9,319.79,310.08,316.94,359.670592671058,338.107367470678,204.458725088505,348.842339251936,354.621838492474 +1419811200,316.96,320.5,312.51,312.64,358.763425678791,336.294608519621,204.566733889412,347.224862522273,353.406158773954 +1419897600,312.86,315.93,307.1,310.8,357.850034275335,334.479910559543,204.672797787239,345.579296111737,352.132948329496 +1419984000,310.81,322.79,309.39,322.3,357.071162961767,333.612948478939,204.790237455753,344.024260668407,350.855333921716 +1420070400,322.31,322.9,313.81,314.96,356.184816093383,332.285237660076,204.900231574036,342.493694642962,349.550796709747 +1420156800,314.54,316.74,313.28,315.81,355.376632178524,331.112535590517,205.010964518405,341.003838763298,348.229761925876 +1420243200,315.8,315.99,277.5,278.22,354.155587666508,327.347662073607,205.084056836317,339.235398162565,346.756670382192 +1420329600,278.04,288.74,255.03,264.19,352.801032839202,322.852120185207,205.143068546548,337.131770495021,345.097032141282 +1420416000,264.04,280.44,263.75,274.84,351.623190512524,319.434633052894,205.212654359799,334.862639483402,343.313192865226 +1420502400,274.85,291.94,272.1,288.43,350.669978505368,317.227733334831,205.295739031565,332.594448600708,341.473768616865 +1420588800,288.36,303.33,284,297.99,349.848965026428,315.858397719719,205.38828550956,330.429282857187,339.626532917066 +1420675200,297.89,298.47,282.01,283.21,348.844679726856,313.53449536616,205.465983152461,328.239822880329,337.723312148839 +1420761600,283.99,297.32,280.4,290.51,347.97019216048,311.895619258662,205.550891583163,326.112410238372,335.803620364799 +1420848000,290.58,292.1,275,276.03,346.963453618386,309.342716120119,205.621258326347,323.929258370784,333.821426720082 +1420934400,276.01,282.86,265.83,267.27,345.890949503035,306.347993841509,205.682808781091,321.643395191473,331.756450469545 +1421020800,267.54,274.44,266.24,268.75,344.882042589914,303.671780842406,205.745775423939,319.305587322364,329.6291169717 +1421107200,268.6,269.66,219,228.07,343.348672984109,298.290470618817,205.76806405688,316.593586544404,327.299142318119 +1421193600,228.49,228.49,166.45,182,341.195285549974,290.012952662573,205.744333886379,313.198921933203,324.618581191442 +1421280000,181,230.74,179.05,209.81,339.348551797725,284.304132522148,205.748393070579,309.512392669981,321.732382915945 +1421366400,209.81,223.1,197.72,208.5,337.441012875681,278.908418971668,205.751140290606,305.606293623191,318.663983795984 +1421452800,208.52,214,192.2,201.09,335.418331077199,273.369329165455,205.746486581597,301.489266269241,315.412480197968 +1421539200,201.08,222,194,211.03,333.518347994562,268.932035947864,205.751761671481,297.320229630735,312.043255285309 +1421625600,210.98,219.95,207,216.2,331.663311080286,265.178586743428,205.762193252125,293.18913904639,308.598564749039 +1421712000,216.14,219.25,203.7,212.11,329.722744392198,261.401181962592,205.76853093853,289.089621537787,305.082388121974 +1421798400,212.1,230,211,228.08,327.97071676753,259.029391044979,205.790806836293,285.189574776682,301.574388771221 +1421884800,228.05,242,225.29,234.7,326.312483641047,257.29763288657,205.81966993937,281.544573834154,298.1121176233 +1421971200,234.7,236.98,225.13,233.12,324.66796385869,255.576676824624,205.846926744364,278.127248070695,294.698794663233 +1422057600,233.37,249.77,229.03,248.66,323.252645597126,255.084350013074,205.8896715605,275.061109776222,291.401831224002 +1422144000,248.94,259.39,245,254.73,321.922953474142,255.059127494149,205.938434022534,272.362869668061,288.24670623661 +1422230400,254.72,315,254.65,276.01,320.868189446696,256.55040379945,206.008393873026,270.174581692572,285.313633950345 +1422316800,276.01,280.37,250,265.09,319.706909905168,257.158249485455,206.067381285022,268.330343058268,282.553573612409 +1422403200,265.55,269.97,226.35,234.5,318.196173060558,255.54544264088,206.095768573456,266.520650745518,279.846721289779 +1422489600,234.49,239.33,220,233.01,316.69090082346,253.941377147644,206.122639895374,264.742143021942,277.193148192558 +1422576000,233.7,243.89,224.22,226.44,315.146090880861,251.983838047925,206.1429248634,262.947869330501,274.573534760634 +1422662400,226.45,234.03,213.1,215.8,313.519677693486,249.408284199241,206.152566542208,261.064156071361,271.954706350417 +1422748800,215.91,233.32,211.02,226.92,312.049425979549,247.807575428576,206.173300866032,259.21927552622,269.388477921723 +1422835200,226.86,247.5,222.5,238.99,310.752483484092,247.179943271339,206.206065245321,257.526632891625,266.925647745556 +1422921600,238.86,248.42,222.66,227.96,309.312238175361,245.811873947173,206.227784497657,255.878515857686,264.525072409837 +1423008000,227.81,233,220.23,227.78,307.885255322703,244.528371011909,206.249302352343,254.279721110829,262.189844267888 +1423094400,227.78,228.8,210.12,216.47,306.326672000578,242.531185269705,206.259506755076,252.63755243944,259.880515947665 +1423180800,216.43,225.88,215,222.65,304.87574194553,241.116048954703,206.275871116867,251.027321112765,257.626943444766 +1423267200,222.66,239.78,222.66,228.8,303.490243628327,240.239396587316,206.298359335407,249.510449563574,255.456120434494 +1423353600,228.8,232.9,221.1,223.85,302.060939897692,239.072804657456,206.315882993394,248.040705693012,253.350516248572 +1423440000,224.13,225.98,215.33,220.48,300.598786493332,237.749374856286,206.33002452847,246.593306084422,251.299810992281 +1423526400,220.48,223.88,214,220.87,299.12828898496,236.547906432265,206.344541322778,245.180172740416,249.308553722252 +1423612800,220.75,224.4,218.1,219.8,297.621101124158,235.355795887997,206.357975329344,243.798196227134,247.37516884946 +1423699200,219.8,223.2,217.8,222.55,296.117728760589,234.444283492847,206.37414153898,242.477572029158,245.512421606996 +1423785600,222.39,242.5,221.46,236.13,294.750560081595,234.564272246722,206.403849957511,241.336233907025,243.77262227263 +1423872000,235.8,261.3,235.51,257,293.616989460737,236.161240066621,206.454365441832,240.532675159253,242.23069830253 +1423958400,257.01,268.54,228.2,235.88,292.21324888843,236.141221489956,206.483744162938,239.831373820992,240.795893144952 +1424044800,235.34,243.65,228.62,233.5,290.747159066825,235.953220201517,206.510717346609,239.199686758292,239.455529785569 +1424131200,233.5,246.28,231.5,244,289.367079240787,236.525987375968,206.548146859892,238.72150130395,238.24629095049 +1424217600,243.82,244.99,231.01,236.27,287.867334665862,236.507766277628,206.577821327317,238.306910070079,237.132403642097 +1424304000,236.26,243.42,234.97,240,286.382638653496,236.756342340572,206.611190220826,237.980466134796,236.124052563234 +1424390400,240.2,248.98,238.95,244.5,284.884946472648,237.307533379544,206.649018624266,237.768263525401,235.233065673875 +1424476800,244.51,247.73,243.28,245.54,283.476989657571,237.893517681717,206.687847601535,237.660871142265,234.456756131236 +1424563200,245.53,247.78,232.1,236.5,282.023463531837,237.794327545403,206.717612224254,237.562485013431,233.754167551319 +1424649600,236.5,241,232.61,239.4,280.658073535249,237.908618789596,206.750242506319,237.497428530451,233.132636262875 +1424736000,239.33,240.99,236.7,239.73,279.294265581067,238.038264113018,206.783169684003,237.463207193208,232.588863686326 +1424822400,239.95,240.83,235.53,237.99,277.946075159194,238.034828689117,206.814326761097,237.439607614262,232.111721156226 +1424908800,237.98,238.33,233.62,236.93,276.627826097821,237.956187341601,206.844394420751,237.415787036668,231.693342471568 +1424995200,236.93,262.8,236.64,255.05,275.555909765701,239.172919378781,206.892523171867,237.54863336322,231.398737449874 +1425081600,255.06,257.4,251.25,255.7,274.529634044426,240.349311613488,206.941252834665,237.814838724773,231.220949430839 +1425168000,255.7,266.91,245.65,262.4,273.591047929781,241.918872456226,206.996623163643,238.246375816344,231.17601861735 +1425254400,262.47,279.61,258.98,277.41,272.824598859858,244.445119396045,207.066924280044,238.939956857449,231.309500613132 +1425340800,277.3,294,267.04,283.75,272.111760064201,247.242828040924,207.143485099512,239.897930821975,231.629663581462 +1425427200,283.8,285.99,267,273.33,271.266162361889,249.099704474305,207.209566092886,240.975058638346,232.08007722657 +1425513600,272.92,284.99,262,277.69,270.489117319637,251.134752430762,207.279934159448,242.17859279176,232.664430794182 +1425600000,277.69,279.75,268.8,273.36,269.678187726127,252.716738339473,207.345908873474,243.438284240764,233.352778159584 +1425686400,273.27,280.76,270.55,276.97,268.917935516417,254.443077633004,207.415421962527,244.764493583168,234.147310321129 +1425772800,276.98,278.68,271.61,275.59,268.140559714814,255.948308703793,207.483487849458,246.122032072241,235.030787352732 +1425859200,275.58,295,275.01,291,267.571129168085,258.443276714131,207.566871210772,247.626824710819,236.050503051559 +1425945600,291,303.96,289.03,292.62,267.032408618381,260.875964785466,207.651788738888,249.253757876908,237.197140677807 +1426032000,292.64,298.75,291,296.7,266.562353875182,263.425907985244,207.740694980093,251.002381033369,238.470986003313 +1426118400,296.6,298.8,291.04,295.5,266.101145223876,265.708931445117,207.828314369968,252.825627290456,239.851881355289 +1426204800,295.52,295.91,282.13,283.19,265.523342313028,266.953228231323,207.903555906046,254.588086941214,241.279024194348 +1426291200,283.18,287.6,281.36,282.6,264.964408627725,268.066960367613,207.978133261186,256.280201612918,242.74086506261 +1426377600,282.54,287.8,281.59,286.9,264.47432764206,269.407490016329,208.056929302357,257.93698864485,244.245171480397 +1426464000,286.71,295.2,286.45,291.19,264.07233215323,270.957962007391,208.13992983354,259.587475420207,245.798852416084 +1426550400,292.23,292.9,281.56,285.25,263.635342471348,271.975264633184,208.216916966695,261.167161205315,247.369411580201 +1426636800,285.11,285.25,248,257.21,262.901174239794,270.924277888702,208.265831939786,262.432545032948,248.843596060523 +1426723200,257.2,269.5,246.98,261.98,262.266013920507,270.287627091475,208.319460471051,263.46965214371,250.242045969617 +1426809600,261.7,267,259.36,262.19,261.659025514517,269.711240623212,208.373245124481,264.311808038502,251.566712655263 +1426896000,262.18,263.01,255.1,260.47,261.041580326856,269.053452114923,208.425258821212,264.971430234384,252.812371953404 +1426982400,260.6,270.8,259.74,268.82,260.547061301238,269.03683506915,208.485557274721,265.547365052754,254.012569405502 +1427068800,268.6,271.5,262,267.23,260.064363053041,268.908225135341,208.544208060857,266.03572710506,255.160633792999 +1427155200,267.31,268.4,241.39,246,259.338195819187,267.277625105138,208.58160413682,266.264294154889,256.176491781296 +1427241600,246,250.95,235.7,246.29,258.666141731328,265.783732761747,208.619252413979,266.279661397766,257.068643068049 +1427328000,246.29,255,244.5,249.33,258.086999187509,264.612561403872,208.659898256195,266.145778367395,257.855716601025 +1427414400,249.21,250.45,245.23,246.5,257.493419577469,263.323315161628,208.697678029255,265.865801309859,258.532987438167 +1427500800,246.5,255.96,246.49,252.95,256.992551154434,262.584945955112,208.741859799505,265.523813026031,259.131590925134 +1427587200,252.9,253.01,238.89,242.74,256.354808357135,261.172389142761,208.775803736282,265.045502242419,259.617399343422 +1427673600,242.9,250.98,236.24,247.93,255.779549871965,260.229800181434,208.814895508794,264.504041340098,260.017767362371 +1427760000,247.93,248.8,242,244.51,255.18486677577,259.110869906426,208.850533704383,263.885743196437,260.325532692099 +1427846400,244.56,248.71,239.21,246.93,254.620593125561,258.243839539822,208.888552460375,263.230497099929,260.556545197995 +1427932800,247.07,254.94,243,253.23,254.160854434968,257.886956068634,208.9328232141,262.604980608629,260.740248942227 +1428019200,253.33,256.49,250.31,254.24,253.757277153948,257.627366919298,208.978058157403,262.018061005354,260.883786642854 +1428105600,254.24,255.7,250.32,253.6,253.368152511822,257.340700249076,209.022608958237,261.462435828456,260.987614525294 +1428192000,253.7,261.25,251.55,260.5,253.078511315114,257.565578179987,209.07400427859,260.99700826349,261.080773154917 +1428278400,260.75,262.45,253.4,255.73,252.768944679104,257.434922320878,209.1205858904,260.568573481843,261.145805012589 +1428364800,255.62,257.9,253.01,253.7,252.454809731138,257.169071762257,209.165094231303,260.156727187142,261.177190121089 +1428451200,253.7,254.99,242.72,244.92,252.058881678674,256.297186809691,209.200792132828,259.686187520966,261.144514983498 +1428537600,244.94,246.79,236.5,243.58,251.66897689853,255.391981579976,209.235116529734,259.159845112344,261.048289441996 +1428624000,243.56,243.74,230.75,236.12,251.203143945824,254.02020818589,209.261958550486,258.52765461023,260.866109121536 +1428710400,236.12,240.58,233.72,236.86,250.799003931074,252.798750136613,209.289512592225,257.820246125831,260.608764672136 +1428796800,236.83,238.7,232.38,236.38,250.440224216081,251.630068830641,209.316559889119,257.052922410903,260.281806053102 +1428883200,236.21,237.7,220.14,224.9,250.022472003013,249.727431206596,209.332118484465,256.143698641457,259.849035111523 +1428969600,224.9,225.75,216.37,220.16,249.566593822828,247.622831049504,209.34292910303,255.084618958996,259.303183138808 +1429056000,220.1,224.75,219.01,223.98,249.142821401318,245.939942008749,209.357542837963,253.944432645107,258.670351451874 +1429142400,223.8,230,223.01,228.14,248.766729970861,244.672947913588,209.37629535015,252.783339440099,257.976034520412 +1429228800,228.23,228.98,219.58,222.4,248.340146973481,243.087566709847,209.389298291036,251.565462848975,257.206406150215 +1429315200,222.39,224.16,219.94,223.08,247.977223784629,241.663434604953,209.402967165583,250.317277766602,256.37334384301 +1429401600,223.23,227,222.1,222.16,247.634498329172,240.275186459668,209.41570385981,249.046995253188,255.481912717004 +1429488000,222.28,227,221.24,224.21,247.382828741614,239.131671701471,209.430474569322,247.78723639177,254.548183210819 +1429574400,224.21,236.99,224.16,236.96,247.344943441116,238.977092814582,209.457960204278,246.657246043592,253.627425346855 +1429660800,236.18,238.99,232,234.14,247.325200948767,238.632790117933,209.482602893361,245.619405313889,252.711364145653 +1429747200,233.65,237.22,233,236.01,247.426192779549,238.446100768572,209.509087997692,244.682512743504,251.810121233086 +1429833600,235.82,236.51,228.7,231.38,247.516246767754,237.943138009188,209.530924040778,243.796743289157,250.90835585366 +1429920000,231.21,232.7,225.35,226.01,247.477126657041,237.093741118628,209.547376844056,242.914267303052,249.989239110775 +1430006400,226.1,226.84,213.92,219.7,247.349465739141,235.855660270992,209.557513280828,241.987581256273,249.033888788792 +1430092800,219.73,232.49,218.24,227.13,247.30332104086,235.234570604841,209.575057751635,241.096765439812,248.077051075455 +1430179200,226.91,228.05,222.16,225.3,247.197071819215,234.527431093482,209.590757623521,240.227340712315,247.115555127024 +1430265600,225.3,227.8,222.66,225.23,247.06459083955,233.865642965755,209.606371932167,239.382425053983,246.153163547289 +1430352000,225.56,240.89,224.63,236.11,247.04875925504,234.02539557104,209.632833305354,238.659031689868,245.23467270987 +1430438400,236.18,239.25,231.26,231.78,246.934947431975,233.865569043043,209.654945162698,238.004435364395,244.343467164984 +1430524800,231.75,235.79,231.75,234.81,246.837923224484,233.932793332042,209.680060112693,237.438290107489,243.492034584808 +1430611200,234.76,243.73,233.75,240.57,246.799868037004,234.405227548543,209.710900804578,236.999600621922,242.701959946138 +1430697600,240.69,243.6,236.98,238.54,246.706087599187,234.699539309685,209.739683941381,236.652011313008,241.963344030073 +1430784000,238.68,239.49,231.05,235.87,246.572033850708,234.782852321746,209.765772597732,236.359292603338,241.264518146958 +1430870400,235.85,236.75,226.42,229.27,246.352812752008,234.390449282696,209.785245729437,236.057190570366,240.579814677059 +1430956800,229.04,239.79,227.81,237.3,246.291235050847,234.59755015845,209.812716616783,235.81939787097,239.940942061044 +1431043200,237.3,249.22,236.2,244.5,246.381734408272,235.302403324304,209.847348598038,235.698809676617,239.373605369616 +1431129600,244.52,249.21,240.1,242.54,246.455350535902,235.817573106697,209.879989127366,235.658743266964,238.866463227311 +1431216000,242.53,245.95,238.79,240.73,246.5173049258,236.16723805862,209.910789953895,235.669620738168,238.40947768081 +1431302400,240.8,245.49,238.5,242.46,246.603557543756,236.615154811274,209.943287270556,235.737270633279,238.006642882413 +1431388800,242.44,244.67,240.86,241.92,246.655152325347,236.992751970105,209.975213002635,235.846373683008,237.652836733617 +1431475200,242.01,245,234.22,235.7,246.616332962432,236.900734304439,210.000896776463,235.93486636171,237.321738204112 +1431561600,235.72,238.39,232.1,236.68,246.609616517845,236.885022508289,210.027533345045,236.014109938285,237.016367676035 +1431648000,236.7,239,233.88,237.3,246.611694289827,236.914560471467,210.054762331055,236.0904190683,236.738032107821 +1431734400,237.24,237.58,234,235.7,246.600293895735,236.828108451297,210.08036668238,236.149822790626,236.47944189465 +1431820800,235.85,238.24,235.6,236.15,246.573469576074,236.779840911816,210.106394752737,236.198695200283,236.241594040819 +1431907200,236.25,237.25,229,232.82,246.491800761409,236.49798072089,210.129072145558,236.209694105868,236.011048101966 +1431993600,232.83,236.76,231.19,231.7,246.398227313805,236.156462010376,210.150608682763,236.179757641543,235.783824408286 +1432080000,231.56,235.24,231.56,234.24,246.330115418661,236.02004886647,210.17465966823,236.138360485067,235.570090308644 +1432166400,234.26,236.5,233.9,235.27,246.259434698197,235.966660631585,210.199714998922,236.096796682214,235.373395553212 +1432252800,235.25,241.83,234.59,240.97,246.241881836791,236.322796703981,210.230436226688,236.104730140826,235.214558974234 +1432339200,240.97,241.2,237.54,238.81,246.168526262303,236.499835027363,210.258970225905,236.134643292205,235.082804751037 +1432425600,238.86,242.98,238.52,240.96,246.084433007037,236.817308122556,210.289622308857,236.200966539894,234.984446778001 +1432512000,240.92,241.12,236.1,237.1,245.92950940548,236.837430038644,210.316389942615,236.26330196114,234.902440540529 +1432598400,237.1,238.5,235.26,237.36,245.810284694807,236.874626398892,210.343390436896,236.324065395522,234.836687257815 +1432684800,237.37,239.3,235,236.85,245.676247598564,236.872873499811,210.369854786824,236.378601466423,234.784127434058 +1432771200,236.48,237.5,235.85,236.86,245.522350905057,236.871957168273,210.396302698653,236.427629341565,234.743875549612 +1432857600,236.83,237.16,235.02,236.52,245.367822613767,236.846904971264,210.422384746799,236.468762629301,234.713753198076 +1432944000,236.72,236.73,228.2,232.54,245.148028925841,236.540340873228,210.444467099816,236.468639439718,234.677983267804 +1433030400,232.35,232.69,227,228.7,244.868367319952,235.982267954476,210.462693527819,236.401380179264,234.622680089889 +1433116800,228.38,230.89,219.71,222,244.502031841014,234.987014659461,210.4742124403,236.221550353454,234.524412206654 +1433203200,222.01,226,220.97,224.68,244.173398813149,234.253364701172,210.488395579494,235.973832295521,234.397324183743 +1433289600,224.7,227,222.26,225.11,243.833072961123,233.602542969248,210.50299387261,235.676121934665,234.245970152477 +1433376000,225.14,225.77,222.64,223.24,243.455124692409,232.864940523889,210.515710572058,235.323691337037,234.065923216988 +1433462400,223.24,229.23,222.65,224.51,243.076683204752,232.270238569019,210.529682550313,234.940268420906,233.865098756163 +1433548800,224.7,228,223.9,225.66,242.685962284549,231.799723933048,210.544788745414,234.544604470315,233.650364458001 +1433635200,225.69,227,222.29,223.26,242.219218898416,231.191869155085,210.557483684737,234.121542961279,233.414650813294 +1433721600,223.29,230.63,223.25,228.76,241.8041999444,231.018769497896,210.57565718068,233.72714510272,233.181401252686 +1433808000,228.79,232.07,227.79,229.06,241.366530353802,230.87934492076,210.594112053809,233.362331449968,232.952419970713 +1433894400,229.06,229.97,227.48,228.6,240.896886208639,230.717101889068,210.612089234868,233.021033580356,232.726471668329 +1433980800,228.61,230.7,228.6,230,240.444439527637,230.666058809342,210.63144623538,232.714134999547,232.509438509991 +1434067200,229.99,231.34,229.11,229.55,240.004660385752,230.586618105513,210.65033462719,232.434299311273,232.299682743987 +1434153600,229.51,234.3,228.4,232.87,239.601962270841,230.749148487684,210.672518867628,232.207847672081,232.109914972954 +1434240000,232.86,235.44,232.51,233.54,239.212516785602,230.947800392552,210.695349891008,232.033064179242,231.941682460183 +1434326400,233.5,238.16,233.35,236.98,238.858318382976,231.377170402843,210.721592635354,231.9320364639,231.806779895126 +1434412800,236.97,254,236,252.17,238.689968371438,232.857197265196,210.762974961294,232.023873974037,231.760244596442 +1434499200,252.19,259.1,246,248.95,238.462167370191,234.002677740895,210.801101104548,232.245749878426,231.782579307127 +1434585600,248.96,253.7,243,249.51,238.251007879899,235.106483906352,210.839748289632,232.577530130628,231.869958786295 +1434672000,249.38,252.13,243.5,244.58,237.990843384331,235.780805707242,210.873434749072,232.954240892141,231.997905609366 +1434758400,244.56,245.9,240,245.38,237.767025583518,236.464073241554,210.907886300315,233.371574784489,232.165508433563 +1434844800,245.38,245.69,241.09,244.25,237.563723384484,237.018272981276,210.941175256499,233.808952632209,232.364495423612 +1434931200,244.25,247.99,243.5,246.67,237.403419811595,237.705279777973,210.97684711858,234.279959716118,232.600585339929 +1435017600,246.69,247.35,242,244.25,237.223662033496,238.171130839269,211.010067223889,234.753641231506,232.860593388519 +1435104000,244.19,244.19,239,239.8,237.010465858359,238.287073217476,211.038811256717,235.186959000906,233.124699625559 +1435190400,239.75,243,239.5,242.05,236.869161645374,238.554917124587,211.06977300415,235.602774656311,233.400054902939 +1435276800,242.15,243.9,240.61,243.29,236.796734730061,238.891958786875,211.10194186226,236.011316353081,233.689345551612 +1435363200,243.29,251.77,242.6,251.61,236.825966386302,239.797224832748,211.142385338177,236.482266379553,234.021712959896 +1435449600,251.6,252.06,247.25,248.71,236.825716188739,240.431633276487,211.179893058583,236.97541813943,234.381288226457 +1435536000,248.71,257.74,248.57,256.69,236.934007943628,241.588898543167,211.225330608509,237.551556954604,234.794534906197 +1435622400,256.7,269,253.05,262.89,237.122676490151,243.105104031532,211.276912908633,238.244585282016,235.278742049129 +1435708800,262.9,264.81,252.77,258.1,237.277394401058,244.172435859931,211.323661345418,238.98637811374,235.807959399513 +1435795200,258.08,262.61,253,254.52,237.426647707899,244.90897211709,211.366788815911,239.730928239009,236.362842432539 +1435881600,254.52,256.9,252.11,256.09,237.594248443946,245.704834052961,211.411440724632,240.48488256785,236.945042313207 +1435968000,256.12,262.64,253.57,260.58,237.815490901524,246.763643537294,211.460530894201,241.278870810892,237.566993408067 +1436054400,260.57,275.88,258,271.96,238.183735345301,248.55711201276,211.520933908669,242.197307955826,238.265941340418 +1436140800,271.82,278.69,267.33,269.23,238.513966179335,250.028601470247,211.578550968877,243.186588217597,239.022390837832 +1436227200,269.24,271.5,262.61,265.72,238.815052837271,251.145510124907,211.632606099897,244.195255303858,239.815341554746 +1436313600,265.78,274.11,263,270.52,239.168209040857,252.52458002617,211.6913996093,245.252646855828,240.65682175681 +1436400000,270.49,274,266.22,269.23,239.507885887281,253.713666398115,211.748846475582,246.329830959234,241.534656190839 +1436486400,269.22,296.1,268.58,285.36,240.042359251989,255.96624215299,211.822340270437,247.553425974327,242.503350362653 +1436572800,285.35,299.56,283.46,293.18,240.666964641367,258.615105358709,211.9035682212,248.954496099448,243.581051466486 +1436659200,293.19,316.23,291.81,311.14,241.520231439004,262.353810312172,212.002646439787,250.644721051004,244.822243615641 +1436745600,311.14,312,281.5,292.65,242.147496526081,264.510283261437,212.083165216826,252.398378013965,246.138515547664 +1436832000,292.6,297.25,286,286.83,242.70501122111,266.09899345496,212.157792882317,254.138747550193,247.496535081157 +1436918400,286.87,294.44,283.51,285.42,243.268101580043,267.474256430148,212.230938287093,255.840951502771,248.882299834423 +1437004800,285.42,295,275.21,278.94,243.770158266393,268.290384336211,212.29754099418,257.441023918783,250.263747437859 +1437091200,278.93,281.55,272,279.82,244.308878062962,269.11105863719,212.364955801756,258.95084884739,251.639351345549 +1437177600,279.52,283.33,276.12,277.25,244.828672160756,269.690385841878,212.42973739937,260.35115897629,252.994708695639 +1437264000,277.25,279.18,274.69,275.04,245.338513787784,270.07116964142,212.492247842083,261.630162106903,254.318077136693 +1437350400,275.04,280.5,273.5,280.2,245.918369529201,270.792136499003,212.559847647397,262.842917354625,255.626664706961 +1437436800,280.2,282.1,275.09,275.55,246.450770706146,271.130799678826,212.622737374201,263.95048906968,256.899226824519 +1437523200,275.55,278.39,274.5,277.99,247.033234939315,271.619035331514,212.688000421439,264.983045796065,258.143235100507 +1437609600,277.88,278.44,275.56,276.51,247.596965399606,271.967172609241,212.751720669251,265.932167989952,259.350830675934 +1437696000,276.48,289.93,276.02,288.6,248.299276396599,273.151091864683,212.827448023251,266.908959444172,260.566204551431 +1437782400,288.58,292.35,286.39,289.37,249.003093397351,274.305548481862,212.903868543014,267.906726476307,261.787013525438 +1437868800,289.36,294.57,288.12,293.01,249.755661642026,275.636925270341,212.983846960822,268.944591349502,263.021931033277 +1437955200,293,298.74,286,294.84,250.521747683088,277.003793897185,213.065572610144,270.02229214226,264.272004708153 +1438041600,294.73,298.93,293.61,295.23,251.282875882879,278.301129332216,213.147606042333,271.126820568827,265.532698027445 +1438128000,295.24,295.68,286.02,289.92,251.960987492261,279.128156775412,213.224256037639,272.197967866741,266.778295266222 +1438214400,289.92,291,284.01,288.21,252.596551250821,279.7745994286,213.299122231415,273.217610515839,267.998918784677 +1438300800,288.02,289.85,281,284.45,253.190752141491,280.107392923857,213.370159672946,274.153561983951,269.177883708861 +1438387200,284.45,284.99,276.53,280.31,253.734425045032,280.121814429781,213.436992790716,274.976781202563,270.298646109899 +1438473600,280.31,283.44,276.26,282.44,254.315024067348,280.286822126295,213.505885786049,275.718553458764,271.369965777476 +1438560000,282.44,287.05,279.7,281.28,254.887044567912,280.357516205007,213.573551847618,276.376879735321,272.387620445527 +1438646400,281.28,285.94,281.28,285.47,255.509475762589,280.721421142263,213.645333670866,276.99708621934,273.36815261163 +1438732800,285.47,285.94,281.49,282.61,256.075591416897,280.855849572413,213.714188386446,277.555846411808,274.300215649954 +1438819200,282.58,282.58,278,279.08,256.590640873847,280.729445176206,213.779449984985,278.028709031557,275.171080595881 +1438905600,279.08,281,276.07,280.19,257.106126963155,280.691047643642,213.845754656293,278.436412425407,275.986853809736 +1438992000,280.04,280.32,260.62,261.34,257.363754443182,279.313646352805,213.893173181299,278.624031991962,276.67795589459 +1439078400,261.34,267.6,260.73,265.58,257.67554728767,278.336089862706,213.944777603524,278.665622484623,277.268388556313 +1439164800,265.69,267.72,262.17,265.1,257.97046178964,277.39394928209,213.995851268866,278.582567228947,277.762668874981 +1439251200,265.09,272.99,264.81,271.96,258.342711747223,277.007162535794,214.053723005035,278.456988048974,278.193010886051 +1439337600,271.97,273.75,265.8,267.1,258.658524322756,276.301973921894,214.106684710057,278.255496975937,278.544873063602 +1439424000,267.09,268,263.33,264.47,258.944478583312,275.459777858235,214.156967730835,277.970560067549,278.813667736678 +1439510400,264.47,268.97,262.13,266.09,259.250658412222,274.792840111274,214.208817965984,277.633440759,279.01156018699 +1439596800,266.32,267.76,260.96,262.2,259.487669977401,273.896485839195,214.256732635411,277.222677735219,279.129141779877 +1439683200,262.04,262.9,256.5,259.9,259.686134457366,272.900220519761,214.302303133462,276.73499675339,279.164111408962 +1439769600,259.9,262.37,257.4,258.49,259.873116800013,271.874505700042,214.346420381639,276.176062885074,279.118036475719 +1439856000,258.5,258.5,162,194.52381,259.262795777059,266.368708284502,214.326629374555,275.010370330021,278.756427278147 +1439942400,194.52381,255.08,178.12,226.32,259.053146791346,263.518054226733,214.338603624083,273.630450268027,278.227548817587 +1440028800,226.31,237.94,226.27,235.54,258.966028025808,261.526585407232,214.359771218956,272.165920887261,277.582437553851 +1440115200,235.55,236.43,230.52,232.17,258.847080726241,259.436993185708,214.377553052791,270.615311914924,276.820686136375 +1440201600,232.46,234.71,221.77,230.27,258.70248361155,257.36089607698,214.393420162322,268.990865684148,275.947913451661 +1440288000,230.33,232.88,225.58,228.53,258.536271363854,255.30872225137,214.407534204132,267.30467530971,274.970284097936 +1440374400,228.1,228.69,207.62,210.5,258.147013681913,252.119251944316,214.403632899731,265.426400534728,273.832318850038 +1440460800,210.49,228.77,196.6,222.03,257.902945709718,249.977508756472,214.411247108073,263.506010876889,272.59548796179 +1440547200,222.7,232.38,220.1,226.12,257.713573450126,248.279339026209,214.422937193635,261.602931996273,271.288313026372 +1440633600,226.13,229.5,224,225.8,257.516805035715,246.679266970057,214.434296117927,259.727779842121,269.920502841934 +1440720000,225.66,238.9,220.11,231.83,257.387178577593,245.6223009665,214.451664087742,257.943940771665,268.525149097469 +1440806400,232.08,234.03,227.16,230.75,257.238165564229,244.563695410552,214.467936439128,256.24130861712,267.105784527067 +1440892800,230.9,233.96,225.2,229.99,257.072198088517,243.526344501163,214.483433755777,254.613633435831,265.666940579209 +1440979200,229.99,233.69,225.31,231.35,256.928479371347,242.659636251438,214.500273431561,253.0734523366,264.220842699444 +1441065600,231.06,232.39,226.55,228.24,256.746753442402,241.633251222995,214.513991252808,251.591681101621,262.761824282035 +1441152000,228.24,231.89,226.51,229.71,256.591947256171,240.784558070667,214.529163034474,250.183480418912,261.302044688095 +1441238400,229.71,229.96,226.1,227.25,256.408042850349,239.821172619876,214.541863590539,248.826712992487,259.837791520621 +1441324800,227.29,231.66,227.01,230.89,256.273266146316,239.185454651431,214.558185663024,247.555455001604,258.388720246629 +1441411200,230.88,239.76,230.01,235.84,256.204329793176,238.947326275119,214.579433547647,246.408326004775,256.977704742582 +1441497600,235.84,248.48,235.5,240.97,256.205866599689,239.091299534391,214.605782039473,245.417580936354,255.626210073562 +1441584000,241,243,239.03,240.85,256.21624497214,239.216483262742,214.631984416132,244.563018809224,254.33382600089 +1441670400,240.91,247.68,240.27,244.2,256.27579785748,239.571208366686,214.661505291265,243.856840464479,253.113057650139 +1441756800,244.2,245.57,238.38,239.07,256.274963213006,239.535532517814,214.685874871376,243.234493233225,251.943053586623 +1441843200,238.97,241.9,237.01,239.49,256.26827759697,239.532291527973,214.710639451151,242.690123889128,250.825501923075 +1441929600,239.4,242.78,239.39,240.6,256.268866878541,239.608290670484,214.736487536149,242.224207814138,249.764354802034 +1442016000,240.9,241,235.33,235.77,256.203394650868,239.335082386287,214.757487514768,241.785108101549,248.740584217104 +1442102400,235.86,236.85,228.95,230.96,256.066715340125,238.738946740188,214.773664195498,241.330284633301,247.736714384134 +1442188800,231.11,233.9,228.4,230.89,255.919094709411,238.18026125862,214.789754836939,240.865852081804,246.754579814548 +1442275200,231.07,232.93,229.5,230.93,255.763522924763,237.664190015324,214.80586934962,240.397874920059,245.796192354541 +1442361600,230.91,232.12,227.33,228.99,255.565524518742,237.046763985266,214.820030866432,239.914256377833,244.855826078338 +1442448000,228.99,235.71,228.99,233.61,255.41650021297,236.802136240207,214.838790878614,239.461889305768,243.952946266506 +1442534400,233.65,236.26,232.52,233.78,255.259930423061,236.587021563472,214.857701889661,239.040612726321,243.088417160427 +1442620800,233.79,234.19,231.4,232.09,255.069020847677,236.266925028105,214.874906714223,238.633946208114,242.255860810351 +1442707200,232.01,233.38,231.4,232.12,254.865782078581,235.971748250501,214.892124313562,238.243074119492,241.45581601535 +1442793600,232.11,232.97,226.38,227.22,254.582740087566,235.348801650435,214.904432534848,237.826215693166,240.670035914979 +1442880000,227.25,233.95,224.25,231.11,254.332495768044,235.047085124672,214.920612265687,237.425210250317,239.914964734443 +1442966400,231.43,233,230.03,230.54,254.05341946047,234.726272268285,214.936206751345,237.035785991295,239.188690353669 +1443052800,230.57,236.25,230.54,234.65,253.799972254688,234.720843232983,214.955889114784,236.694785841318,238.507027489137 +1443139200,234.65,237.7,233.05,235.26,253.559650440745,234.759220236675,214.976160854713,236.401844900181,237.871060767163 +1443225600,235.39,235.95,233.75,234.63,253.311588969798,234.750022382167,214.995783359634,236.145528023457,237.276927441955 +1443312000,234.63,234.78,233,233.37,253.052305631832,234.651792836894,215.014128282159,235.910664830899,236.718556161473 +1443398400,233.37,241.44,233.37,240.43,252.875968232933,235.063083747431,215.039503633212,235.756513618695,236.221675413365 +1443484800,240.43,241.5,236.61,236.8,252.65004433172,235.186716882567,215.0612294367,235.638715556182,235.769225469192 +1443571200,236.9,238.78,235.11,236.49,252.412551263531,235.279484151882,215.082624043256,235.549163347483,235.357966566848 +1443657600,236.72,240.09,236.19,238.48,252.198529606684,235.507295831214,215.105984116646,235.500825934564,234.993464304515 +1443744000,238.25,240,237.33,237.86,251.971698094054,235.674760550372,215.128701855677,235.481453664613,234.670778404635 +1443830400,237.84,241.11,237.68,239.79,251.751301596573,235.967681958784,215.153323836177,235.502762570307,234.394860244284 +1443916800,239.73,240.93,239.29,239.5,251.509139668988,236.219111210534,215.1776316963,235.554848306162,234.161680256956 +1444003200,239.47,242.89,236.24,242,251.274798398057,236.630592998364,215.204411301554,235.653415444331,233.977925925231 +1444089600,242.01,249.01,241.51,247.36,251.098357208726,237.394308706481,215.23651562442,235.835706140276,233.860329658276 +1444176000,247.35,247.93,243.5,244,250.856993399455,237.864499668857,215.265233251013,236.056253208621,233.791022185315 +1444262400,244,245.65,242.62,243,250.59138868192,238.230042915687,215.29292380007,236.29772211171,233.762383231952 +1444348800,242.99,245.45,242.63,244.82,250.351629947794,238.699113922159,215.322403801089,236.57004920953,233.777935974022 +1444435200,244.93,246.41,243.5,246.01,250.120800596327,239.219500420411,215.353042471884,236.875696099862,233.838358093451 +1444521600,245.93,248.73,243.75,247.99,249.897152582122,239.843781733995,215.38562739613,237.223229223885,233.947083476992 +1444608000,247.92,248.45,245.21,246.17,249.628641445546,240.294079896977,215.416362689039,237.586483981261,234.092721765317 +1444694400,246.15,253.43,244,251.25,249.401348427132,241.073918734135,215.452139196584,238.003447840822,234.290768015125 +1444780800,251.08,255.95,250.1,253.5,249.202190536627,241.95840316572,215.490126397472,238.480443799814,234.544515039867 +1444867200,253.5,257.5,253.44,255.19,249.018208612598,242.900223934031,215.529762977347,239.017313708055,234.854650623737 +1444953600,255.19,267.83,254.91,263.45,248.918215278671,244.362950324919,215.577606814871,239.670205842048,235.246401313489 +1445040000,263.47,275.19,258.32,272.9,248.920478790263,246.39420825901,215.634837818647,240.494597120093,235.747034364156 +1445126400,272.9,274.66,263.3,265.01,248.789707953516,247.719274273326,215.684134261735,241.384745416023,236.315606734582 +1445212800,265.29,268.28,262.35,265.1,248.648991337354,248.956428689586,215.733471343485,242.322074306888,236.94453471391 +1445299200,265.02,273.97,264.39,270.97,248.579055207479,250.523347550894,215.788619808239,243.340859912853,237.648478386704 +1445385600,270.99,272.28,264.1,267.8,248.51758084908,251.753094065035,215.840548266399,244.390448197106,238.406430495819 +1445472000,267.99,279.97,267.3,275.83,248.576357850672,253.466880415257,215.900442076619,245.525721437215,239.241260328944 +1445558400,275.83,280.9,275.15,279.21,248.689178971851,255.299267312297,215.963650699764,246.750891968416,240.156042702445 +1445644800,279.04,284.47,279,284.19,248.878460907724,257.355700288438,216.031768275418,248.082479692993,241.159331128443 +1445731200,284.19,295.99,281.2,284.79,249.076988202999,259.308464838027,216.100416885514,249.495291441123,242.24207751963 +1445817600,284.7,287.92,282.25,287.22,249.311203153358,261.295198852088,216.171423082284,250.983718755316,243.402613637376 +1445904000,287.22,298.86,286.71,295.29,249.647097122464,263.714937764687,216.250415520017,252.591250300145,244.660417564399 +1445990400,295.29,307.99,295.29,304.5,250.091013460033,266.618005257688,216.338524407697,254.36248917106,246.037248927038 +1446076800,304.5,321.53,301.5,314.88,250.668991663849,270.053278379878,216.43690877807,256.342829055155,247.556986026819 +1446163200,314.23,336,313.82,328.19,251.40526182671,274.19143135636,216.548483700721,258.593136387556,249.252001788844 +1446249600,328.2,335.87,307.2,316,251.981847009263,277.167351703324,216.647776660918,260.940710586769,251.054959535135 +1446336000,316,333.49,313.6,330.23,252.717586940441,280.944333787448,216.76117779949,263.471025863912,253.003609614921 +1446422400,330.23,373.12,326.8,365.33,253.895254631213,286.950878120849,216.909509757596,266.433237135752,255.210753537282 +1446508800,365.08,423.88,361.11,405,255.570493855347,295.353576303028,217.09730037413,270.068094641525,257.795883421453 +1446595200,404.98,504,366.66,409.24,257.305557571848,303.459974979616,217.289136739588,274.261563113538,260.733110572654 +1446681600,409.23,449.95,370,387.14,258.776497346982,309.416292001976,217.458716808678,278.687295165448,263.897950545546 +1446768000,387.93,396.78,351.2,375.56,260.122596443779,314.124379670147,217.61656603012,283.165742771157,267.215370052631 +1446854400,375.56,392.23,371.32,384.99,261.601030156924,319.168571525587,217.783672619699,287.730363873925,270.695478976015 +1446940800,384.28,390.33,365.56,374.1,262.958333831885,323.078572776244,217.939739731094,292.232277822012,274.270179179135 +1447027200,374.52,388.99,360,381.1,264.415285439077,327.208519135011,218.102639864058,296.704198509002,277.944363016162 +1447113600,381.1,383.4,327.02,340.18,265.362945966531,328.13182493305,218.224522595584,300.759042407208,281.541171707853 +1447200000,340.18,343.79,300.28,314.45,265.998298050683,327.157957074791,218.320594660178,304.213278789913,284.956437681509 +1447286400,314.45,346.44,314.14,336.84,266.922453202402,327.847121747873,218.438925109375,307.337095942314,288.277250428529 +1447372800,336.86,343.75,326.22,338.53,267.888692397093,328.607525554701,218.558824722401,310.176685349691,291.505482348023 +1447459200,338.54,340.72,328.5,333.37,268.811471107841,328.946516940042,218.673452853587,312.713288875486,294.617328711992 +1447545600,333.39,336.6,315,320.52,269.592890211604,328.3467201991,218.77513702622,314.867615519406,297.562408658019 +1447632000,320.8,335,315.2,332.1,270.555428842522,328.613877437191,218.888281214739,316.788929156763,300.387509269606 +1447718400,332.16,342.5,331.05,336.29,271.568015811067,329.160261349904,219.005495759315,318.53815742542,303.107985939813 +1447804800,336.29,338.99,327.91,335.94,272.582104120543,329.642840946634,219.122243834229,320.127665402052,305.721139246049 +1447891200,335.83,336.57,324.02,326.5,273.481025892677,329.419134548071,219.229450397444,321.490425719267,308.190578151909 +1447977600,326.49,326.77,309.46,322.2,274.34888702298,328.90527889393,219.332256780531,322.61768976856,310.502958541074 +1448064000,322.29,329.35,318.95,327.84,275.305816654489,328.829452687999,219.440591529255,323.590224731999,312.684200221521 +1448150400,327.84,327.85,320.36,324.66,276.239639201995,328.532672398875,219.545643185841,324.399567937811,314.725207590244 +1448236800,324.66,327.5,320.9,323.63,277.188826303288,328.1837017687,219.64956160039,325.058754181213,316.626306963724 +1448323200,323.65,323.77,315.55,320.1,278.124321063384,327.608306500392,219.7498518901,325.558193268486,318.37888453807 +1448409600,320.49,332.43,316.02,329.85,279.223712077073,327.767869516146,219.859776504936,326.006178636861,320.025768791197 +1448496000,329.85,369.9,329.35,354,280.703378784389,329.635064050274,219.993702867931,326.616731412378,321.660924348744 +1448582400,354,367,348.18,358.9,282.174440985,331.718132693157,220.132387705986,327.398108029644,323.297677410555 +1448668800,359,362.44,351,358.6,283.626165301242,333.631575283472,220.2706345586,328.310671571817,324.928578422239 +1448755200,358.54,376,355.17,373.89,285.275386408948,336.497156888808,220.424009007838,329.45545063433,326.605705574448 +1448841600,373.84,384.99,368.11,376.88,286.964518822085,339.371594555096,220.580215560179,330.807222664265,328.330086306265 +1448928000,376.89,379.99,353.1,362.59,288.477647366789,341.024273119064,220.721998937634,332.1940666972,330.037228084581 +1449014400,362.59,363.22,346.13,359.12,289.956609540471,342.31232108543,220.860176289998,333.567777951349,331.709046284526 +1449100800,359.12,371.5,352.25,360.53,291.417714686345,343.609049557969,220.999623437336,334.930998700203,333.347555565336 +1449187200,360.62,364.4,354.31,363.17,292.893840039267,345.001391661871,221.141567150882,336.296626442194,334.959369903596 +1449273600,363.04,395,362.08,389.79,294.691399738536,348.189430267108,221.309946706602,337.882552024322,336.641197004449 +1449360000,390.01,407.57,386.01,390.6,296.481173663394,351.208200856224,221.478966859828,339.643006866151,338.383791823028 +1449446400,390.88,404.24,384.53,396.7,298.341488756199,354.446292354785,221.653908537106,341.584559536036,340.19844242852 +1449532800,397,422.39,388.37,422,300.510820308578,359.254743340224,221.853935215688,343.877027508343,342.167709663728 +1449619200,422,426.59,405,418.73,302.628255657596,363.488172806402,222.050497399874,346.410104042595,344.258662417519 +1449705600,418.86,421.82,411.09,414.94,304.691235435046,367.150497167206,222.243079377674,349.086465564156,346.438746333855 +1449792000,414.88,458.99,414.8,457,307.266528827264,373.545955617932,222.47746202404,352.221167828135,348.8509809607 +1449878400,456.32,475.04,402.5,435.61,309.560145156995,377.963654153985,222.690254763632,355.520932846276,351.385743893763 +1449964800,435.61,443.92,415.24,433.36,311.802550722685,381.906748072263,222.900588636929,358.908517115243,354.014548642767 +1450051200,432.91,450,427.3,442.59,314.139051478383,386.226162249557,223.11992779625,362.418855646287,356.754327359959 +1450137600,442.55,467.29,442.51,466.01,316.752580757657,391.905149926562,223.362430627469,366.202296905317,359.673738943128 +1450224000,466.43,469.99,440,454.94,319.220078227062,396.391950096649,223.593638991442,370.082012958151,362.704682273446 +1450310400,454.94,458.56,446.21,455.57,321.68743184763,400.604224482365,223.825245511256,374.012840399399,365.828607811939 +1450396800,455.71,466.6,450.1,463.52,324.25696863378,405.082548964216,224.064558119073,378.020461419378,369.0558344445 +1450483200,463.51,467,452,462.44,326.80610943455,409.165233713419,224.302553517669,382.047278595963,372.361313771389 +1450569600,462.45,462.78,431.5,442.62,329.102108233531,411.546533119858,224.520522899439,385.883738594313,375.651064063155 +1450656000,442.62,447.45,424.37,437.52,331.337013445534,413.395316062624,224.733182790296,389.486340125989,378.894740596064 +1450742400,437.81,443.64,433,435.65,333.545771109732,414.979397242465,224.943763341658,392.849239270572,382.076950064148 +1450828800,435.05,445.76,433.62,442.62,335.829809098278,416.94684637591,225.161092535889,396.046120009808,385.217222424635 +1450915200,442.62,459.1,442.45,456.13,338.27034697141,419.735890533869,225.391693208348,399.195573279891,388.358282373745 +1451001600,456.02,460,445,455.47,340.689454789374,422.279432848061,225.621404700023,402.273076666553,391.485709068906 +1451088000,455.3,460.05,405.5,416.51,342.599971967642,421.868766490422,225.81198896058,404.927984035075,394.441727628074 +1451174400,416.35,424.89,407,422.32,344.572706163279,421.900885145185,226.008183677811,407.262500650169,397.251689332262 +1451260800,421.82,429,417.01,420.24,346.510129000703,421.782663879595,226.202105829275,409.295272463535,399.909546668482 +1451347200,420.11,433.55,418.01,431.79,348.580068385949,422.494982816736,226.40736595353,411.162075715463,402.461811436608 +1451433600,431.77,434,420,423.55,350.536069106498,422.570078597432,226.604194281985,412.804967463956,404.876706912793 +1451520000,423.51,432.59,412.5,429.02,352.536785067629,423.029181909527,226.806287375065,414.296733725019,407.177449750373 +1451606400,429.17,436.49,426.26,433.98,354.581496212087,423.808657587087,227.013130789495,415.694152483237,409.383787793673 +1451692800,433.89,435.8,430,432.7,356.586823451831,424.441540454328,227.218489730993,416.990806842937,411.490582335048 +1451779200,432.66,433.07,421.73,428.39,358.521456627566,424.722590523305,227.419340512411,418.156095187733,413.482065347968 +1451865600,428.63,435.67,426.97,432.9,360.496599991229,425.304655875855,227.624493572947,419.242224142898,415.377551735691 +1451952000,432.61,434.91,427.91,431.84,362.439806377512,425.769839549547,227.828383497463,420.244676681241,417.174042780858 +1452038400,431.99,432.24,425.03,428.89,364.319859669485,425.991931557753,228.029124560319,421.144121479132,418.862031389006 +1452124800,428.2,462,427.11,458.78,366.563392127099,428.325775628011,228.259507548363,422.2094387698,420.557241671953 +1452211200,458.41,465,446.55,454,368.727092284027,430.153258586167,228.484888141499,423.360686501273,422.234607385385 +1452297600,454,456.01,447.07,449.23,370.80799858335,431.511134848593,228.705281318206,424.531440707879,423.871298671253 +1452384000,449.23,450.26,441.01,449.35,372.869982211003,432.780899480416,228.925574261793,425.709159203103,425.465046384412 +1452470400,449.34,452.49,443.42,449.26,374.906285627643,433.95387650706,229.145557407138,426.881648048176,427.013143459597 +1452556800,449.26,449.98,427.01,432.04,376.703916562693,433.817647398442,229.348128374,427.890836118172,428.448597657673 +1452643200,431.99,436.36,416,431.11,378.462828094426,433.624917935396,229.549568575558,428.748914404659,429.772053724072 +1452729600,431.09,435,426,429.25,380.171851210301,433.313512696646,229.748950623481,429.459179012564,430.981012578623 +1452816000,429.27,429.43,357.02,359.16,380.987572577144,428.035289729633,229.878155352106,429.435788418443,431.81596420083 +1452902400,359.16,392.5,352.5,388.4,382.148638642824,425.214062670424,230.036424464501,429.06180123737,432.415973759648 +1452988800,388.43,393.31,378.76,382.02,383.2025414665,422.139523308299,230.188165731782,428.347461122234,432.774658523142 +1453075200,382.11,390,375.01,387.1,384.293187771329,419.645421411391,230.344827400645,427.403206480951,432.930365961204 +1453161600,387.04,388.61,377.41,378.93,385.253005417904,416.747310929634,230.493175683083,426.207338612138,432.868913829556 +1453248000,378.94,428,375.01,419.55,386.694681989319,416.946805428042,230.681931093059,425.165958482818,432.76239062673 +1453334400,419.65,424.57,405,411.01,387.990514303044,416.524225544481,230.861971663929,424.186850285374,432.582781288381 +1453420800,411,411.2,371.25,380.96,388.875346697289,413.992775512696,231.011830390149,423.007662143136,432.223500852783 +1453507200,381,394.81,379.85,385.57,389.782258574833,411.969651576395,231.166142146815,421.713916192236,431.71859112046 +1453593600,385.55,407.33,385.1,402.77,390.862178939097,411.31482336296,231.337472415689,420.48579835457,431.147292856972 +1453680000,402.76,402.77,384,390.96,391.759643849502,409.865973642201,231.496840456195,419.220194459965,430.472810174335 +1453766400,390.91,398,386.66,391.41,392.649603088182,408.552283428288,231.656498665304,417.938582102269,429.708162609881 +1453852800,391.23,396.99,389.66,394.97,393.551946591153,407.585500902031,231.819551795021,416.685654242481,428.877347453825 +1453939200,394.7,395.48,375.01,378.39,394.207019432183,405.507374623307,231.96588856515,415.323826203206,427.926517171802 +1454025600,378.15,386,360.03,377.6,394.820899925861,403.520936755038,232.111290491316,413.87735032943,426.866483294193 +1454112000,377.4,380.6,374,376.56,395.373792674316,401.601866027063,232.255508905449,412.364749367407,425.706606422605 +1454198400,376.31,378.9,362.57,365.52,395.748108862521,399.033570513729,232.388560932229,410.715385980511,424.418065485336 +1454284800,365.58,379.27,363.23,371.42,396.154531091409,397.068045526625,232.527370712705,409.018771774399,423.03894600696 +1454371200,371.22,374.8,369.69,372.9,396.540508846055,395.347771889848,232.667519545133,407.310745790911,421.587746199783 +1454457600,372.9,374,365.65,368.98,396.829771538069,393.470922444464,232.803614701847,405.574209493445,420.061271747406 +1454544000,369,393.89,368.65,389.96,397.324607247716,393.221016124347,232.960520531851,404.010596714534,418.550913635395 +1454630400,389.98,393,384.19,386.54,397.718734949041,392.745463564959,233.113855158706,402.573198474981,417.048090236447 +1454716800,386.54,386.54,365,373.75,397.896735572089,391.393372633437,233.254267086564,401.141495380341,415.509537343293 +1454803200,373.71,377.8,369.17,372.01,398.002575001912,390.013670460317,233.392801600446,399.711812478895,413.937532106176 +1454889600,372.26,377,369.01,370.49,398.060489122725,388.623981933415,233.529680224024,398.283010802826,412.335115170276 +1454976000,370.29,377.96,370.04,374.31,398.087738986196,387.605117345038,233.670236096958,396.900308659003,410.725348847341 +1455062400,374.43,387,373.13,381.17,398.112403270169,387.147067780954,233.817500701172,395.626788227332,409.1408422486 +1455148800,380.97,383.23,372.25,377.99,398.048382888352,386.495270668258,233.961443345459,394.426609521142,407.573422651508 +1455235200,378,383.53,377.04,382.94,398.079300941844,386.242207655965,234.110184384777,393.339935087241,406.04624886901 +1455321600,382.94,393,382.55,393,398.29948731177,386.723225121752,234.268820881481,392.442999706845,404.599655481671 +1455408000,392.99,408.66,392.93,408.3,398.743358717118,388.259052954782,234.442574601728,391.842179232209,403.290031083841 +1455494400,408.3,412.5,395.23,399.9,399.091774487918,389.087651787358,234.607768237439,391.417547751148,402.078954731567 +1455580800,400.08,408.77,398.66,407.27,399.574746650756,390.381865432001,234.780155192851,391.205247888573,400.990452030102 +1455667200,407.37,421.9,405.16,414.88,400.18416522384,392.125634699612,234.95996790348,391.235253024592,400.046949262043 +1455753600,414.89,426.21,412.51,421.5,400.956863269796,394.21649248816,235.146210533772,391.521569010603,399.264679852248 +1455840000,421.51,422.54,412,419.85,401.725127027649,396.041077233425,235.330619848965,392.00201053709,398.626658267545 +1455926400,419.72,445.96,419.72,438.7,402.680330873068,399.077525510875,235.533664996189,392.800957464942,398.19421223918 +1456012800,438.73,451.6,428.01,440.49,403.651078157176,402.025252004474,235.738294568175,393.870503161045,397.958255455967 +1456099200,440.49,442.5,433.01,440.27,404.620764936954,404.747500754354,235.942500187579,395.15152009695,397.902141834969 +1456185600,440.25,442.67,416.24,421.4,405.351544870341,405.932820246043,236.127662011474,396.43231199179,397.939533794409 +1456272000,421.5,427.5,409.69,426.36,406.108111293059,407.38682027123,236.317591060994,397.744724566481,398.081070258997 +1456358400,426.36,430,419.5,424.88,406.828915356062,408.631979126863,236.505852843842,399.059011476918,398.31177304506 +1456444800,424.89,435.9,419.83,435.49,407.67557572708,410.543724335765,236.704519749473,400.455199462707,398.663256022471 +1456531200,435.49,438.6,431.81,434.3,408.505702520277,412.234688327379,236.901800202157,401.896409746864,399.119428876329 +1456617600,434.03,437.89,422.1,434.45,409.318391838197,413.815967002193,237.099033449768,403.363497263208,399.670234238588 +1456704000,434.46,445,430.51,438.99,410.154607264875,415.607846500673,237.300602540434,404.878438279949,400.322690384549 +1456790400,439.53,442.79,427.26,434.82,410.914985804564,416.975361351396,237.497807031626,406.383603046361,401.049943578275 +1456876800,434.99,436.45,421.11,422.09,411.482447779307,417.339419670433,237.682104928241,407.757665603017,401.794815862925 +1456963200,421.7,424.43,416.4,420.56,411.989214189797,417.568659533043,237.864691260074,408.998766735097,402.547218627662 +1457049600,420.19,423.99,407.5,408.82,412.282846556338,416.945932786884,238.03537401382,410.018263446836,403.259336749917 +1457136000,408.71,410.14,389,397.36,412.362822627147,415.551812447783,238.194444627674,410.747566230902,403.888630035003 +1457222400,397.37,409.5,392.01,403.75,412.491486242805,414.711763268062,238.35973623691,411.287064517718,404.463894657647 +1457308800,403.77,415.8,401.51,412.7,412.704693702852,414.568566611565,238.533798549026,411.743119098513,405.021349733227 +1457395200,412.62,416,406,411.35,412.860176080739,414.339470084749,238.706339228652,412.114912452651,405.555306413796 +1457481600,411.34,414.5,407.47,413.05,413.024723034583,414.247686022617,238.880404932361,412.42886690541,406.072165941211 +1457568000,412.9,418.24,410.68,416.51,413.234148631637,414.408716797287,239.057751331584,412.722434607947,406.58449611884 +1457654400,416.64,423.6,415.5,420.47,413.464668558143,414.840156968449,239.238874353701,413.03092570024,407.105701428326 +1457740800,420.49,421.81,406.38,410.01,413.51987227029,414.496347963076,239.409373217998,413.258603254761,407.593559128588 +1457827200,410.01,416,410,411.87,413.543074764139,414.309405367453,239.581558889849,413.433907292573,408.056086171108 +1457913600,412,417.99,411.7,415.91,413.540764254778,414.423335173921,239.757606209551,413.599533450377,408.508945825418 +1458000000,415.99,418.82,412.78,415.5,413.499095066962,414.499971826806,239.933068416272,413.752221566448,408.9497016511 +1458086400,415.52,418,413.96,417.28,413.432800217767,414.697853329908,240.110132602662,413.908333376214,409.384440131616 +1458172800,417.28,420.6,416.67,418.75,413.327864282286,414.986283814749,240.288487663531,414.078620055723,409.817582327495 +1458259200,418.71,418.86,403.01,407.86,413.075089258175,414.479037245671,240.455792015679,414.164954898467,410.206504570946 +1458345600,407.5,412,404,408.68,412.807626690308,414.066263656618,240.623748022879,414.188565711889,410.556594499562 +1458432000,408.7,413.2,407.92,411.25,412.512812584546,413.865802923567,240.794102244479,414.182586949929,410.879536808631 +1458518400,410.81,412.14,406,411.88,412.259893518501,413.724454115965,240.964915379042,414.157763000314,411.178799239475 +1458604800,411.85,418.68,409.88,417.7,412.070022048451,414.007432181716,241.141368693941,414.167962311518,411.477243022751 +1458691200,417.7,419.72,415.83,418.12,411.858902850705,414.300163424276,241.318065167237,414.210517549307,411.775396794 +1458777600,418.12,418.13,414,415.3,411.589075293721,414.371331467236,241.491769721709,414.254945637843,412.061510179845 +1458864000,415.3,417.03,413.03,416,411.357867699023,414.487259564809,241.665999732551,414.306581755448,412.338169857416 +1458950400,416.02,419.4,413.2,416.71,411.144397877987,414.645473507589,241.840764659201,414.369839238497,412.607816036406 +1459036800,416.72,431,415.79,427.36,411.072625140494,415.550489376783,242.0259881202,414.534177206869,412.910244188695 +1459123200,427.34,427.99,422.38,424.06,410.990551622064,416.156193581158,242.207731914248,414.751724808476,413.229063264749 +1459209600,424.03,426.41,406.51,416,410.853643365783,416.145075772744,242.38124710436,414.941490174316,413.531238846491 +1459296000,415.87,416,408.58,413.12,410.693447511366,415.929751861037,242.551713647518,415.081862017453,413.806169237761 +1459382400,413.04,418.25,413.04,416.02,410.572295858331,415.936175694278,242.724905372423,415.205454563003,414.06608394502 +1459468800,416.34,417.9,414,417.9,410.467821577113,416.075960070995,242.899801184429,415.330426635966,414.318377565469 +1459555200,417.89,422.8,417.53,420.3,410.39514750666,416.376625862217,243.076918553127,415.47620067125,414.571808423216 +1459641600,420.31,421.82,416,420.6,410.364851164964,416.677244262637,243.254158608544,415.640421527481,414.826455683839 +1459728000,420.99,421.2,416.24,420.46,410.398119258152,416.946499588318,243.431081929683,415.817188495986,415.080725623875 +1459814400,420.46,425,419.61,423.75,410.459140956747,417.430770539526,243.611113364305,416.031190140134,415.346114100853 +1459900800,423.75,424.68,421.69,422.57,410.501371895976,417.796579224571,243.789786935799,416.263773608093,415.616217574006 +1459987200,422.52,422.86,417.78,422.28,410.52444745764,418.115707660259,243.967992580929,416.507126564615,415.888520045288 +1460073600,422.29,424.49,415.5,418.5,410.510516635099,418.143061464279,244.142246331004,416.724558613242,416.147531905274 +1460160000,418.23,418.76,412,418.47,410.485722897933,418.166332843142,244.316296152972,416.918526790146,416.393291786912 +1460246400,418.48,422.9,417.49,421.32,410.493240151525,418.390809847836,244.493017658835,417.116152182886,416.636760776988 +1460332800,421.32,423.9,418.8,423.74,410.53842470999,418.771563466772,244.671978866722,417.335998195995,416.886352854005 +1460419200,423.75,430,423.56,426.59,410.625825109012,419.328077241711,244.853606854948,417.596861915037,417.151367283929 +1460505600,426.78,427.68,423,424.75,410.684349520791,419.714007943946,245.033216438279,417.873309077963,417.422543663154 +1460592000,424.77,426.49,424.01,426.01,410.760254952136,420.162154615114,245.213904689555,418.171079156357,417.703092154826 +1460678400,426.01,432.49,426.01,431.48,410.900161446006,420.967755176371,245.3998738198,418.531104007781,418.011812740684 +1460764800,431.06,435.67,430.47,432.04,411.018130938194,421.755873969388,245.586216384595,418.944074003584,418.347259013253 +1460851200,432.52,433.49,426.37,428.51,411.127349774855,422.236630468176,245.768848531811,419.366515492918,418.692561623017 +1460937600,428.51,430.91,426.52,430.03,411.289919574937,422.791359982091,245.952815914707,419.806237204333,419.051318532733 +1461024000,430.04,439,428.54,437.76,411.580427024262,423.856822920451,246.144317299538,420.323197793185,419.450221702125 +1461110400,437.81,446.61,436.6,443.85,411.987932142458,425.279930776131,246.341707778976,420.95187958167,419.907348920535 +1461196800,443.82,454.5,442.01,452.26,412.560687312524,427.200363347028,246.547297774526,421.7397408575,420.447782034106 +1461283200,452.01,453.15,444.51,447.8,413.115091612373,428.666638798316,246.748229618455,422.613191157587,421.045554974901 +1461369600,447.79,454.95,445.67,453.69,413.797873273639,430.447793527248,246.954841460428,423.600421531609,421.71577741781 +1461456000,453.41,464.99,450.18,463.02,414.693905464623,432.766272612576,247.170562145091,424.753378814077,422.484991173812 +1461542400,463.33,471.58,455,461.77,415.516068222408,434.830748514771,247.384819445876,426.021905093902,423.337154463212 +1461628800,461.77,471.99,461.77,468.14,416.417140207664,437.201690224877,247.605222675226,427.42960983314,424.286051482115 +1461715200,468.14,470.17,443,444.85,417.007623215988,437.74609443239,247.802152984112,428.738309987512,425.231924585473 +1461801600,445.14,450.83,435,450.46,417.65735199646,438.651066104358,248.004487732602,430.002743654937,426.192643942892 +1461888000,450.52,457.49,445.8,455.32,418.316718612863,439.8375554091,248.211472720602,431.261842461435,427.18167205117 +1461974400,455.33,455.98,445.01,446.6,418.90662913172,440.318904020309,248.409544955956,432.430285555564,428.159937942654 +1462060800,446.79,452.99,445.69,451.11,419.597674489793,441.087010729863,248.611922244544,433.553033967002,429.141693494042 +1462147200,451.12,452.5,436,443.73,420.177709108297,441.275137848322,248.806729244469,434.564685698275,430.095065643556 +1462233600,443.99,452,440.1,450.39,420.822594373014,441.923930778024,249.007991129902,435.533767782001,431.044017509504 +1462320000,450.21,450.98,445.07,447.38,421.45364422048,442.312292014461,249.206046873182,436.433430067986,431.973974799888 +1462406400,447.22,451.68,445.51,448.4,422.100697088381,442.745613093089,249.404923250288,437.277021635154,432.886892540004 +1462492800,448.32,466,448,461.18,422.914672194228,444.05776677019,249.616360692862,438.177671572162,433.829032966216 +1462579200,461.36,463.05,458.3,460.2,423.743055577759,445.20676569248,249.826608597509,439.109005146963,434.790652896683 +1462665600,460.34,461.62,456.04,459.87,424.564292012824,446.250489951495,250.036317115572,440.054677950741,435.765218579672 +1462752000,459.88,465.4,457.8,461.56,425.404579174876,447.340215908002,250.247503565079,441.018582021346,436.754330995501 +1462838400,461.23,465,445.01,450.7,426.110178119364,447.579364249243,250.447636478991,441.895270136242,437.712007716822 +1462924800,450.7,454.68,450.01,452.28,426.810112092335,447.913953976377,250.649147060059,442.70628646586,438.643271607203 +1463011200,452.28,456.75,445.91,455.01,427.526928314606,448.419048229297,250.853182099362,443.479864368059,439.557160933168 +1463097600,455,457.66,452,455.76,428.236094752332,448.941574793809,251.05776223319,444.222438206899,440.45453406061 +1463184000,455.75,458.86,454,455.8,428.907337567506,449.429755274064,251.262178049275,444.933431725229,441.333557582387 +1463270400,455.8,460.67,454.31,457.89,429.611512947404,450.03195274786,251.468476443347,445.630365574604,442.200364649002 +1463356800,457.95,458.95,451,453.01,430.263631399048,450.243929184733,251.669696648139,446.267521492219,443.034292384291 +1463443200,453,454.91,451,453.24,430.902936062157,450.457188532981,251.870945586842,446.851978914134,443.83585572489 +1463529600,452.71,457,451.53,453.52,431.523970936696,450.675198459159,252.072273151053,447.3904498275,444.605836856631 +1463616000,453.52,454.71,433,434.55,431.875514952488,449.527412066315,252.254459952653,447.722442304422,445.272377274149 +1463702400,434.99,443.14,433,441.57,432.282965372934,448.961006058036,252.443473665888,447.94238305953,445.868264403199 +1463788800,441.57,442.16,435.3,440.81,432.658499664152,448.380820092257,252.631539878428,448.061668589375,446.39438526923 +1463875200,440.88,441,435.1,437.48,432.953607025457,447.604903255982,252.816093633628,448.068327825354,446.842109888634 +1463961600,437.4,444.4,436.51,443.51,433.281602418282,447.313429371234,253.006483515645,448.034400729948,447.239184091551 +1464048000,443.53,447.85,442.39,445.03,433.592424483138,447.150895609683,253.198200887976,447.980516950293,447.594154874683 +1464134400,445,450.51,442.5,449.09,433.948203183542,447.288920430844,253.39378037571,447.945778475924,447.924593286734 +1464220800,449.09,454.8,446.01,453.95,434.332859379529,447.763053912704,253.594016847444,447.969104432349,448.249690079766 +1464307200,453.58,482.31,453.58,472.01,434.916173053247,449.488943665782,253.812084608788,448.196121907166,448.636871436061 +1464393600,472.01,543,471,526.02,436.155105994331,454.93639941728,254.083858541595,449.055654673047,449.283353609766 +1464480000,527,570,512.11,531,437.44246846338,460.3505818201,254.360333194118,450.471172148867,450.183454347292 +1464566400,529.97,548.5,521.11,532.89,438.722691996906,465.51391406327,254.638418799536,452.348194741766,451.319348073794 +1464652800,533.14,546.5,518,530.69,439.981259673525,470.153126707162,254.914030270175,454.569648383755,452.658389400615 +1464739200,530.69,546.12,523.75,536.79,441.33071582281,474.896317720959,255.195456843488,457.107991223554,454.201284594004 +1464825600,536.91,544,532.37,538.8,442.732014331986,479.444961085459,255.478609234354,459.902468404796,455.93246506266 +1464912000,538.9,579.94,535.65,570.87,444.521639868612,485.95256568314,255.793497794882,463.160744328577,457.950489973995 +1464998400,570.82,593.89,560.1,572.87,446.329971986476,492.139320448513,256.110068780267,466.789705593881,460.230902542466 +1465084800,573.08,586.47,564.64,574.02,448.136474136897,497.96756064438,256.427471865926,470.702196176193,462.747124710357 +1465171200,574.01,588.6,573.93,585.34,450.090508345419,504.186702520739,256.755860006998,474.911979668963,465.512352513375 +1465257600,585.59,592.08,561.3,576.88,451.942962517018,509.360987842496,257.075473771305,479.256816155142,468.463024809225 +1465344000,577.23,585.15,570.62,583.05,453.878666710663,514.606147811889,257.400928594544,483.728537530036,471.595531421664 +1465430400,583.26,584.05,569.97,575.52,455.743241270808,518.941976040874,257.718540486956,488.200894065793,474.854147390336 +1465516800,575.52,582.43,572.5,580.09,457.693256283728,523.29447254052,258.040397987869,492.674617245288,478.233102525873 +1465603200,580.08,615,579.29,614.51,460.084018012616,529.787164180826,258.396299268424,497.408342701852,481.839384860651 +1465689600,614.51,685,601.34,672,463.211290019535,539.909827678854,258.809243558489,502.812034145845,485.857146254966 +1465776000,671.98,719,658,705.87,466.76060037776,551.722818881827,259.255591563495,509.012984242433,490.364131536637 +1465862400,705.87,705.88,656.51,684.5,470.009234980234,561.173855540606,259.680158002421,515.631487598172,495.221026015115 +1465948800,684.5,699.4,667.89,696.99,473.386730103031,570.841204623709,260.11677063892,522.64426564763,500.426903709397 +1466035200,698,779,697.31,769.5,477.661450866971,584.981673203316,260.625341755783,530.547616577658,506.206252022028 +1466121600,769.46,780,702.01,747.95,481.647960187335,596.581705812869,261.11188946963,538.929016618451,512.40710871783 +1466208000,747.7,789.78,720,757.6,485.738156345439,608.042935734163,261.607586026422,547.714669843061,519.006660326635 +1466294400,757.63,775,739,767.3,489.938269907297,619.378801881272,262.112472212184,556.840802615074,525.982716304541 +1466380800,767.31,767.77,721,743.9,493.847532921717,628.242180349654,262.593491623453,565.965864523201,533.18855608284 +1466467200,742.98,742.98,635.37,668.6,496.79380105241,631.11483685412,262.998850833409,574.360212238254,540.293077069325 +1466553600,669,688.32,588.88,605.85,498.936649013969,629.316493966618,263.341155373093,581.538383527452,547.041103365241 +1466640000,605.87,639,555.56,625.8,501.321609162211,629.066191067363,263.703036347581,587.82642724406,553.512800035655 +1466726400,625.8,679.99,625.79,665.5,504.1941176439,631.659537762491,264.104192724113,593.671009337743,559.857141265647 +1466812800,665.99,698,647.541,668.15325,507.09363042738,634.257148355419,264.507597603743,599.123171514465,566.071016743796 +1466899200,667.83475,669.86125,627.61425,639.4175,509.636631227302,634.624460510673,264.88190978521,603.956947743546,572.033539535532 +1466985600,632.50975,659.264,624.1025,657.24225,512.384316664797,636.234387425856,265.273644583165,608.394287397832,577.810875829395 +1467072000,657.57675,662.76175,637.4925,648.128,514.996770196815,637.080970908777,265.655888551767,612.388332401734,583.362536112862 +1467158400,647.235,648.07225,624.5985,639.65975,517.484572246192,637.264527567541,266.029296136791,615.909949737255,588.65476515709 +1467244800,638.96925,674.125,633.885,671.9135,520.354562257883,639.73083017986,266.434533237225,619.291287305014,593.811435231017 +1467331200,671.685,689.401,665.29025,676.41,523.268836404072,642.341641583329,266.843855077835,622.566858336996,598.841579138126 +1467417600,676.475,703.52,675.4825,702.4325,526.498806588326,646.618889382768,267.278749261372,625.952057665091,603.835227743862 +1467504000,702.92,704.3075,646.95,659.085,529.167303897876,647.506223090591,267.66993085324,629.023454841827,608.612934168985 +1467590400,659.7,682.665,646.91,679.30525,532.070367393503,649.769667505538,268.080909899922,631.98493744559,613.251374140436 +1467676800,679.8645,681.846,661.194,668.675,534.815989712491,651.115342936714,268.480865320649,634.738497300887,617.704729780564 +1467763200,668.7425,680.32,664.955,676.395,537.659126020832,652.914740721894,268.888129115569,637.363934700149,622.001073509919 +1467849600,676.83,680.8425,609.87225,639.6375,540.042040887081,651.969671036476,269.258287398682,639.543511488004,625.9987242035 +1467936000,639.8125,666.99075,636.265,665.939,542.740936238406,652.964003338314,269.65433568103,641.56481088432,629.807303646188 +1468022400,665.998,666.303,620.3325,652.645,545.249837200776,652.941296784227,270.036715741216,643.323500104146,633.378303287387 +1468108800,652.6425,654.3325,640.15625,650.315,547.709136021828,652.754357831498,270.416387745704,644.830796748714,636.709639313649 +1468195200,650.9325,661.54375,644.43375,650.4725,550.151032808869,652.591935931635,270.795837932398,646.119606462154,639.809703627987 +1468281600,650.5275,676.0775,647.38,666.26,552.774875728204,653.564824296012,271.190671603766,647.354006546747,642.746071271047 +1468368000,666.035,670.04375,653.545,654.6775,555.236791542895,653.6440241915,271.573547036992,648.432845503039,645.477833066202 +1468454400,653.735,664.579,647.67,660.68,557.754633646723,654.144842666003,271.962033135386,649.426269596054,648.03473669479 +1468540800,660.4825,669.49975,659.445,665.63,560.321967628494,654.962352437496,272.355073475235,650.383627286068,650.4406863414 +1468627200,665.85,668.6205,659.5025,664.425,562.859567005102,655.635900619866,272.746518322508,651.292620456476,652.694880778963 +1468713600,664.7935,684.435,663.1875,680.4525,565.584198571181,657.402338109446,273.153574296286,652.292520245476,654.862234773399 +1468800000,680.0625,683.965,667.7985,673.9675,568.203946831601,658.581440956545,273.553749202132,653.302502989141,656.917458125407 +1468886400,674.0925,675.915,666.464,673.3855,570.78860541157,659.635189074559,273.952943498959,654.307018597553,658.860125750808 +1468972800,673.35,674.9145,661.66,666.16275,573.256650498061,660.099818742693,274.344528003198,655.235913825538,660.665196398104 +1469059200,666.5475,668.06725,660.05025,665.785,575.695363913687,660.504488099446,274.735344399486,656.091301269401,662.336126191114 +1469145600,665.51475,668.04975,645.30375,651.52,577.935308446673,659.864975152469,275.111528345227,656.755502651359,663.82414176575 +1469232000,651.01,658.9925,649.04225,656.7495,580.213854004033,659.643216642253,275.492557869354,657.301882923685,665.158924160969 +1469318400,656.7945,666.222,652.92,662.4515,582.533574027591,659.843109340221,275.878899880705,657.795901911246,666.369993754861 +1469404800,661.565,663.69625,652.6315,655.1865,584.740466074017,659.5116533987,276.25760274862,658.179769020334,667.435861090573 +1469491200,655.60075,658.5325,644.695,651.765,586.88319231426,658.960249123979,276.632511472352,658.440118794469,668.351926304024 +1469577600,652.215,660.5375,647.785,656.35725,589.049572042195,658.774968491145,277.01163081363,658.636300207668,669.144808514866 +1469664000,656.68225,659.5,653.209,655.98,591.170200016717,658.57602354106,277.389994991451,658.774733751411,669.820562508468 +1469750400,656.3975,658.50975,652.89175,656.615,593.264407881351,658.436438521863,277.768615395938,658.869951362659,670.388993118817 +1469836800,656.72975,658.16175,652.9675,655.3175,595.312439553861,658.214433490138,278.145562352268,658.917575947218,670.852179148138 +1469923200,654.68,655.62975,619.6275,624.22,596.957127284072,655.7947207473,278.491085041527,658.656804514603,671.099886846863 +1470009600,624.125,628.249,602.4105,605.16775,598.334864042623,652.191109400635,278.817240884072,657.979871053602,671.077554982748 +1470096000,605.208,613.0565,470.91,537.445,598.841217109508,644.023518574674,279.075456311522,656.380971003195,670.552487507305 +1470182400,537.66975,573.585,519.86025,570.15,599.755813981434,638.765225498389,279.366066793457,654.320126300538,669.692915254648 +1470268800,569.729,593.76725,561.96925,582.82825,600.825537131213,634.783649736919,279.669045165227,652.006659851002,668.578401874322 +1470355200,583.33,585.12,567.9495,576.635,601.841414952039,630.644647720955,279.965537665599,649.451824148727,667.211444783655 +1470441600,576.755,593.0995,569.769,590.4845,603.005673403383,627.786061440268,280.275561565835,646.840227569408,665.670969456267 +1470528000,590.4795,600.992,580.7775,594.2525,604.200127100469,625.399153420362,280.589037929101,644.237084347107,663.991775446596 +1470614400,594.3775,596.582,587.06,592.56775,605.370788849578,623.062224780426,280.900519251786,641.648834897274,662.185636218206 +1470700800,592.58525,593.4625,582.86,585.5175,606.43102612616,620.389803455803,281.204650579998,639.034265551747,660.243541939443 +1470787200,585.6045,601.7725,582.3425,592.63275,607.569829853026,618.414065399449,281.515582167878,636.482154893607,658.21125517549 +1470873600,592.915,598.735,586.4575,587.285,608.610936750381,616.198308627343,281.820864095837,633.957260812315,656.083924342151 +1470960000,587.9625,590.67325,582.6825,587.7,609.638871636794,614.169808268456,282.126255566944,631.480172187261,653.879231046078 +1471046400,587.5445,589.82,583.33775,585.4425,610.609574365903,612.125007789437,282.429088232612,629.04431094452,651.603553555474 +1471132800,585.2025,585.495,562.2075,571.5025,611.368903248695,609.233510869136,282.717700773041,626.542916721567,649.218879460404 +1471219200,571.4975,574.2725,559.56475,567.01,612.060539224614,606.228055069231,283.001539823484,623.97039653528,646.726516362269 +1471305600,567.12,583.11575,564.8845,577.8325,612.875223718473,604.206868675262,283.29590073303,621.45515824017,644.185901124682 +1471392000,578.18525,580.13025,569.09775,573.3675,613.62138117538,602.011732421961,283.585509869543,618.970190018062,641.593869325374 +1471478400,573.46725,577.235,571.40025,573.805,614.370480083545,600.003986362742,283.875266661136,616.53538869233,638.966232985975 +1471564800,573.1075,576.70675,566.8,573.295,615.087273227814,598.102849381919,284.164224970994,614.158498613685,636.314016148251 +1471651200,573.3275,582.2875,571.6575,580.5275,615.868682074075,596.851841717044,284.460115752416,611.912322302572,633.676636238558 +1471737600,580.24025,583.7725,578.01975,580.055,616.621834175211,595.656247975087,284.755239368105,609.789015946506,631.061006958443 +1471824000,580.01,588.46575,577.855,584.98,617.41508943077,594.896316109227,285.054985478742,607.827724351701,628.493754529071 +1471910400,585.23,586.925,578.5575,581.9975,618.148477954312,593.97818256492,285.351454576171,605.990892673917,625.969197655173 +1471996800,582.3775,583.62075,577.01,579.34975,618.833473206605,592.936935482649,285.644984148487,604.249442804077,623.48324096931 +1472083200,579.1425,579.80925,570.07,576.05,619.452800326613,591.734928895697,285.934926170017,602.572991532449,621.02952940755 +1472169600,576.0925,580.4555,574.426,578.9,620.086029937958,590.821342822514,286.22742416801,600.989144010605,618.625349670495 +1472256000,578.6825,579.30875,566.51025,569.7975,620.59338471302,589.324872513755,286.510542146502,599.416483873707,616.241195600862 +1472342400,569.58,575.67625,568.6835,574.41075,621.102229771381,588.263290113647,286.797983353463,597.906503113049,613.901788711155 +1472428800,575.1475,577.6825,570.50525,573.388,621.551085824437,587.204471791176,287.084116458062,596.452300065555,611.608296477508 +1472515200,572.713,578.5975,571.9615,576.7675,621.988590031824,586.461571526429,287.373337997784,595.085770946873,609.378237867911 +1472601600,576.33,576.955,569.8875,573.8025,622.316449836011,585.560502923715,287.65931050419,593.777551961569,607.203444142664 +1472688000,573.805,574.63,568.48625,571.9525,622.548722227217,584.591889692121,287.943150443482,592.512620609582,605.080442962416 +1472774400,571.9325,576.655,568.329,575.325,622.737638958479,583.932275491431,288.230074118567,591.323390997509,603.025583275903 +1472860800,575.26325,603.02375,572.43525,599.23,623.126217543525,585.021162557031,288.540578215548,590.413373724609,601.13110318698 +1472947200,599.545,613.675,571.67425,608.2625,623.501712601332,586.675473413179,288.859790402905,589.81901232417,599.424629919499 +1473033600,609.40725,610.04225,599.29775,606.336,623.713465524879,588.074903314749,289.176760458426,589.472822010076,597.88934746122 +1473120000,606.76,612.55225,604.225,611.65775,623.945750578969,589.753522687925,289.498727314744,589.379797593365,596.536594546922 +1473206400,612.1795,617.23125,607.54,615.94125,624.18851759926,591.617556618697,289.82464938831,589.532884295382,595.372135835391 +1473292800,615.76325,630.642,613.685,627.61225,624.531530503534,594.179647211398,290.161898452283,589.988013708678,594.428432089178 +1473379200,626.60325,627.98625,617.6675,623.02,624.75298241354,596.232494162672,290.49422587632,590.647997477401,593.672935851055 +1473465600,622.94,626.14525,620.34025,623.31725,624.910671696757,598.160378292739,290.826518278856,591.473377235956,593.093620396631 +1473552000,623.277,630.665,593.3805,607.069,624.771703292729,598.794491094543,291.142256573441,592.28722951327,592.616335763407 +1473638400,607.26975,610.31775,604.05825,608.46675,624.611415171649,599.482959344274,291.459075154673,593.09664588875,592.239487524365 +1473724800,608.08675,611.84475,605.51025,609.74225,624.424448448026,600.213212323467,291.776850888893,593.906442064433,591.960775890494 +1473811200,608.95,612.56375,607.9575,610.07275,624.189008086985,600.915011015341,292.094639327093,594.712407304507,591.774157431354 +1473897600,609.18275,610.945,604.84775,607.0505,623.882688756894,601.351733129979,292.409093051896,595.482126922461,591.661093851233 +1473984000,607.77175,609.78,604.80675,607.385,623.518527936562,601.781179107673,292.723566791015,596.218265248624,591.617021332403 +1474070400,608.25325,608.651,604.01075,606.3,623.079872373811,602.102827312193,293.036643287583,596.911033287233,591.632143128418 +1474156800,606.79,611.12225,605.7125,610.09475,622.585374306763,602.67168977531,293.353195906803,597.594936848192,591.715699236341 +1474243200,610.3325,611.7125,605.86475,608.8775,621.929548409584,603.11341733299,293.668217168754,598.255112698289,591.856958871627 +1474329600,609.34475,609.9475,602.2275,602.2275,621.053462131345,603.050358024755,293.976284513815,598.83257337385,592.025370119159 +1474416000,602.04,602.1775,592.1705,596.93,620.056656929089,602.614712926932,294.278755228518,599.29119751961,592.197983606592 +1474502400,596.74875,597.972,593.81575,595.38075,619.055285866988,602.099801793597,294.579377174715,599.634698420152,592.367939797851 +1474588800,595.3325,603.02425,594.2575,602.4695,618.091820124825,602.126116791942,294.886776426615,599.941799485254,592.5615919516 +1474675200,602.32925,605.1105,599.7125,602.08225,617.050543287158,602.122994367928,295.193482136747,600.21295226323,592.774731686669 +1474761600,601.69,603.33725,597.9025,600.1595,616.070636171843,601.983233476077,295.497961945602,600.43556499514,592.997636362777 +1474848000,600.152,607.955,598.71,607.4075,615.230584806718,602.369331006789,295.809374204556,600.678976979952,593.256004472462 +1474934400,607.455,608.05475,600.79975,605.34375,614.448352128471,602.581049185369,296.118415087985,600.919555483438,593.538051790372 +1475020800,605.362,606.14725,602.29725,604.55725,613.806806972783,602.721714517973,296.426362177158,601.148924076137,593.837729873656 +1475107200,604.53225,607.176,603.1675,605.95725,613.360920570727,602.952018883482,296.735399578175,601.379190192783,594.157694807716 +1475193600,606.0025,609.715,604.18125,609.675,613.034529891073,603.430558497393,297.047840257262,601.640343105675,594.509052717708 +1475280000,609.675,616.19225,609.5475,614.26375,612.693389897827,604.201661552605,297.364550427926,601.964317269218,594.905136033238 +1475366400,614.235,614.73,606.95075,610.80925,612.245288426952,604.671987553779,297.677495400881,602.307309929714,595.327601119887 +1475452800,610.7945,613.72,609.18,613.0645,611.840533915961,605.269363865887,297.992379582236,602.682479905582,595.781126003462 +1475539200,613.097,613.1645,607.24275,609.865,611.432613575811,605.596479754387,298.303754982411,603.053219739524,596.249274993511 +1475625600,609.86225,614.06775,608.39725,612.2365,611.024242630722,606.069114240432,298.617187222717,603.437611000955,596.737992279394 +1475712000,612.1275,613.26175,609.9795,612.2315,610.623119320908,606.507750858778,298.930301538462,603.829866973533,597.243664642028 +1475798400,611.2955,619.00675,609.6905,617.25975,610.270872669279,607.273074668058,299.248123472525,604.268670159344,597.781929023168 +1475884800,617.28525,619.613,616.14,618.155,609.872849709825,608.047646581426,299.566521914056,604.749713161756,598.351362391379 +1475971200,617.95,618.435,614.2965,615.745,609.44328994036,608.595541699562,299.882196307046,605.240514127801,598.938063444664 +1476057600,615.34775,618.39,614.28475,617.7925,609.038550286747,609.250178206488,300.199599764585,605.752800145289,599.546080402355 +1476144000,617.91,642.86125,616.5975,641.11625,609.004416972447,611.518394854526,300.53997288952,606.479961018972,600.259381935786 +1476230400,640.3915,641.74875,632.173,635.2775,608.882348165672,613.209560247696,300.874176742741,607.327136763693,601.044273906925 +1476316800,635.16775,638.95625,631.6975,634.84075,608.788538151805,614.749261313801,301.207610871244,608.261948390326,601.89005613036 +1476403200,635.16075,641.1425,629.664,638.4425,608.756061593142,616.435738353776,301.544308104925,609.291912228465,602.801958775852 +1476489600,638.4425,642.165,635.219,637.50975,608.764967193496,617.935779663124,301.879737915259,610.383189724286,603.76739407699 +1476576000,637.33475,642.7625,636.7425,640.9375,608.784162385515,619.573034651429,302.218255115679,611.54510759448,604.791108860125 +1476662400,640.54275,641.64725,635.1725,638.8565,608.804029940745,620.945625456437,302.554356656349,612.737106428437,605.856423677112 +1476748800,638.8725,639.445,632.86525,635.755,608.786696281213,621.999751930023,302.887026076065,613.916736379138,606.944066446071 +1476835200,635.7575,637.989,624.7885,629.56,608.685236613036,622.537887933944,303.213178233461,615.022438765491,608.024637429943 +1476921600,629.275,630.794,625.21275,628.9975,608.560755422679,622.99768102432,303.538443155482,616.052900461679,609.092533200372 +1477008000,628.8225,633.91,628.32,631.265,608.484923932628,623.586146105827,303.865647216066,617.032156238972,610.153361502392 +1477094400,631.22725,660.3325,628.892,656.06075,608.711938251672,625.897677871289,304.217280812251,618.175172933084,611.29735302572 +1477180800,656.7375,661.335,648.60325,651.99325,608.886596664304,627.755152226019,304.564502320288,619.407870584355,612.497756816842 +1477267200,651.34,653.3925,644.24425,649.99,609.042840202756,629.337821474187,304.909377104187,620.686373961637,613.737678564296 +1477353600,650.0975,659.5175,647.7425,653.11975,609.234540444475,631.030611428162,305.257032323361,622.018564830885,615.020894812089 +1477440000,653.11975,678.1375,652.45575,674.357,609.726804628146,634.114569705003,305.625543832919,623.566998066783,616.419076560707 +1477526400,674.237,687.351,671.14225,685.677,610.387531743476,637.784766758667,306.004989370948,625.377804553574,617.95991655544 +1477612800,685.6175,690.131,680.77275,688.7125,611.120248811008,641.409786282044,306.387086728878,627.41505018419,619.636929652809 +1477699200,688.7125,721.9625,687.903,713.5875,612.190035582266,646.547372519006,306.793637940279,629.836011728431,621.526140010218 +1477785600,713.575,713.92475,691.69,698.44925,613.104968467527,650.241731313201,307.184669133632,632.420857786484,623.545205215115 +1477872000,698.2025,708.31225,683.8375,697.69475,614.016035136058,653.619421782315,307.574556622117,635.111662278357,625.672610695945 +1477958400,697.7125,737.6495,696.745,730.2385,615.350490294839,659.07314290291,307.996546710034,638.147708893382,628.014005635786 +1478044800,730.407,742.415,720.0625,742.415,616.871787670736,665.005389242244,308.430272567582,641.546799818069,630.58833589385 +1478131200,742.4175,747,672.69175,688.57725,617.743689082473,666.683226640666,308.809813474587,644.749765902563,633.162768345974 +1478217600,688.973,708.457,683.18025,705.4965,618.849065880573,669.445942841425,309.205867721336,647.909955733641,635.791464395392 +1478304000,705.4915,710.28525,697.227,705.8145,619.995175449703,672.034644936454,309.601844038279,651.010383938874,638.461084480863 +1478390400,705.70275,717.6395,701.37725,713.39925,621.282491361201,674.978964099877,310.004997667805,654.100412644782,641.186709991159 +1478476800,713.2775,713.45325,700.2525,706.23375,622.545625317636,677.203669616418,310.400594710447,657.093229342225,643.926227419824 +1478563200,705.4305,715.415,703.333,711.2375,623.972254094714,679.626186617344,310.800792559242,660.023454651622,646.687006000867 +1478649600,711.0375,743.2425,708.4655,721.585,625.599841364895,682.612801336069,311.210921851151,662.966307075602,649.495887629826 +1478736000,721.5925,722.9465,706.2075,713.0925,627.196128743547,684.782336394695,311.612162707278,665.820691991321,652.306105167133 +1478822400,712.99325,719.22175,711.9155,716.5675,628.753893441761,687.044794024155,312.016472422038,668.60766058855,655.12005543504 +1478908800,716.48,716.9275,700.9395,702.78,630.108045642805,688.16482087861,312.406612953164,671.195884352732,657.8747292849 +1478995200,702.6275,704.936,684.67925,702.0125,631.446398704974,689.150494184167,312.795597689391,673.591593252747,660.561865920938 +1479081600,702.34475,707.98,696.59275,706.641,632.813950281916,690.395462711544,313.1888151818,675.848223915455,663.1945387782 +1479168000,706.95225,716.6725,697.58275,711.82,634.242282659107,691.920454322342,313.586810826716,678.015699374464,665.786994247914 +1479254400,711.62,743.57,709.45,740.28825,636.033471628785,695.363258320772,314.012831973426,680.337191206363,668.440366106965 +1479340800,739.91,752.701,732.0075,735.395,637.770360994636,698.212704701083,314.433542329533,682.72302123481,671.120976807617 +1479427200,735.30725,751.9875,732.205,749.9355,639.68034853778,701.89431648368,314.868349964025,685.266855718814,673.87129668887 +1479513600,749.938,756.495,740.1575,751.11,641.614557953897,705.397472863281,315.303896111587,687.92884141798,676.679448041627 +1479600000,750.945,754.11475,713.0075,729.02925,643.273918873425,707.079575090112,315.716961860857,690.474134337093,679.446526253696 +1479686400,729.2925,739.35,727.7025,737.2625,645.04533488805,709.227985889244,316.137835326614,692.972596158584,682.196665348071 +1479772800,737.29975,750.7635,731,748.4975,646.972366125821,712.023177158615,316.569505677884,695.50805563335,684.963346796547 +1479859200,748.475,748.8625,731.79,741.5225,648.800539198213,714.122929384375,316.993781167298,697.99173722073,687.708376751648 +1479945600,741.64725,743.9925,728.5,737.5125,650.550920689214,715.787791429644,317.413629450813,700.376685405355,690.408087208693 +1480032000,738.15225,740.65,729.39875,740.21,652.330421897264,717.526156309384,317.835751754772,702.683108488999,693.066323074296 +1480118400,740.21125,740.8275,724.6975,733.54,654.011495943209,718.666016505944,318.250793243436,704.847330822249,695.651384632754 +1480204800,733.56,736.0825,726.5,728.71,655.615981575055,719.380943991247,318.66059805281,706.834102675277,698.141492099055 +1480291200,728.69875,734.88775,726.5025,731.6175,657.233960098351,720.251938076541,319.072896575286,708.682847165715,700.546295061002 +1480377600,732.08325,734.64,727.395,732.0125,658.846918521703,721.089051057329,319.485177826818,710.405470605247,702.865456880593 +1480464000,732.02,744.63725,730.01875,742.339,660.575853143028,722.601615526337,319.907357490805,712.098713781162,705.136497103095 +1480550400,741.945,755.345,741.215,753.00475,662.437232642798,724.765700770748,320.339764393747,713.845351134586,707.395208029388 +1480636800,753.38475,779.274,752.73075,771.92975,664.531168303888,728.12282248766,320.790634406943,715.784417949528,709.705574573893 +1480723200,772.29275,772.84975,757.26,764.73625,666.526800285594,730.728954374996,321.233872237587,717.802845934356,712.027315468457 +1480809600,765.54925,768.8175,760.1725,766.17,668.525037849172,733.251636500092,321.678099001222,719.881509206739,714.356110313086 +1480896000,766.1575,766.5175,745.3145,751.94725,670.339425596936,734.582384201301,322.107682171735,721.868805902931,716.628856032122 +1480982400,751.76725,760.2225,750.55525,758.86325,672.21293766281,736.310688348428,322.543741417747,723.823543572756,718.867852400167 +1481068800,758.7975,769.6225,752.01475,764.42775,674.135351562793,738.312051671314,322.984920928212,725.782700718984,721.088526971877 +1481155200,764.442,774.19725,762.12525,767.687,676.071346592463,740.402950959627,323.4289140163,727.756732698743,723.296359498118 +1481241600,767.826,773.88975,765.94,771.142,678.02827390463,742.590946493875,323.875913310836,729.75580465481,725.497151520959 +1481328000,771.6045,776.41375,769.62225,773.735,679.984403947292,744.80777011455,324.325055184697,731.780611118373,727.692982741904 +1481414400,773.88525,773.89275,764.0775,770.61025,681.852127918756,746.644382258528,324.770628864559,733.782072509783,729.86418292816 +1481500800,770.52125,781.26575,769.578,778.3885,683.752170583541,748.903918256722,325.223523530215,735.814267001574,732.03402012117 +1481587200,778.5315,790.8625,769.03025,777.3975,685.611332405401,750.932082157535,325.674976603215,737.845610574896,734.190673992239 +1481673600,777.435,781.3065,772.6375,777.29725,687.456415441358,752.808746247672,326.125878852724,739.857827020986,736.326742734762 +1481760000,777.2825,780.207,774.1715,776.265,689.265760593167,754.478354776968,326.575300314582,741.82798912263,738.432012114212 +1481846400,776.465,783.97975,774.235,782.5475,691.135788335247,756.476307424023,327.030545555269,743.800832579974,740.524875227132 +1481932800,782.515,792.245,781.915,789.86225,693.081188055175,758.852707981078,327.492639364569,745.822061387579,742.626106229618 +1482019200,789.91475,791.9175,784.85,790.95525,695.051818811808,761.137756503014,327.955363074203,747.87507206081,744.731186282874 +1482105600,790.16025,793.7025,787.9025,791.135,697.032136804183,763.272950559438,328.417804261273,749.938035510376,746.832517533092 +1482192000,790.9765,802.32725,788.4475,799.95225,699.142979005965,765.883771189247,328.888586937038,752.067576105055,748.955779929774 +1482278400,799.69725,832.3025,797.266,831.745,701.640022966074,770.571752080547,329.390641643342,754.508319990599,751.211149179679 +1482364800,831.47475,875.026,828.1425,858.6175,704.462678428672,776.838819841955,329.919024752393,757.416294187827,753.680354258743 +1482451200,858.4875,921.225,857.94,916.14,707.99719871106,786.75423263501,330.504311112299,761.180783016729,756.553110775001 +1482537600,916.2675,919.98725,882.35,894.18,711.249026958577,794.400763890711,331.06708812992,765.427536623925,759.701331572626 +1482624000,894.18475,898.261,856.0595,895.14225,714.500045561282,801.571510176034,331.630263983642,770.042651181384,763.093340677717 +1482710400,895.0725,912.59,890.795,901.61775,717.820273857821,808.692769056412,332.199342735458,774.976895350697,766.720054319799 +1482796800,902.57225,939.9925,896.715,930.2575,721.483618455386,817.345707150797,332.796447405297,780.378612491507,770.655973240798 +1482883200,931.261,981.34,930.32,979.65775,725.759668367647,828.899025681968,333.442277413341,786.545271336975,775.046493695691 +1482969600,980.1475,984.23,950.2,972.0525,729.936362328691,839.088643523057,334.07986949612,793.222185800281,779.807664128802 +1483056000,972.1025,972.685,927.80425,961.29225,733.964583322912,847.787056570558,334.706081908458,800.168142855295,784.849357045598 +1483142400,961.4425,971.504,945.78075,970.4175,738.081987857027,856.515851733806,335.340779808322,807.354278126907,790.163141914825 +1483228800,970.7525,1004.635,962.8175,996.34775,742.489580186958,866.469040869553,336.000732931447,814.900043842429,795.803737945775 +1483315200,997.19425,1034.30525,993.1375,1015.50275,747.114234326827,877.077211916143,336.679151614694,822.842032985776,801.794392497314 +1483401600,1015.79675,1038.522,1007.69,1032.2975,751.923802134662,888.125741644766,337.373660934901,831.186521244777,808.146141448003 +1483488000,1032.63475,1148.1075,1019.7025,1130.39975,757.926875812761,905.370726928772,338.165422698088,840.638074738763,815.174758903866 +1483574400,1130.46475,1158.945,880.855,1005.6425,762.342583889863,912.508039192493,338.831835612996,849.840199281963,822.325033918612 +1483660800,1005.245,1036.0615,873.3735,894.70325,765.342004044796,911.240700076366,339.386820798515,857.798529349217,829.140683177386 +1483747200,895.43,909.6195,809.835,907.65,768.475242795356,910.985115210302,339.954177992588,864.776725145853,835.673310738519 +1483833600,908.811,943.927,890.115,915.99975,771.682234990334,911.342055287119,340.529305171956,870.960430531705,841.953842263332 +1483920000,914.73525,916.81475,879.98,901.73,774.68267100075,910.657872311401,341.089611141414,876.313701284658,847.926108333858 +1484006400,901.708,914.56175,896.725,906.91425,777.730439401015,910.391402490279,341.654533682923,880.982320216928,853.613343201005 +1484092800,907.03475,922.7475,761.3855,785.9935,779.236403820446,901.536800164715,342.09816423717,884.001994428089,858.561673819266 +1484179200,784.3,835.78475,748.49525,808.3385,781.003086346792,894.902975406764,342.563661243388,885.832160020269,862.899619677727 +1484265600,808.89475,834.8,778.1425,829.5125,783.005117362275,890.248502589976,343.049833736919,886.850950710073,866.742655957263 +1484352000,829.8175,843.0015,814.585,822.65275,784.891878444905,885.437058859015,343.528672019602,887.134122997857,870.092445196322 +1484438400,823.69225,830.2575,812.7325,827.50975,786.804238830507,881.313811814903,344.011881483874,886.851648596464,872.996616982934 +1484524800,827.24275,839.22,822.19875,833.5115,788.762746201033,877.911258774295,344.500600690443,886.158147563152,875.504756915407 +1484611200,833.9535,912.1225,831.03,906.14325,791.600729992255,879.920802746968,345.061347909772,885.7603769861,877.9153438883 +1484697600,906.875,916.645,851.31025,888.24775,794.168535088547,880.513512149904,345.603668306779,885.454637620695,880.159990730419 +1484784000,888.2655,908.7425,883.6775,902.2675,796.852930128802,882.061953944755,346.159444646248,885.348451673093,882.297272491275 +1484870400,902.6045,905.1685,885.0025,896.68225,799.455032562011,883.102621872909,346.70908975005,885.359071309343,884.307155334435 +1484956800,896.17725,928.76275,894.783,924.1545,802.376461899939,886.024681234491,347.28561453589,885.703184604304,886.296624357561 +1485043200,924.1545,941.0775,893.0675,926.2425,805.293820635597,888.887372521413,347.863648387192,886.336735419793,888.267787310172 +1485129600,925.8625,928.8725,912.958,915.347,808.050212490108,890.770760217791,348.43022699696,887.10873801814,890.173612489239 +1485216000,915.4625,925.2725,881.5165,885.91375,810.409024870346,890.425039806845,348.966853607011,887.733526850227,891.901309966248 +1485302400,885.345,903.58375,885.096,895.325,812.865298367234,890.773817383098,349.512340691591,888.313161039788,893.49504017562 +1485388800,895.465,920.9525,894.84325,916.094,815.558278717341,892.576099764032,350.078019046628,889.030178870434,895.038604824111 +1485475200,916.34,924.8075,909.745,920.98975,818.283132497449,894.598574166097,350.648020569853,889.89634499435,896.548927999167 +1485561600,920.865,923.2775,917.67,920.80725,820.958147550058,896.464099205854,351.217270791272,890.876148549367,898.022443450808 +1485648000,921.33225,923.5525,914.038,914.968,823.499778873685,897.781200858887,351.780122729577,891.890491553911,899.434665653506 +1485734400,915.325,923.985,912.925,921.45,826.045386412386,899.465938299976,352.348884379013,892.980516340405,900.809950932789 +1485820800,921.47,972.23725,920.358,968.74725,829.151513829446,904.397359581336,352.964300017312,894.53225352794,902.324854160594 +1485907200,968.354,989.8375,963.38975,988.48725,832.457826757697,910.382850689724,353.598809749543,896.621070028709,904.036327558068 +1485993600,988.6075,1012.39025,976.33625,1008.7165,835.952639685254,917.382207933163,354.252882982038,899.308556012756,905.997586271392 +1486080000,1008.2825,1027.16475,989.77275,1016.8025,839.465708011033,924.458912055342,354.914376292539,902.53523047199,908.210521261752 +1486166400,1016.70775,1044.20525,1003.1515,1032.77575,843.121693409763,932.168869425704,355.591156948112,906.315681070794,910.705696800952 +1486252800,1033.6535,1034.9725,1003,1014.2965,846.500253835273,938.014687515226,356.248812113594,910.359288581631,913.379910244117 +1486339200,1013.4025,1029.4175,1010.8475,1024.3925,849.948330064254,944.163032173728,356.915890576305,914.671714177548,916.245965804456 +1486425600,1024.77,1056.2325,1022.51575,1053.212,853.754574123925,951.925102311449,357.611076576993,919.417151286695,919.385559813871 +1486512000,1054.016,1070.29,1022.6175,1054.2095,857.533113750504,959.205672542227,358.306564409699,924.486422888243,922.767345731982 +1486598400,1054.08675,1078.3975,931.739,989.33,860.434497235624,961.349912393735,358.936581801137,929.217420695665,926.11295744527 +1486684800,988.85525,1009.4425,953.7995,1000.464,863.477775043588,964.134040454961,359.577086428627,933.725476194572,929.454881795579 +1486771200,999.316,1020.702,992.93275,1013.906,866.749797069908,967.676792381745,360.230372141995,938.12735085497,932.831573043058 +1486857600,1013.45225,1014.63375,1000.8525,1004.87925,869.852353334642,970.324851240849,360.873993252583,942.325784501474,936.193236254523 +1486944000,1004.88075,1013.595,983.1975,1000.24275,872.86961271754,972.454397564586,361.512342660187,946.280473403576,939.510945848033 +1487030400,1000.9045,1020.745,991.671,1013.098,876.015766854532,975.347395994942,362.162889490912,950.111578909856,942.824455397391 +1487116800,1012.7425,1016.3425,1003.983,1013.87,879.155738572328,978.089422445401,362.813557581172,953.81456834142,946.124524548395 +1487203200,1014.12975,1043.665,1013.395,1036.4605,882.542863622722,982.244256801238,363.486130524547,957.575435624651,949.485142188294 +1487289600,1036.173,1064.37575,1034.6495,1056.14375,886.143313258126,987.504398742835,364.177683836151,961.521563418228,952.962799111316 +1487376000,1056.1975,1070.4535,1051.645,1059.32475,889.77501952444,992.616548035821,364.871722625504,965.613488937453,956.546423885879 +1487462400,1059.3175,1063.72,1045.158,1055.5025,893.333052642397,997.092749686816,365.561252326413,969.756944823792,960.199040000692 +1487548800,1055.4995,1090.86175,1047.31775,1086.9075,897.272388358997,1003.48573446448,366.281448527776,974.178463373692,964.019582380946 +1487635200,1086.945,1131.78525,1079.655,1128.767,901.69175540327,1012.4032142849,367.042718444319,979.152383268684,968.137419103911 +1487721600,1128.49025,1140.74975,1103.9025,1128.23475,906.046616178607,1020.64806540365,367.802696903211,984.533159060377,972.509712912906 +1487808000,1127.633,1194.585,1124.293,1184.5075,911.043618633597,1032.31152677717,368.618099629325,990.688599513949,977.310819614588 +1487894400,1182.03525,1217.57325,1089.6595,1183.9425,915.95599143367,1043.10457023891,369.432124153497,997.423252721963,982.484015799036 +1487980800,1181.3135,1186.4775,1120.98575,1151.451,920.437219428451,1050.81663394516,370.212896252327,1004.29531863252,987.855432300808 +1488067200,1151.5785,1185.6825,1131.8025,1178.2475,925.211989445616,1059.88712163289,371.01964260204,1011.45267433624,993.489122777528 +1488153600,1178.6,1198.75025,1169.9125,1193.79025,930.169375752075,1069.41830285142,371.84110146171,1018.91722484369,999.400207009207 +1488240000,1194.205,1212.0975,1178.2195,1190.3725,935.086487303041,1078.02778334843,372.658327871115,1026.54042687412,1005.52987149547 +1488326400,1190.2695,1230.2495,1160.45225,1227.5725,940.421488035027,1088.67232774452,373.511879048853,1034.54983390603,1011.97686200889 +1488412800,1228.9025,1287.33625,1215.69525,1260.105,946.123545471168,1100.87484971671,374.397058669491,1043.08896402795,1018.81270442771 +1488499200,1260.245,1293.585,1251.1345,1285.79225,952.132789532118,1114.0372102534,375.30700081843,1052.21213343916,1026.07552518296 +1488585600,1286.355,1288.06375,1232.47975,1266.309,957.871360053347,1124.87586682732,376.196582288199,1061.56849119691,1033.6280200493 +1488672000,1267.1425,1276.6785,1242.52375,1273.486,963.664586650421,1135.45388787471,377.092441152432,1071.09785079698,1041.44414174313 +1488758400,1272.6525,1285.4725,1262.7885,1281.84,969.53558306316,1145.87360382576,377.995746267245,1080.75937668333,1049.50350678593 +1488844800,1281.816,1284.6025,1143.347,1232.90425,974.753036209815,1152.0684169744,378.849291785625,1090.02307595964,1057.5702039171 +1488931200,1235.48125,1243.8975,1138.713,1148.76175,978.860773158184,1151.83304949235,379.617976768151,1098.15201421169,1065.29540169811 +1489017600,1148.5845,1210.0415,1126.6575,1193.146,983.468920510481,1154.77369190125,380.430207779158,1105.6608133107,1072.84657079664 +1489104000,1192.67275,1336.4955,969.965,1111.57,986.983942133207,1151.6984671336,381.160181911167,1111.88931437565,1079.90193843846 +1489190400,1110.08075,1201.452,1106.8855,1180.55975,991.299826931554,1153.75280388102,381.958306992105,1117.60708146341,1086.73754150621 +1489276800,1180.5375,1238.868,1158.825,1229.79725,996.173904417933,1159.16562287532,382.8047942208,1123.28088959312,1093.53218687345 +1489363200,1229.62975,1247.2695,1204.8475,1241.2,1001.17126170456,1165.00480321457,383.661820882357,1128.96805835233,1100.30675844347 +1489449600,1241.20025,1260.0505,1221.7275,1246.46875,1006.20090407963,1170.8033805074,384.523252233618,1134.6626016506,1107.0572765662 +1489536000,1246.84425,1262.1375,1240.70575,1258.75,1011.35890227106,1177.06339233956,385.396085196848,1140.42015231748,1113.80667197603 +1489622400,1259.25,1263.815,1101.1325,1172.03,1015.36776441885,1176.70511710643,386.181464976853,1145.43009362533,1120.20207323168 +1489708800,1171.875,1172.1825,1044.64,1058.0875,1017.8936009713,1168.26195361848,386.85229978837,1148.79667019622,1125.81914841798 +1489795200,1059.44725,1093.16975,934.00025,964.872,1019.20341037906,1153.7847227307,387.429397948578,1149.97633871255,1130.35085429966 +1489881600,963.87475,1056.6545,959.9965,1016.50675,1021.11472205858,1144.01332118569,388.05747235913,1149.79303011515,1134.06734796004 +1489968000,1012.5125,1049.0695,983.255,1038.135,1023.25190451003,1136.4769366468,388.706513464575,1148.676968582,1137.10558202647 +1490054400,1038.64975,1118.074,1037.30225,1113.247,1026.28651487238,1134.82343729563,389.429898812208,1147.45251229296,1139.79539592109 +1490140800,1113.1525,1114.17,984.724,1035.5275,1028.28650273784,1127.7555847057,390.074966336418,1145.4776004569,1141.86276545535 +1490227200,1035.8975,1054.315,1011.91,1027.955,1030.14387380852,1120.65181147691,390.711829394418,1142.83690624832,1143.32421058463 +1490313600,1028.493,1032.3225,919.0825,930.5155,1030.72552071826,1107.11797053527,391.250772453048,1138.82896762719,1143.85777157632 +1490400000,930.14675,968.9875,888.84775,959.43725,1031.60965125421,1096.60610477777,391.818053067753,1133.98087881253,1143.64954287269 +1490486400,959.4425,999.14225,938.18875,965.52375,1032.49394308226,1087.27570530784,392.390844102521,1128.53613316051,1142.78636522452 +1490572800,964.7975,1044.87425,955.56325,1041.71525,1034.25437543611,1084.0327268858,393.039133286929,1123.30624819538,1141.61490541749 +1490659200,1041.58525,1067.6075,1016.57425,1044.42525,1035.97013090765,1081.21347953579,393.689480895155,1118.32176536272,1140.17603238568 +1490745600,1044.1775,1058.385,1007.957,1040.9225,1037.54875961153,1078.34558068898,394.33568202708,1113.55198173564,1138.48468894003 +1490832000,1040.88775,1052.615,1021.0125,1039.4475,1038.98726835441,1075.57682793002,394.979765339715,1108.98731167139,1136.56315814882 +1490918400,1039.46775,1088.77475,1037.81025,1080.825,1040.79510034167,1075.95039111466,395.664517127527,1104.98854496965,1134.59452090485 +1491004800,1081.145,1107.1495,1069.1925,1089.414,1042.5806554592,1076.90872642546,396.357160561764,1101.5641596293,1132.62265102361 +1491091200,1090.487,1112.77625,1077.235,1101.72725,1044.39757787281,1078.67530087858,397.061406075769,1098.74836023329,1130.70176801441 +1491177600,1101.12275,1160.895,1100.77525,1149.6445,1046.80907885589,1083.72686543878,397.812789322307,1096.87181302729,1129.01573965925 +1491264000,1150.35425,1163.097,1123.9075,1144.5045,1049.09503421992,1088.0529977413,398.558290578263,1095.73976795046,1127.531554455 +1491350400,1144.50225,1146.47575,1113.54225,1135.115,1051.18200676454,1091.40285578796,399.293672991251,1095.14883409964,1126.20219814312 +1491436800,1135.1975,1205.7335,1135.0625,1192.62,1053.88347716012,1098.60745926266,400.085734513711,1095.50529189426,1125.23668170732 +1491523200,1192.63,1204,1175.70825,1192.8,1056.4969834332,1105.31205374189,400.877184950462,1096.63963435785,1124.6083957487 +1491609600,1193.38575,1199.57475,1168.62,1183.875,1059.00683045698,1110.90413875871,401.658934427767,1098.32697468583,1124.25733677568 +1491696000,1183.87975,1218.84,1176.518,1209.5625,1061.8336415033,1117.92660889202,402.465549948218,1100.67673638133,1124.25826275687 +1491782400,1208.9825,1218.87,1197.06225,1210.28,1064.62716529919,1124.50029329753,403.272076495227,1103.55735535207,1124.58395244057 +1491868800,1210.98,1232.5605,1199.16125,1222.55975,1067.52496586112,1131.48013360013,404.090057973865,1106.95595865632,1125.25193496986 +1491955200,1222.56225,1227.33525,1209.70875,1215.90225,1070.32306700344,1137.48927244604,404.900575889226,1110.69377029102,1126.20544407448 +1492041600,1215.89375,1219.98,1148.585,1175.4925,1072.62454749698,1140.19432984927,405.669939254372,1114.32900094481,1127.26400371 +1492128000,1175.84725,1195.248,1162.80075,1176.89275,1074.96870791691,1142.80651148502,406.439932500328,1117.8605183609,1128.41997235894 +1492214400,1176.54,1194.0525,1101.26425,1175.4995,1077.63787501767,1145.13358779692,407.207765951908,1121.26413851945,1129.65544132686 +1492300800,1176.265,1186.6375,1165.8025,1174.827,1080.49189123306,1147.24715524045,407.974161366368,1124.52730179704,1130.95644613198 +1492387200,1174.736,1199.3665,1170.4775,1189.44,1083.50773543863,1150.25042823663,408.754381309695,1127.77302898763,1132.36768450497 +1492473600,1190.437,1210.98,1189.155,1202.68775,1086.69758290273,1153.98289978106,409.547048906027,1131.09087662032,1133.92448194419 +1492560000,1202.712,1212.33075,1191.8425,1208.46,1090.00699600833,1157.86056209395,410.344688145787,1134.48927473992,1135.63038114921 +1492646400,1209.6625,1244.672,1207.6525,1237.66675,1093.72773358773,1163.54114064778,411.170691203504,1138.17704762226,1137.57655586047 +1492732800,1237.85075,1255.5,1235.3275,1248.14975,1097.71391520415,1169.5635540015,412.006335861961,1142.16162938284,1139.77481431516 +1492819200,1248.14125,1250.28375,1214.6275,1240.837,1101.48584042201,1174.63677475568,412.833845116789,1146.29273042453,1142.16780703487 +1492905600,1240.42425,1249.6175,1230.77,1246.07,1105.22067587963,1179.72136854471,413.665752838665,1150.55389712258,1144.74970156662 +1492992000,1246.515,1258.6415,1238.65425,1254.399,1108.99079318361,1185.03689811486,414.505145700163,1154.9572329849,1147.52613938285 +1493078400,1254.5575,1282.4675,1252.4025,1277.1975,1112.94521076856,1191.59685984606,415.366462659273,1159.63655158618,1150.55618857227 +1493164800,1277.87225,1319.68775,1273.09775,1292.96525,1116.97615762021,1198.81222895782,416.242662286016,1164.63877523491,1153.86638719594 +1493251200,1292.7275,1354.3715,1290.99275,1340.1325,1121.43219927908,1208.8713599847,417.165079161055,1170.27115573352,1157.59853241553 +1493337600,1340.57575,1362.8075,1297.835,1339.9675,1125.86241315266,1218.20274068337,418.086410352893,1176.37184340191,1161.7020318369 +1493424000,1339.25,1351.65725,1323.635,1346.359,1130.30069114397,1227.32486162804,419.013202992419,1182.86031692631,1166.15395150522 +1493510400,1347.18925,1366.5875,1321.0175,1362.02675,1134.88472795889,1236.91289832448,419.954713087716,1189.74717070079,1170.96702141943 +1493596800,1360.16525,1452.641,1347.69,1416.3535,1140.06682425944,1249.68542211378,420.949523310534,1197.3718739664,1176.29751274368 +1493683200,1416.35425,1483.95975,1404.264,1459.97,1145.76472303873,1264.65341011927,421.986887271134,1205.91473893058,1182.24601094596 +1493769600,1459.74525,1527.10425,1443.98425,1516.94225,1152.15928868406,1282.61124786092,423.080096940476,1215.63162652236,1188.95265061984 +1493856000,1516.9495,1639.1525,1463.0025,1546.50875,1158.89755824948,1301.39538641449,424.201734505023,1226.48596622528,1196.43929669998 +1493942400,1546.062,1615.90775,1510.67125,1532.79025,1165.36211511705,1317.86599770464,425.30855559172,1238.06365101457,1204.55955313313 +1494028800,1532.02325,1584.11475,1529.23125,1564.9555,1172.12309526114,1335.45374828443,426.446385590705,1250.41439919994,1213.35034841093 +1494115200,1563.9855,1588.91825,1503.2525,1567.7285,1178.84022724655,1351.98698972611,427.585848152731,1263.31834209444,1222.73194560797 +1494201600,1568.2035,1682.68975,1562.633,1679.74725,1186.88301099454,1375.31685867688,428.836013226733,1277.53421533542,1233.04169921197 +1494288000,1679.36375,1775.69525,1641.746,1720.49225,1195.34393612175,1399.8863310036,430.125610168828,1293.05873876102,1244.31562557671 +1494374400,1720.44025,1796.0525,1689.075,1785.7075,1204.48961384549,1427.34895659341,431.479030846959,1310.08943995714,1256.67544439681 +1494460800,1786.18225,1887.904,1761.07725,1834.13475,1214.07078310744,1456.3038373446,432.879450304345,1328.63067447386,1270.16502936947 +1494547200,1833.23275,1836.64275,1649.4675,1694.987,1221.79958477486,1473.29322739711,434.139545668998,1347.05142920143,1284.11192124507 +1494633600,1694.6795,1789.03075,1605.45525,1783.725,1230.55080889117,1495.38966021947,435.486979471779,1365.98094106584,1298.75967026975 +1494720000,1783.8025,1819.8925,1756.0025,1791.51,1239.33492712977,1516.46740989835,436.840840577309,1385.23266111834,1314.02277094402 +1494806400,1791.0425,1794.04,1687.775,1733.9275,1247.33748164099,1531.94614853449,438.135859284301,1404.08524647967,1329.57381787671 +1494892800,1734.075,1772.2555,1683.3425,1758.605,1255.62879367728,1548.07965201903,439.454223193766,1422.65982243101,1345.422792739 +1494979200,1758.51275,1849.445,1732.11575,1811.2115,1264.509746774,1566.80929155813,440.823793470363,1441.29988001738,1361.68317126923 +1495065600,1810.2125,2066.5875,1798.888,1893.425,1274.35300925505,1590.05769168096,442.27407878676,1460.54338497495,1378.5690318595 +1495152000,1893.25525,1971.8035,1877.97375,1965.25825,1285.09467592857,1616.7643456497,443.79463485589,1480.73796532923,1396.23469029847 +1495238400,1965.52825,2042.86925,1951.5125,2039.82475,1296.81103766242,1646.87764792589,445.388120411399,1502.18501779914,1414.82871858714 +1495324800,2039.0985,2088.01675,1980.3725,2027.914,1308.27871687936,1673.9996918001,446.96812326123,1524.37409744941,1434.15698814563 +1495411200,2026.94175,2243.633,1968.65,2102.6455,1320.59152183889,1704.51056130955,448.621160982374,1547.62785167827,1454.36628898292 +1495497600,2099.843,2267.9995,2092.47275,2257.54175,1334.77741544774,1743.87514183269,450.427197599298,1572.89551948218,1475.89032817315 +1495584000,2258.45875,2477.54,2256.08425,2426.00125,1350.976856096,1792.42865682606,452.399621983066,1601.05787183916,1499.17219104243 +1495670400,2424.485,2766.83425,2218.6875,2309.3925,1365.58400652205,1829.2259754011,454.253654247072,1630.35014427782,1523.53415348571 +1495756800,2307.305,2621.17575,2049.39,2255.89975,1379.40003586616,1859.59647619886,456.052427968496,1659.85633574868,1548.59037946861 +1495843200,2256.07925,2331.3475,1871.6825,2061.69,1390.63354516227,1873.981427633,457.65550566367,1687.60454891751,1573.45382938984 +1495929600,2058.6665,2312.735,2057.9915,2194.89325,1403.40908598359,1896.82382699623,459.389973720268,1714.81812203878,1598.55001563626 +1496016000,2192.41325,2343.5725,2113.20025,2275.28825,1417.08336400683,1923.76280179394,461.202976899888,1742.05159179393,1624.06797396501 +1496102400,2278.265,2328.9025,2139.13,2187.87925,1429.53846600327,1942.5625248575,462.926900323461,1768.31037530605,1649.54539937829 +1496188800,2187.16125,2333.38475,2159.515,2299.05525,1443.21284539777,1967.93756133241,464.76010132356,1794.5013814652,1675.30936023433 +1496275200,2299.13525,2464.875,2297.52775,2411.24,1458.13213771664,1999.4916850417,466.703477938574,1821.38002190044,1701.66184345348 +1496361600,2411.47025,2487.42,2373.906,2484.78825,1473.86980595107,2034.03493703105,468.718345266927,1849.22781943226,1728.73103497137 +1496448000,2484.3505,2590.45075,2451.19225,2548.40475,1490.25436544019,2070.64761337799,470.794716016129,1878.18214463783,1756.59401022415 +1496534400,2547.7505,2565.34,2473.2525,2523.05775,1506.27732871024,2102.85002007175,472.843707115814,1907.57737848738,1784.9823424565 +1496620800,2523.6295,2697.48075,2519.335,2693.8575,1524.4065140597,2144.91774067988,475.06117993413,1938.55774979163,1814.38914944453 +1496707200,2694.10725,2932.457,2686.12225,2874.815,1544.67253264565,2196.87159070805,477.457107813416,1972.13871277399,1845.30013451217 +1496793600,2874.7825,2887.065,2614.87,2687.16775,1562.48256034451,2231.77071219944,479.66329550171,2005.94669613539,1876.76206835489 +1496880000,2688.3155,2814.3055,2612.8,2804.34025,1581.67609536103,2272.52602607101,481.98426621089,2040.66211206402,1909.05177435874 +1496966400,2803.88975,2862.31725,2788.5125,2814.29675,1600.86149365973,2311.08909036704,484.312860275993,2075.91002960488,1942.01453535191 +1497052800,2813.21075,2916.726,2798.03525,2887.79475,1620.87828475197,2352.13881204825,486.712510281254,2111.92669340229,1975.74619791283 +1497139200,2887.5385,2964.112,2846.04575,2959.51975,1641.75472552865,2395.37199008445,489.181375110722,2148.88448692923,2010.3248604016 +1497225600,2959.5215,2975.7475,2453.48,2647.128,1658.74641632061,2413.2919011621,491.335881309378,2183.59650092279,2044.36824882172 +1497312000,2644.268,2783.201,2634.1625,2709.5225,1676.52845640626,2434.3774990449,493.550531460881,2216.70024149631,2078.02893624478 +1497398400,2710.2675,2806.47575,2327.4075,2448.614,1691.08310418051,2435.39084856239,495.502477960925,2245.93920971732,2110.22708486891 +1497484800,2449.948,2515.58525,2076.18475,2419.93925,1705.40348615885,2434.29100879158,497.42384659278,2271.49801708326,2140.8571725821 +1497571200,2419.955,2524.8075,2303.65525,2480.01325,1720.56764380223,2437.54550308151,499.403275142942,2294.32756616182,2170.16371105262 +1497657600,2480.019,2674.1325,2421.42525,2636.35575,1737.59943745368,2451.69675193274,501.536820662656,2316.06596591722,2198.73895774761 +1497744000,2637.5195,2667.2045,2458.55525,2512.4655,1753.10490748654,2456.02225169749,503.544543307284,2335.64776483024,2226.06933728317 +1497830400,2513.206,2595.4975,2484.7055,2593.707,1769.44030472809,2465.82260739569,505.631373406418,2353.98838117373,2252.46427714336 +1497916800,2593.70975,2778.4875,2583.7725,2726.08,1787.34259671588,2484.34764413399,507.848281959492,2372.29366939001,2278.40351549373 +1498003200,2724.595,2776.38575,2581.695,2647.6145,1804.26544248198,2495.96892594581,509.984636736423,2389.73333462203,2303.53153613928 +1498089600,2648.01725,2731.74,2594.03925,2692.00925,1821.79299899257,2509.92301258654,512.163182535783,2406.69387990979,2327.9900688385 +1498176000,2691.9925,2735.585,2663.703,2682.11,1839.29504278987,2522.17922646685,514.329669795041,2423.02806166959,2351.70629155192 +1498262400,2682.11,2713.907,2506.2975,2563.22275,1855.54036796875,2525.10069115115,516.375296313683,2437.67798519753,2374.20480750469 +1498348800,2565.143,2624.69925,2424.8675,2498.21975,1871.14892849117,2523.18731448429,518.353981101801,2450.25370620687,2395.25872073954 +1498435200,2498.899,2549.85725,2264.655,2412.4375,1885.69703120246,2515.30417863347,520.245044872875,2460.27272085773,2414.5874138438 +1498521600,2412.2785,2563.636,2270.367,2562.3475,1901.91255066527,2518.6527069803,522.28389159277,2469.39767950388,2432.83068425709 +1498608000,2562.5,2598.565,2459.01675,2555.50275,1917.89817793708,2521.27568108265,524.313868879112,2477.6490527004,2449.9860797043 +1498694400,2553.276,2589.067,2501.85575,2536.8885,1933.51649744815,2522.386996466,526.323234851373,2484.94948896628,2466.01101957285 +1498780800,2536.3835,2554.11075,2439.3945,2455.4225,1948.19041479485,2517.62048534107,528.2492585429,2490.70023517647,2480.63346655099 +1498867200,2455.01,2508.0275,2384.7525,2411.277,1962.26477904475,2510.05099056858,530.129284162819,2494.74472574025,2493.75074206489 +1498953600,2413.625,2535.1475,2369.5925,2508.61025,1977.55168274084,2509.9484391225,532.104610825516,2498.19195361761,2505.80884547143 +1499040000,2507.23275,2587.94475,2474.693,2545.1375,1993.05984177101,2512.45318505505,534.114434325228,2501.43378754376,2516.99023445339 +1499126400,2542.5375,2638.635,2542.47725,2600.95775,2009.04857433656,2518.75291126342,536.177982461179,2504.96117286264,2527.53801992749 +1499212800,2600.217,2632.9065,2541.79525,2614.07675,2024.92488999013,2525.53803116707,538.252568423227,2508.80639566938,2537.51578315712 +1499299200,2613.915,2625.77,2564.4545,2604.10025,2040.53092978119,2531.13006440601,540.315122512425,2512.79361507546,2546.89663687867 +1499385600,2604.0575,2609.11825,2468.58025,2500.832,2054.6915134967,2528.97345801491,542.272513727017,2515.97045746016,2555.30593793608 +1499472000,2500.832,2555.30975,2466.22025,2551.69925,2069.31197634416,2530.59107251269,544.278736823137,2518.89288182528,2562.98662504981 +1499558400,2551.43925,2569.30425,2498.88,2502.82275,2083.09212773913,2528.61453232852,546.234158318767,2521.1582103675,2569.78707208491 +1499644800,2503.035,2523.43875,2257.355,2330.78225,2094.5445983957,2514.53289467941,548.015861295561,2521.37612283405,2575.10676669973 +1499731200,2330.02425,2403.2945,2252.88375,2305.81,2105.5027935097,2499.67606677774,549.770852973353,2519.69188300334,2578.95721772084 +1499817600,2304.605,2410.438,2241.8525,2382.2715,2117.21810856255,2491.31924781849,551.600432054469,2517.11831061765,2581.73754628263 +1499904000,2381.49625,2419.7585,2311.67,2339.968,2128.2845036357,2480.54611512024,553.385948418115,2513.46963766521,2583.36848938751 +1499990400,2340.53025,2353.122,2141.4975,2214.94925,2137.64261114373,2461.6410164612,555.04486268014,2507.88727622547,2583.46950751411 +1500076800,2213.912,2220.556,1963.323,1968.5575,2143.70865741318,2426.54349179115,556.456121746449,2498.63235168459,2581.23985482839 +1500163200,1968.04475,2042.5625,1799.3,1910.16225,2148.94848947632,2389.78764259346,557.807669653539,2485.93123876345,2576.66559754797 +1500249600,1909.64,2230.7025,1905.6255,2226.815,2158.05903095687,2378.1873027869,559.474016076273,2473.24215985732,2571.15912791721 +1500336000,2226.8025,2393.855,2147.24,2306.755,2168.02611019114,2373.10277465808,561.218511360465,2461.3637360664,2565.12237660251 +1500422400,2307.86525,2400.6275,2218.591,2260.872,2177.31558412301,2365.11422454274,562.915455082152,2449.85826961444,2558.44995966231 +1500508800,2260.947,2944.9775,2260.855,2873.343,2194.17246961893,2401.28978383269,565.222199099664,2444.05374958892,2553.53398488313 +1500595200,2874.578,2886.8625,2611.0625,2664.86,2208.32913056205,2420.05062627701,567.318489436412,2441.18724005253,2549.45638546199 +1500681600,2665.0125,2874.935,2648.37775,2831.788,2224.50581781665,2449.35795890808,569.579348690717,2442.20563420145,2546.79164476394 +1500768000,2830.43975,2851.9975,2667.8275,2756.4875,2239.57721377265,2471.21933996323,571.762770242272,2445.76034424292,2545.14534241979 +1500854400,2758.61,2800.89425,2715.75025,2759.1595,2254.51433610288,2491.71482710285,573.946679593332,2451.39402645762,2544.44719365858 +1500940800,2759.007,2776.554,2447.47525,2560.773,2266.77962629432,2496.63036543664,575.930338305553,2456.97435669523,2543.87005530183 +1501027200,2563.0025,2609.99075,2404.6555,2525.125,2278.38887946615,2498.65860427685,577.876425355424,2462.15438633169,2543.27120103467 +1501113600,2525.54725,2691.08725,2512.2615,2667.4255,2291.57427679284,2510.67137714065,579.962643050428,2468.19046408551,2543.19210565267 +1501200000,2667.8245,2830.9035,2658.64775,2787.3175,2306.05212795948,2530.36295837949,582.166478709327,2475.91506000004,2544.04162189507 +1501286400,2789.56025,2793.63475,2653.7795,2700.72725,2319.20725792736,2542.48943336482,584.281661847469,2484.2134558833,2545.41059799196 +1501372800,2700.985,2765.855,2580.6725,2753.8375,2332.82802963301,2557.5331201543,586.447758750756,2493.37129863678,2547.45025698507 +1501459200,2754.68475,2914.9975,2701.54,2865.02325,2347.648767803,2579.42016779992,588.722701496504,2504.11820548908,2550.51574113959 +1501545600,2865.02575,2937.0975,2632.8575,2730.15425,2360.54482824863,2590.14937084974,590.860718948852,2514.91360776507,2553.9989508324 +1501632000,2730.39375,2758.361,2650,2701.9125,2372.83340075777,2598.10463410962,592.968405068379,2525.41144050506,2557.74456685568 +1501718400,2701.9375,2802.7475,2699.965,2790.2135,2385.94761727998,2611.77888083421,595.16214708331,2536.33705422344,2562.04958339017 +1501804800,2790.2135,2878.605,2764.40025,2858.3245,2399.63258864692,2629.32791798935,597.421701263977,2548.1089524174,2567.10738731423 +1501891200,2857.32675,3339.1875,2853.955,3253.94,2417.9635726549,2673.78760326724,600.073984260905,2563.89531118914,2574.32882991526 +1501977600,3253.915,3288.415,3155.2175,3224.683,2435.66990782504,2713.00015881201,602.694408847982,2582.59494013207,2583.39219662572 +1502064000,3223.681,3426.21425,3186.7875,3393.065,2455.18981568367,2761.40695349079,605.480330735875,2604.98525481026,2594.74251159123 +1502150400,3393.0625,3488.5975,3336.47,3421.6175,2474.7236759696,2808.4005259181,608.291978122084,2630.46513208896,2608.25028919381 +1502236800,3420.8425,3430.4,3225.12,3351.6645,2492.98539255664,2847.06987927538,611.030976869985,2657.66177018313,2623.41692138069 +1502323200,3351.195,3451.7925,3321.5825,3428.36225,2511.84587779997,2888.44608156346,613.843816456293,2686.69869561412,2640.3337242939 +1502409600,3427.63225,3717.58975,3413.2065,3652.8,2533.16619291999,2942.85254540454,616.877927615194,2718.93879841243,2659.63554892017 +1502496000,3654.372,3963.8825,3610.3675,3869.2565,2556.90431393849,3008.7936782256,620.125120902442,2755.40662871988,2681.86412257411 +1502582400,3870.3575,4199.2975,3844.2245,4061.17,2582.77785571598,3083.70148325777,623.560679704668,2796.69635857257,2707.41137909126 +1502668800,4061.17,4351.3575,3970.405,4325.198,2611.59813609427,3172.07080238825,627.256415484121,2843.87853508553,2736.89572092971 +1502755200,4327.45025,4438.68,3812.4975,4160.66,2637.98987582558,3242.43826062482,630.784185743771,2894.07810434115,2769.24971727971 +1502841600,4160.14,4382.0825,3934.9725,4369.215,2666.51753693626,3322.64186323494,634.516656357114,2948.12899637863,2804.89476294479 +1502928000,4363.255,4475.5,4193.55,4282.99,2693.63136415749,3390.99913192616,638.159312919537,3004.13568562653,2843.09082330509 +1503014400,4278.9825,4356.999,3969.11,4111.3,2718.27724590592,3442.26991393995,641.626916359221,3059.78301064031,2882.82841120036 +1503100800,4108.55,4192.64575,3971.909,4145.45075,2743.14060329657,3492.32209763137,645.125154027156,3114.94885768679,2923.95536200838 +1503187200,4144.86175,4170.76,4030.33,4059.4735,2766.87285724163,3532.69175038136,648.534058858687,3168.49845118362,2965.87356481672 +1503273600,4058.90275,4090.17225,3960.025,3997.2735,2789.4266379341,3565.76052853789,651.877459386026,3219.71774242961,3008.12256424894 +1503360000,3997.6945,4148.5885,3600.8675,4093.795,2812.93970500962,3603.34585084147,655.313889458478,3269.41154224441,3050.87918291492 +1503446400,4092.045,4256.715,4064.4575,4137.42825,2836.76089770207,3641.36166267561,658.790452264846,3317.79794284565,3094.10357130507 +1503532800,4140.595,4357.4975,4112.2875,4315.0655,2862.38383609124,3689.31568316386,662.440898093062,3366.22609928459,3138.26353869313 +1503619200,4317.25975,4462.2225,4288.2075,4369.55475,2888.2046788511,3737.73487916773,666.142101672862,3414.74100446773,3183.31854452161 +1503705600,4367.73,4376.88,4283.6975,4350.17475,2913.27689602607,3781.32815040447,669.820260847574,3462.74034281838,3228.9491640418 +1503792000,4352.3375,4391.63975,4312.0125,4339.2825,2937.75776279567,3821.043159923,673.483872842794,3509.80642642242,3274.89300980442 +1503878400,4338.187,4398.68,4189.9045,4383.1945,2962.37675780153,3861.05690986187,677.187669057792,3556.07746396584,3321.11577717492 +1503964800,4384.41475,4669.2815,4344.3725,4589.49475,2989.25507987015,3912.90687890632,681.093738725928,3603.07783654227,3368.19824896131 +1504051200,4589.497,4640.21475,4491.15,4579.695,3015.53286685707,3960.36864095779,684.986124425661,3650.18720349416,3415.85252611274 +1504137600,4580.025,4764.25,4576.06,4737.9375,3043.30443458936,4015.71573998223,689.032614158453,3698.34695677342,3464.44760377522 +1504224000,4737.875,4931.7375,4697.12,4928.3975,3073.17388545098,4080.68013144683,693.265220201423,3748.60100236755,3514.43921325077 +1504310400,4928.4025,4977.475,4505.375,4630.785,3099.44902155934,4119.83641745234,697.196462371671,3797.57078446669,3564.39596401644 +1504396800,4628.8975,4733.85,4458.224,4621.195,3125.58642291902,4155.52295864073,701.114204856739,3844.97778076214,3614.09595451695 +1504483200,4620.55,4629.095,4137.2525,4349.555,3148.28274135854,4169.33409637103,704.756828922555,3888.34100783407,3662.34754480939 +1504569600,4350.99,4506.9075,4099.2075,4421.515,3171.33746759755,4187.28425124531,708.467661445534,3928.62467623581,3709.36341362538 +1504656000,4419.9775,4671.5325,4404.55,4618.1875,3196.47957312187,4217.95580464079,712.371147996138,3967.72676269358,3755.81377299948 +1504742400,4620.565,4683.7525,4496.1725,4630.5925,3221.53835329372,4247.32715069404,716.283122506181,4005.6259833896,3801.6181400023 +1504828800,4630.5425,4683.76,4101.2725,4348.31,3242.5036704912,4254.51507713337,719.909358823147,4039.76772825552,3845.59249072239 +1504915200,4352.1875,4419.9325,4184.065,4327.6375,3262.73347428226,4259.71990746093,723.511335143406,4070.34437825492,3887.64829601412 +1505001600,4334.1675,4347.3,4086.6375,4252.04,3281.6530938305,4259.17325414039,727.034238255507,4097.07021005121,3927.50438647234 +1505088000,4252.0875,4371.5425,4116.38,4213.48,3299.7861277583,4255.92082314056,730.515125557501,4120.06363089026,3965.05166972633 +1505174400,4211,4381.0175,4086.2775,4166.5575,3317.09727131836,4249.55997080253,733.945689830592,4139.38202734476,4000.16746843876 +1505260800,4166.8175,4177.6375,3735.715,3864.4675,3330.17570579594,4222.14921371367,737.071220632534,4152.89852226781,4031.78513306828 +1505347200,3863.3025,3928.21,3218.735,3243.755,3335.26161402953,4152.50743112216,739.573907992096,4156.15909947628,4057.73870627403 +1505433600,3243.7025,3850.6675,2974.3825,3722.37,3346.59962684813,4121.89038837721,742.551948595806,4155.09154883669,4080.21915058045 +1505520000,3722.365,3927.645,3572.7525,3709.305,3357.5756236553,4092.52269433828,745.513971736421,4150.35957365467,4099.38753632203 +1505606400,3706.84,3815.215,3492.52,3704.605,3368.51116451994,4064.91083875508,748.468345069501,4142.61318764917,4115.43533483646 +1505692800,3704.5475,4125.9075,3700.8575,4097.7825,3384.39191142935,4067.2506329339,751.812319394359,4135.85275961064,4130.05202006805 +1505779200,4098.4325,4118.7375,3852.9475,3903.3275,3398.03796501966,4055.58263753338,754.958810096892,4128.28089794806,4142.56975740096 +1505865600,3903.6525,4046.9975,3830.225,3868.905,3411.85535295987,4042.29498388052,758.067791705171,4119.80936061131,4152.98974856925 +1505952000,3866.2925,3908.5825,3573.75,3618.79,3422.57772989765,4012.15003657765,760.923953048235,4108.50872232787,4160.50649886954 +1506038400,3616.485,3762.8075,3514.9325,3614.7375,3433.60018950544,3983.86234120542,763.773216744474,4094.94326789946,4165.32316526058 +1506124800,3612.895,3818.08,3566.225,3784.775,3446.5937175043,3969.69136887278,766.789402127887,4081.10177163385,4168.29324085147 +1506211200,3785.39,3787.28,3624.9675,3668.48,3457.82419039648,3948.25124139543,769.686466544399,4066.14749387138,4169.12335185161 +1506297600,3668.5025,3967.93,3665.845,3919.565,3471.9076357743,3946.2093640431,772.831323209097,4052.57758329065,4168.94048034192 +1506384000,3919.955,3964.515,3851.8775,3886.04,3485.62489708161,3941.92652823865,775.939568480085,4039.97407175555,4167.70484503015 +1506470400,3885.12,4230.03,3874.1175,4204.4,3503.06427107338,3960.60930477211,779.362562898187,4031.0267029724,4166.7128399123 +1506556800,4205.1875,4276.64,3928.0425,4188.065,3520.1028958297,3976.79952733704,782.765830822151,4025.02334388544,4165.88581103441 +1506643200,4189.0725,4218.815,4020.5475,4165.45,3536.9770457522,3990.22760675414,786.143121959259,4021.29839017898,4165.12745387682 +1506729600,4166.13,4353.3175,4157.9725,4334.18,3555.93217475438,4014.71002647465,789.685502182492,4020.93868816817,4165.07196570192 +1506816000,4334.1575,4391.0525,4243.23,4386.1175,3575.64011853616,4041.14668989883,793.276200368895,4023.79964276078,4165.85592588192 +1506902400,4385.195,4461.8775,4358.1075,4392.8975,3595.62885479977,4066.18419840011,796.87008277239,4029.3440800803,4167.43060373851 +1506988800,4392.855,4423.3075,4200.6275,4308.205,3614.58336863503,4083.41116050945,800.375819548949,4036.31611774345,4169.40299984968 +1507075200,4309.155,4344.97,4177.3675,4218.055,3632.33954042202,4092.99506530534,803.78804990459,4043.62303330799,4171.39141829188 +1507161600,4217.7825,4364.14,4146.9675,4315.975,3650.98714939733,4108.86670468814,807.294637355616,4051.98877682462,4173.7567615903 +1507248000,4314.82,4416.09,4294.6225,4362.865,3670.18590519228,4126.94622091257,810.844539052777,4061.55864043962,4176.63511972077 +1507334400,4361.1525,4450.105,4317.8325,4426.3275,3690.16253368762,4148.25608319296,814.454257829254,4072.58501035916,4180.21165688078 +1507420800,4423.9825,4612.025,4411.0075,4598.9925,3712.30330498241,4180.3393550535,818.232762361185,4086.20695904791,4185.06553686513 +1507507200,4599.5925,4872.5975,4551.75,4764.3575,3736.35314437792,4221.90957706604,822.172595770341,4103.27604583221,4191.69429005725 +1507593600,4764.3,4918.4075,4706.51,4751.0025,3759.89301587855,4259.57023960186,826.095161919336,4122.91805186483,4199.87154497843 +1507680000,4749.88,4870.605,4712.6025,4818.3625,3784.07879827172,4299.34489133938,830.081064363531,4145.08928403779,4209.6891323133 +1507766400,4818.7625,5438.4025,4806.6275,5438.095,3815.86528181574,4380.40075448926,834.681731717078,4174.50705180615,4223.31079549811 +1507852800,5437.87,5859.43,5385.2575,5638.67,3850.10339143234,4469.96395100984,839.478060960309,4211.36608630368,4241.11908476665 +1507939200,5635.3575,5814.285,5559.5275,5805.1025,3886.43043276634,4564.99867960394,844.435768676857,4255.4671098884,4263.31928269492 +1508025600,5803.5325,5838.4875,5445.65,5687.0025,3921.34569820436,4644.8625473902,849.270614877271,4304.12386243481,4289.00815750867 +1508112000,5686.3575,5786.84,5562.1375,5746.995,3956.89132418766,4723.31197766674,854.160530793333,4356.62656455168,4318.0186274578 +1508198400,5748.59,5769.0475,5520.0825,5597.5175,3990.62718610701,4785.53764302053,858.896325402303,4410.54722531058,4349.39425547746 +1508284800,5596.175,5612.95,5104.475,5576.305,4024.20637727164,4841.82420684453,863.606213086174,4464.98492008697,4382.7353582426 +1508371200,5576.4975,5740.3675,5522.1,5698.2525,4059.1071501291,4902.78449479509,868.433151469788,4520.43157894368,4418.20942568263 +1508457600,5700.5275,6059.4975,5613.7,5987.355,4097.34304685561,4979.98387135513,873.543912192918,4578.72819832206,4456.59287695478 +1508544000,5985.1475,6181.9725,5890.0425,6023.475,4135.95450179122,5054.25923122406,878.685632717124,4639.17774189449,4497.62979660243 +1508630400,6022.02,6078.46,5739.0125,5986.655,4174.06815025494,5120.62685943383,883.785458420609,4700.55760525478,4540.80056583736 +1508716800,5982.465,6054.16,5648.535,5894.89,4210.87752370083,5175.73865849002,888.788573730517,4761.37893543997,4585.41420014601 +1508803200,5894.505,5897.25,5472.55,5527.885,4242.36335063867,5200.8043207886,893.42027401971,4818.04231579862,4629.7936325883 +1508889600,5526.6575,5760.4175,5379.4275,5745.0775,4275.41684166678,5239.54550903946,898.264196221756,4872.67272379693,4674.61136705781 +1508976000,5745.995,5993.8525,5695.9,5890.4075,4309.58187114937,5285.87365431692,903.248380523869,4926.41469967925,4720.20970004719 +1509062400,5890.555,5994.5175,5698.985,5777.7525,4341.6313940558,5320.88543091196,908.115113194482,4977.98731133763,4765.92465240594 +1509148800,5778.0875,5885.5575,5677.2425,5740.6775,4371.99212927293,5350.76609414493,912.939971000361,5027.00887159575,4811.43367036718 +1509235200,5740.93,6280.1925,5698.7575,6135.035,4407.34294356696,5406.59010032699,918.153740414389,5076.91704754635,4858.07161396785 +1509321600,6135.395,6216.6925,6027.52,6123.335,4442.08791085083,5457.60776966412,923.350623024719,5127.02204677655,4905.5221966211 +1509408000,6123.3375,6458.4575,6086.6425,6439.52,4480.71720990071,5527.49996353702,928.857997942364,5179.58916463039,4954.73114158501 +1509494400,6442.4775,6759.84,6357.65,6752.05,4523.0650152162,5614.66303770125,934.671905997224,5236.42915712002,5006.54332036853 +1509580800,6752.9125,7356.025,6724.95,7028.69,4568.79276964895,5715.3130179512,940.756208364492,5298.68451816163,5061.58640861039 +1509667200,7031.9425,7461.9425,6931.95,7156.8525,4615.60623328964,5817.92133042769,946.962394299449,5365.964801904,5119.86182042815 +1509753600,7156.4575,7514.81,7009.5525,7385.7075,4664.53253937676,5929.51584114838,953.390874078235,5438.77581414832,5181.73888692314 +1509840000,7384.7975,7596.1975,7295.54,7384.79,4712.85041239021,6033.10178346206,959.812019588979,5515.49953991154,5246.67425023813 +1509926400,7383.5975,7428.22,6922.6075,6970.3625,4755.61861358641,6099.8156970746,965.812987415534,5591.19634037609,5312.59767125847 +1510012800,6970.6775,7246.3275,6957.6225,7123.6775,4799.70597154994,6172.69384790957,971.961034410686,5666.7192887666,5379.75515651481 +1510099200,7124.5425,7881.0075,7064.695,7461.8275,4847.43101626698,6264.45396287337,978.440554046295,5744.36955482267,5449.06512514253 +1510185600,7464.64,7477.145,7086.305,7151.9725,4890.91582368532,6327.62724429937,984.604243496141,5820.42006036164,5518.91272970522 +1510272000,7153.275,7357.0575,6422.61,6583.4775,4926.58817823791,6345.83858246321,990.194190438062,5889.582526045,5586.84169574417 +1510358400,6579.505,6841.2475,6200.91,6342.9575,4958.32966121443,6345.63350794854,995.538419807491,5950.40114059984,5651.85036333871 +1510444800,6342.9425,6493.72,5495.165,5871.5225,4983.20248788513,6311.88644027684,1000.40663007931,5999.75415091397,5712.16126535815 +1510531200,5861.4375,6823.0175,5824,6534.585,5015.20296550487,6327.73805148049,1005.93198527806,6044.97988016332,5770.44998622589 +1510617600,6535.965,6759.6975,6481.2025,6620.3375,5047.75592233234,6348.56518526212,1011.53743971504,6087.16047814362,5826.9921712756 +1510704000,6620.3375,7341.735,6620.3375,7285.1625,5087.87721748466,6415.23187814984,1017.80106270021,6132.2184781829,5884.23336643193 +1510790400,7285.1625,7935.54,7116.8875,7822.1575,5134.18921314359,6515.37638729142,1024.59457091443,6183.89635988515,5943.92582511144 +1510876800,7823.41,7982.125,7533.675,7690.6425,5178.2952884034,6599.03144775805,1031.24999112645,6239.43669940597,6005.13907710521 +1510963200,7689.6925,7854.625,7452.61,7777.645,5222.59789766014,6682.92477788425,1037.98563032047,6298.4266286428,6067.84120568468 +1511049600,7779.9,8071.2425,7678.265,8023.845,5268.93213919907,6778.37104409497,1044.96035209594,6361.87288603296,6132.59856022615 +1511136000,8023.8475,8288.1475,7924.65,8240.5725,5317.0772520515,6882.45006916464,1052.14449223962,6430.31039962349,6199.81027908606 +1511222400,8237.24,8359.8675,7787.0975,8109.4225,5362.8581651742,6969.78556857411,1059.19051879004,6501.12878891855,6268.51861190098 +1511308800,8106.3375,8303.7125,8068.5725,8239.0275,5409.73279910216,7060.12979731692,1066.35890891746,6574.41409733449,6338.82627332698 +1511395200,8239.2525,8281.0475,8012.76,8015.01,5453.85279659439,7128.09786023481,1073.2964817357,6647.15880944405,6409.48582659777 +1511481600,8014.675,8320.43,7881.5,8199.295,5499.91684236682,7204.34532498322,1080.41111923514,6720.4230155515,6480.89643424706 +1511568000,8199.705,8754.525,8142.6925,8745.7775,5552.96319194989,7314.06396692471,1088.06426467991,6798.20545631533,6554.78824444192 +1511654400,8746.23,9456.4,8689.54,9288.17,5612.88604421376,7454.58019365727,1096.25129694133,6883.72144166654,6632.71948616983 +1511740800,9290.1525,9735.2175,9280.9,9704.9725,5677.75552110811,7614.76238765152,1104.84629321258,6978.46362836521,6715.62638381734 +1511827200,9709.395,9957.5375,9587.06,9889.88,5744.76304050569,7776.70452090258,1113.61732089157,7081.57557943559,6803.47106938753 +1511913600,9897.0825,11428.45,9086.4375,9845.9375,5810.85498921583,7923.99185277928,1122.33571908435,7190.30200774465,6895.33604570498 +1512000000,9838.725,10762.0975,9082.85,9968.3925,5877.86683419233,8069.5116273324,1131.16767254804,7303.76609312567,6990.99500736729 +1512086400,9963.125,10954.5225,9424.28,10879.1425,5955.74450505619,8269.50024097518,1140.90010612534,7428.02013804986,7093.20338833749 +1512172800,10876.895,11174.65,10677.9225,10897.8125,6033.20178827002,8456.58265454633,1150.64146301985,7560.23823289779,7201.08886492173 +1512259200,10898.7325,11834.5025,10578.9825,11251.5775,6114.714855987,8655.52948052219,1160.72629507867,7700.92349260875,7315.09725731571 +1512345600,11253.3025,11651.9925,10914.075,11640.9725,6200.80958653053,8868.03234571459,1171.18983256913,7850.72464086746,7435.74790731459 +1512432000,11640.975,11868.75,11477.0925,11710.6875,6287.38897380221,9070.3716170048,1181.71252705717,8007.33301959039,7562.28371486516 +1512518400,11707.4825,13974.995,11702.9725,13796.59,6399.58506921254,9406.78230759876,1194.30729256122,8186.21989946128,7701.60342251717 +1512604800,13795.39,17330.155,13421.2275,16734.75,6547.92803594796,9928.3846696311,1209.82295905495,8407.28830532324,7863.1893027508 +1512691200,16734.75,17285.75,13868.2525,16084.735,6687.73996508798,10366.5916880857,1224.6741559414,8655.52875702638,8042.08335742916 +1512777600,16084.7025,16274.62,13587.76,14910.3425,6812.33506127165,10690.0143961905,1238.33800514877,8913.82509226877,8231.70357976265 +1512864000,14908.725,15876.25,13163.375,15037.4975,6938.32253160599,10999.4668325317,1252.11516456736,9179.26062380448,8430.90209959653 +1512950400,15037.47,17418.5,14987.5725,16683.4875,7085.36196475414,11404.053578877,1267.52193458057,9462.50404678426,8644.3280241063 +1513036800,16681.0125,17645.3775,16247.5,17162.905,7238.31321778579,11813.9667539809,1283.39197554891,9762.09372782969,8871.77613912889 +1513123200,17164.155,17447.27,15704.1725,16387.6525,7381.60819522745,12139.5202209798,1298.47215526731,10065.8395825314,9108.26773778157 +1513209600,16382.71,16969.6375,16017.3925,16552.415,7526.45564636778,12453.6286391329,1313.70177866664,10371.8032060172,9352.76303574783 +1513296000,16552.5425,17925.75,16515.1525,17613.6675,7684.12793071003,12820.9185305441,1329.97575726252,10686.1206471823,9607.6658313471 +1513382400,17615.29,19603.25,17489.215,19423.67,7864.45447633982,13290.9002371982,1348.04060462851,11020.240511954,9877.96373219725 +1513468800,19423.6725,19804.2475,18728.025,19128.2725,8041.29338915086,13706.4025003286,1365.79248940189,11365.209624779,10160.2115558512 +1513555200,19128.3225,19302.2525,18114.7875,18948.92,8215.65024173467,14079.5631944812,1383.3475840351,11714.5716837694,10451.6501362142 +1513641600,18948.8475,19064.1475,16776.19,17694.81,8374.14299318385,14336.8952887594,1399.63304099637,12053.6861693883,10745.6616075808 +1513728000,17693.06,17861.4675,15111.31,16445.165,8516.83172617507,14486.9612425606,1414.6545857806,12370.635651828,11036.1979281012 +1513814400,16444.4175,17242.735,14878.925,15584.7025,8648.7230926058,14565.0981089901,1428.8020423091,12659.1717694814,11319.2080722813 +1513900800,15585.775,15790.2075,10843.9825,14023.615,8761.3022057293,14526.555517032,1441.37677528687,12908.3429559014,11588.3681124359 +1513987200,14027.3175,15877.805,13611.845,14814.6275,8883.81764280828,14547.0603872851,1454.72870496403,13129.8130680049,11846.8263051662 +1514073600,14816.7525,15017.5425,12699.5,14059.955,8995.30755003968,14512.3883839096,1467.3138346771,13320.0552647715,12091.6666981331 +1514160000,14047.4525,14658.7475,13251.75,13983.735,9105.14968279764,14474.7590076189,1479.81030084297,13482.3030544413,12322.8347188862 +1514246400,13988.5425,16173.7175,13900.7325,15800.17,9236.94171197786,14569.1013318907,1494.1078295135,13635.8201394996,12547.4792668093 +1514332800,15799.8725,16506.43,14538.3425,15399.215,9362.60041075437,14628.1885533709,1507.99076769476,13777.3612866031,12763.7925539352 +1514419200,15403.7275,15503.295,13561.8275,14489.3725,9476.66798869543,14618.3076717451,1520.95145313841,13899.9609989624,12968.2302559458 +1514505600,14485.4275,15132.485,14059.8275,14470.21,9590.02069179474,14607.7661275358,1533.88006661079,14005.7522746986,13160.9577072623 +1514592000,14472.9575,14537.41,12290.96,12688.9175,9680.64817530746,14471.1831049956,1545.01731950634,14081.4020497506,13335.5161043476 +1514678400,12688.915,14266.63,12534.0025,13888.3225,9785.38051418757,14429.6952763011,1557.34094568715,14141.9692770005,13497.3203673615 +1514764800,13888.35,14024.47,12900.97,13441.9825,9883.37776867954,14359.390201449,1569.20663949174,14185.746151384,13645.1583814028 +1514851200,13429.6775,15270.625,12963.845,14770.635,9997.16926547066,14388.6624727392,1582.38702074203,14226.8171852879,13784.6767053719 +1514937600,14768.6425,15474.925,14614.9125,15145.865,10114.2881558472,14442.5599028774,1595.92887439337,14268.5508692835,13917.4728282564 +1515024000,15146.1375,15458.49,14209.8675,15188.8125,10230.928442989,14495.6779205421,1609.50008680948,14310.8402023418,14043.7790059679 +1515110400,15188.815,17125.61,14847.695,16955.8775,10368.3445562286,14670.7941281432,1624.82199740833,14368.496909891,14170.3430107087 +1515196800,16955.45,17222.6125,16234.205,17127.915,10507.0660557368,14845.6911943364,1640.30037374405,14439.7850032482,14297.3146417348 +1515283200,17124.9825,17134.9975,15717.0625,16144.1975,10632.5072996187,14938.1184517396,1654.78114722694,14513.1672529192,14420.4649643442 +1515369600,16153.8125,16238.775,13806.305,14999.085,10742.4560942416,14942.4580308579,1668.10417618231,14577.7387676546,14535.3295627418 +1515456000,14997.6575,15402.78,14186.555,14469.6625,10844.9088757684,14908.8045984186,1680.88532491093,14629.9268472108,14640.1799134878 +1515542400,14467.64,14921.9,13496.7525,14908.0475,10952.0823571814,14908.7507083989,1694.09139894825,14675.2657665743,14737.1269912085 +1515628800,14902.8875,14992.0175,12814.5025,13339.265,11038.8493995363,14797.0352250561,1705.71800658465,14701.0162775077,14820.552498878 +1515715200,13340.705,13960.505,13027.5675,13729.9175,11129.6080279772,14721.0781317227,1717.72303583035,14713.8060759683,14892.7662732325 +1515801600,13891.385,15217.275,13662.9425,14240.0275,11225.4982956837,14686.837103883,1730.22537591529,14720.2324262169,14956.3752030131 +1515888000,14239.1,14377.165,13122.955,13660.4225,11312.8813315916,14613.7772455044,1742.13655266015,14716.3575360231,15009.6819503212 +1515974400,13660.3975,14342.38,13363.0625,13600.735,11398.1781114705,14541.6692272551,1753.97624487844,14703.5254274034,15053.1357516802 +1516060800,13594.04,13621.2625,10050.655,11472.14,11455.3189758823,14323.1811330836,1763.67891491136,14665.0340678487,15079.3720747072 +1516147200,11474.2225,11992.965,9144.25,11204.1375,11507.7569803399,14101.1686195752,1773.10432252114,14603.4490209616,15088.7436925726 +1516233600,11208.7075,12160.35,10701.885,11284.275,11560.0078711528,13900.6630459647,1782.60032948664,14524.0901724098,15082.9517452944 +1516320000,11295.1325,12020.6925,11040.06,11546.3875,11614.0110910615,13733.0864766897,1792.34855019729,14433.0609191912,15064.2971858601 +1516406400,11548.37,13029.0675,11520.6775,12782.4175,11681.5045940185,13665.4181674713,1803.32109761942,14343.9026249514,15038.6116916467 +1516492800,12790.825,12793.6625,11119.0025,11541.66,11732.3781811976,13514.2497503824,1813.04391063425,14246.3282684258,15001.9046063463 +1516579200,11533.6325,11898.32,10019.86,10791.7475,11773.0748265062,13320.4629237961,1822.00829942685,14136.1907999936,14952.4197663291 +1516665600,10792,11402.095,9953.385,10836.8675,11813.95072072,13143.6814075882,1831.00878618757,14017.0599401638,14891.6008445875 +1516752000,10836.1875,11482.5025,10491.7825,11381.0325,11860.9893630069,13018.2166304188,1840.54358424579,13896.2643268445,14822.6961028825 +1516838400,11381.04,11721.405,10856.0325,11136.71,11904.4650817332,12884.291599114,1849.82492973204,13773.0312781118,14745.7306044452 +1516924800,11132.7775,11609.8,10297.08,11088.1575,11946.4676915243,12756.4433568795,1859.04853357762,13648.438568796,14661.4970041693 +1517011200,11080.6725,11563.6375,10834.4,11381.0975,11991.0346893433,12658.5466851592,1868.55540148874,13526.3367437978,14572.0375808724 +1517097600,11379.915,11874.2975,11251.775,11621.1475,12037.4852224646,12584.7049478504,1878.29244497576,13409.4148561382,14479.0409768293 +1517184000,11618.87,11699.0775,10936.5,11142.7425,12077.3386322565,12482.0665288054,1887.54212466685,13293.6295240567,14381.3525267767 +1517270400,11141.41,11185.265,9731.81,9988.305,12102.2565779556,12304.5613925425,1895.62997245115,13169.8003414286,14275.3805675664 +1517356800,9989.605,10313.735,9546.02,10115.7975,12128.35580142,12148.7658890409,1903.83703452017,13041.5261714852,14162.7110258056 +1517443200,10117.77,10174.8475,8447.8525,9012.8875,12140.1890416108,11925.5550830672,1910.93475098719,12901.1696736801,14040.1739297562 +1517529600,9017.205,9107.9675,7593.5625,8811.005,12148.114374695,11703.8624189906,1917.82382041606,12750.3412829334,13908.3086295882 +1517616000,8800.3925,9487.19,8108.1775,9213.725,12159.9488988279,11526.615245688,1925.10808970007,12595.6830505521,13769.9269938046 +1517702400,9213.055,9349.885,7820.6475,8163.0125,12157.7039237093,11287.1950939168,1931.33604898488,12430.1278824496,13622.1378489758 +1517788800,8164.595,8342.005,6513.9375,6878.9575,12138.080569242,10973.4181726879,1936.27578241567,12245.9387621246,13461.4501994476 +1517875200,6878.5575,7998.2225,5893.765,7696.395,12126.9328684881,10740.1607268231,1942.02671824334,12055.0784739903,13292.6544077035 +1517961600,7700.555,8633.025,7187.93,7576.405,12113.0290945631,10514.9656209938,1947.65211360466,11859.3425351379,13116.6241665109 +1518048000,7577.425,8636.6875,7553.625,8227.215,12105.5757978057,10352.1242742874,1953.92166494923,11666.9136192738,12937.0969619605 +1518134400,8229.2975,8739.5125,7750.83,8685.7175,12102.3588937341,10233.5099809307,1960.64272824497,11482.8324964449,12756.7795013495 +1518220800,8685.915,9082.45,8154.865,8554.1725,12096.2680604331,10113.9752840718,1967.22574591577,11306.0731850301,12575.9231541839 +1518307200,8553.745,8559.8275,7834.37,8067.4975,12083.2187934753,9968.3076595918,1973.31629197287,11132.6583159096,12393.4188810474 +1518393600,8072.7625,8979.5,8067.6425,8894.395,12079.7793768156,9891.86690502346,1980.22633636686,10970.6423338771,12213.2185823877 +1518480000,8889.6225,8937.6475,8379.3075,8519.9425,12071.3908706321,9794.21377113587,1986.75562622486,10816.1676481986,12034.3928133187 +1518566400,8515.9125,9507.025,8515.76,9483.4825,12075.07508379,9772.09602010513,1994.24040102554,10677.5620681647,11861.1386021232 +1518652800,9479.985,10247.525,9343.89,10025.8525,12084.5922882179,9790.15832398666,2002.25920828095,10557.8987113283,11695.6846311885 +1518739200,10024.95,10310.095,9709.0225,10183.905,12095.2877412401,9818.18508459369,2010.42781002955,10456.2197244721,11538.5893433723 +1518825600,10185.515,11139.295,10051.7325,11105.625,12117.7411802061,9909.82463993002,2019.50850669637,10378.1833320016,11393.2159603041 +1518912000,11110.27,11294.475,10166.7875,10408.5275,12131.4853426375,9945.32214765437,2027.88415103032,10314.2458512702,11256.484369983 +1518998400,10413.595,11264.0225,10322.725,11161.255,12153.7209604814,10031.8718534499,2037.00296049565,10268.9672724195,11131.0186602594 +1519084800,11155.9625,11773.775,11060.84,11229.375,12175.3735646722,10117.1097387682,2046.1806770856,10240.0194966876,11016.5919931288 +1519171200,11231.2975,11284.565,10247.55,10461.6925,12184.3040214224,10141.6370278774,2054.5827720115,10218.120743516,10909.7989038929 +1519257600,10463.125,10937.725,9724.6175,9835.875,12183.1198293567,10119.872985969,2062.35165848227,10196.800430124,10808.0303706062 +1519344000,9833.5425,10408.6675,9580.5825,10157.6025,12183.1071630121,10122.5585605325,2070.43400302062,10178.9215548016,10712.4584253515 +1519430400,10145.325,10537.06,9376.395,9690.955,12175.1320205446,10091.837159172,2078.04237457885,10159.9944271627,10621.1549218583 +1519516800,9690.5225,9872.6275,9296.2125,9590.7575,12164.7457040077,10056.170471659,2085.54311214102,10139.5023505925,10533.7233530451 +1519603200,9592.1075,10453.6475,9391.51,10311.7,12161.7264941583,10074.3589805534,2093.75615402148,10124.1323188898,10452.8871601168 +1519689600,10314.195,10855.9925,10131.0075,10561.5825,12159.9642165906,10109.0393925379,2102.21048006511,10115.2691855372,10379.3344639492 +1519776000,10564.57,11060.0375,10259.755,10306.8075,12153.3242555138,10123.1164622408,2110.40199645066,10109.6333700209,10311.7616443546 +1519862400,10307.0275,11079.0575,10191.85,10905,12152.8273895654,10178.770678696,2119.182573178,10111.8725805374,10252.1743854607 +1519948800,10908.51,11178.5,10774.3125,11022.265,12151.9155496711,10238.8103307279,2128.07146137129,10121.5848688352,10200.5615655798 +1520035200,11022.7575,11502.9225,11020.265,11434.805,12154.3596719058,10323.9408431232,2137.36335713319,10140.9275303814,10157.9979368927 +1520121600,11437.92,11509.25,11054.505,11478.115,12154.5235005118,10406.0945850192,2146.68921676408,10168.4002000121,10124.0383823189 +1520208000,11479.9675,11662.5375,11380.865,11407.6725,12150.5088930113,10477.3865759426,2155.93543521048,10201.7148982622,10097.8135774363 +1520294400,11405.4475,11413.82,10560.0175,10713.0325,12134.7826765195,10494.1597763374,2164.47888964811,10233.5427945728,10076.1417563533 +1520380800,10709.57,10900.9425,9403.275,9905.0725,12106.3856986293,10452.2287351977,2172.20714238728,10256.8877601285,10055.6665585101 +1520467200,9905.6175,10117.175,9044.7375,9291.4725,12068.1604335941,10369.6064831031,2179.31505746078,10267.7476718348,10034.0464348053 +1520553600,9296.865,9416.875,8376.5,9246.625,12027.248461795,10289.6730256026,2186.37109995201,10267.8546719931,10011.2910184919 +1520640000,9241.335,9516.035,8700.27,8777.0275,11977.6187528087,10182.0034080236,2192.95124883213,10255.0548779988,9985.80943469933 +1520726400,8779.0275,9761.4475,8486.2625,9531.515,11933.8088868468,10135.7018542584,2200.27811267054,10238.269790784,9960.77885770458 +1520812800,9534.0825,9894.975,8759.94,9113.485,11882.3288105366,10062.9407903357,2207.18029779392,10214.7373804223,9934.67686393407 +1520899200,9113.8825,9483.1675,8836.875,9143.8875,11828.0189070064,9997.52287541093,2214.10594576549,10186.1202650333,9907.80792670407 +1520985600,9146.5875,9358.3,7927.9125,8194.185,11758.3074349392,9869.16187071762,2220.07649074663,10145.3574620926,9876.75237397117 +1521072000,8193.8125,8416.73,7661.1875,8260.1575,11685.5308215179,9754.63346181689,2226.10694202134,10095.5252170145,9842.23257475287 +1521158400,8257.5025,8608.7925,7896.1225,8263.8375,11606.6137103512,9648.51908909684,2232.13504659211,10038.6942278534,9804.687327081 +1521244800,8262.1575,8349.055,7732.9325,7860.585,11518.359443012,9521.25452091403,2237.75452307665,9973.11071254006,9762.99285316097 +1521331200,7856.3225,8293.4375,7314.8425,8190.1825,11436.1589390986,9426.50924646858,2243.69746106474,9903.74281659569,9718.90404123177 +1521417600,8194.5075,8750.23,8101.545,8598.785,11360.3368696507,9367.59210324521,2250.04241665249,9835.3934792732,9674.3339585144 +1521504000,8596.1975,9042.815,8315.4275,8903.3125,11286.6983853139,9334.54483176948,2256.68507939056,9771.10552593942,9630.641815976 +1521590400,8906.735,9182.975,8751.2075,8892.0325,11210.1366257976,9303.04694761277,2263.3098480401,9710.61707489439,9587.87536488429 +1521676800,8890.7475,9097.43,8488.1025,8710.45,11131.3527063521,9260.86608921072,2269.74670948088,9652.20761099103,9545.43169036674 +1521763200,8710.805,8927.1275,8274.5125,8922.4225,11056.5357886509,9236.77578437353,2276.38877887361,9597.84589340869,9504.24409610674 +1521849600,8922.0475,9012.25,8498.25,8537.1675,10976.1916257094,9186.97789375169,2282.63957600061,9543.95372992108,9462.90648895662 +1521936000,8532.615,8678.825,8368.095,8452.075,10893.3149299789,9134.66774428927,2288.79917545961,9490.17814514455,9421.2663927791 +1522022400,8453.6575,8498.3575,7840.775,8143.28,10806.1551606709,9064.10108640847,2294.64432245301,9434.29389053421,9378.34067391012 +1522108800,8146.1025,8220.85,7740.1775,7791.6175,10718.3757014817,8973.52611771609,2300.13253177583,9374.11792553521,9333.07276389498 +1522195200,7792.47,8100.62,7732.155,7940.075,10636.6509741825,8899.96540256656,2305.7634824526,9312.21479447269,9286.39336764841 +1522281600,7938.2575,7966.25,6905.6325,7083.7675,10549.722787354,8770.68902531408,2310.53386887193,9242.02331643508,9235.36511072125 +1522368000,7082.3125,7273.4,6575,6835.18,10464.3436428388,8632.92012106719,2315.05130133472,9163.47090585113,9179.61171186774 +1522454400,6832.585,7218.475,6784.1675,6922.18,10383.4592389829,8511.1501944752,2319.65108486264,9079.47119404602,9120.07399973425 +1522540800,6923.4725,7042.6675,6442.2625,6812.6375,10304.0353567936,8390.25061213959,2324.1369080847,8990.76922839047,9056.88490028246 +1522627200,6815.535,7113.6025,6766.27,7050.615,10227.0327932255,8294.89578405005,2328.85585072646,8901.02282414182,8991.49216012911 +1522713600,7050.59,7514.135,7012.0125,7418.625,10156.0020579976,8232.52311403754,2333.93750522865,8814.37435796575,8925.71979350197 +1522800000,7417.265,7427.1725,6706.335,6794.085,10076.7658362238,8130.13555592953,2338.39054188561,8725.62460039161,8857.49001306155 +1522886400,6793.94,6930.155,6568.4225,6774.51,9995.70009049557,8033.64256883061,2342.81958881395,8635.74412855544,8787.19549266935 +1522972800,6774.98,6848.25,6511.6675,6611.62,9915.11527629796,7932.42346390272,2347.08158345304,8544.30228002773,8714.66211843599 +1523059200,6615.775,7070.1625,6602.69,6897,9840.73545853694,7858.72235779176,2351.62424790951,8454.83343084782,8641.43182934079 +1523145600,6894.8,7104.5275,6885.725,7021.1225,9769.13802359314,7799.10227175956,2356.28630155472,8368.83419240739,8568.30914001406 +1523232000,7026.335,7177.1125,6612.285,6773.91,9696.5531772791,7726.12941858479,2360.69688221129,8284.29572207,8494.62748946049 +1523318400,6775.9125,6889.405,6653.08,6830.335,9622.37541333938,7662.36706260255,2365.15939436032,8202.17760514157,8420.92572245629 +1523404800,6827.845,6973.69,6803.7375,6941.09,9549.38617585688,7611.02679537903,2369.7280295345,8123.71802903437,8347.90211036002 +1523491200,6941.0675,8174.0425,6762.85,7920.0175,9486.41490944667,7633.02065345013,2375.26947014778,8057.40914222408,8279.47145881094 +1523577600,7919.9375,8230.8275,7746.6875,7887.1375,9422.83902523512,7651.10860811321,2380.77255057596,8001.38549623691,8215.37750435205 +1523664000,7884.3575,8193.325,7825.4675,8001.6225,9360.87186519587,7676.05807317743,2386.38443917324,7955.29742402371,8155.92588748529 +1523750400,8002.395,8411.2475,7999.7525,8357.55,9302.59451696016,7724.56644734851,2392.34608487181,7920.8585763664,8102.29048632781 +1523836800,8360.46,8417.1925,7903.2475,8051.6125,9243.55781105212,7747.84547923252,2397.99632868721,7893.65639817764,8053.02401765577 +1523923200,8053.95,8167.455,7812.28,7891.5925,9187.25730608676,7758.07734551724,2403.48116638778,7871.25958286247,8007.33677980369 +1524009600,7891.5725,8253.5775,7873.7875,8165.4725,9138.48212448688,7787.07560039207,2409.23397134675,7855.3773316781,7966.13122790791 +1524096000,8165.995,8300.43,8091.4025,8272.5775,9093.56691659274,7821.63346803514,2415.08796691441,7845.91774401261,7929.58637285117 +1524182400,8270.95,8935.6325,8218.5275,8862.335,9057.74780312872,7895.71026531775,2421.52493506591,7846.9221000085,7899.67103763197 +1524268800,8862.85,9043.8175,8612.52,8925.1825,9026.44790449367,7968.98776486429,2428.01822381364,7857.06966125756,7876.171851378 +1524355200,8925.0125,9035.13,8757.3775,8799.1925,8994.16936616324,8028.08146846594,2434.37924049145,7873.56237594492,7858.1562518475 +1524441600,8793,9004.8725,8776.555,8941.3375,8965.06572106924,8093.08673639069,2440.87582467144,7896.36142012742,7845.76281324983 +1524528000,8941.3275,9738.9225,8933,9651.1975,8948.07787629,8203.99255485511,2448.07465089107,7930.28808899032,7841.24094932709 +1524614400,9651.265,9757.9425,8718.8575,8862.92,8924.08944060052,8250.89479654375,2454.47926901677,7966.26160283371,7840.96170259436 +1524700800,8860.7875,9315.0075,8630.5725,9279.7375,8909.82929808913,8324.12748626193,2461.29364570083,8007.21133605605,7846.13942333163 +1524787200,9277.9025,9376.68,8901.04,8921.945,8891.72259054422,8366.67994286643,2467.74399680296,8048.80793239688,7854.9394589487 +1524873600,8919.4725,9437.2075,8865.725,9339.5325,8878.82972474678,8435.92727214113,2474.60482957576,8094.1870426808,7868.59752222875 +1524960000,9337.5275,9527.8425,9175.4375,9396.8725,8866.48361371968,8504.32704158261,2481.51606103658,8142.78139008474,7886.86551863095 +1525046400,9396.505,9446.4425,9110.645,9243.395,8852.09881837256,8556.93365899615,2488.26715947457,8192.2740227424,7908.70293267677 +1525132800,9245.66,9247.665,8823.3,9070.0825,8838.95618719017,8593.45942695489,2494.83848139051,8240.57957239433,7933.06933617358 +1525219200,9068.375,9257.8025,8979.8075,9210.32,8829.20423999886,8637.36736234038,2501.54325637982,8288.70324848683,7960.18726588881 +1525305600,9216.425,9796.475,9157.385,9730.3925,8826.07660826058,8715.16853689458,2508.76058062913,8340.75717656741,7991.68431153255 +1525392000,9730.955,9772.4075,9499.47,9690.46,8822.3478747753,8784.5894667048,2515.93083022541,8395.24928630928,8026.91840410316 +1525478400,9687.03,9949.775,9616.1575,9807.7725,8821.28389462699,8857.41930293778,2523.21104647171,8452.29033123698,8065.88175549041 +1525564800,9808.41,9896.8525,9382,9607.08,8818.53326250798,8910.77990805016,2530.2836215738,8509.20031992171,8107.35228011491 +1525651200,9606.715,9624.7525,9178.2125,9359.5825,8813.39827072865,8942.72553088499,2537.10203246328,8563.37096450663,8150.02558251533 +1525737600,9357.0025,9455.4325,9041.25,9174.905,8807.48449180615,8959.25199014209,2543.72925274485,8613.22319523144,8192.94085648239 +1525824000,9179.765,9390.535,8961.97,9305.605,8806.0745090417,8983.90528497392,2550.48034799622,8660.22161633782,8236.40902855608 +1525910400,9304.695,9390.8,8996.3125,9015.02,8804.08683195821,8986.1200202911,2556.93458119693,8701.953912518,8279.12160966782 +1525996800,9011.27,9015.185,8344.295,8405.2475,8795.68224407618,8944.77370282061,2562.77357011811,8733.72172439298,8318.67887494193 +1526083200,8412.0225,8652.2775,8219.11,8475.4775,8790.61745893107,8911.36935141526,2568.67684739144,8757.62434558338,8355.46493150355 +1526169600,8479.865,8763.705,8334.64,8691.595,8788.88298548431,8895.72588440992,2574.79000374179,8776.7179979318,8390.3926054486 +1526256000,8693.46,8891.7075,8286.5525,8671.9725,8787.22979242655,8879.79919112742,2580.87746546629,8791.52066602572,8423.41390736616 +1526342400,8671.16,8855.0325,8415.025,8472.7075,8785.16968128733,8850.82253667573,2586.75990212363,8800.94262157385,8453.81374616859 +1526428800,8476.89,8500.215,8097.66,8345.1075,8782.25911496925,8814.82590449641,2592.5090691561,8804.75339607254,8481.21835752955 +1526515200,8345.265,8492.6575,7989.7,8062.51,8773.34988720773,8761.27630258063,2597.97034923422,8801.47197851372,8504.71175252002 +1526601600,8060.29,8278.525,7927.11,8237.32,8765.49202288429,8723.98126301445,2603.60070803867,8793.89543700305,8525.1978935104 +1526688000,8237.35,8392.75,8151.5775,8235.1525,8755.54968676523,8689.18659031384,2609.22328141647,8782.83209763138,8542.84692329511 +1526774400,8232.7625,8596.675,8164.655,8517.3525,8747.92814845366,8676.95549553455,2615.12199127199,8771.43538983725,8558.89908433614 +1526860800,8520.1,8589.4975,8309.28,8392.9275,8738.42306775347,8656.73847499449,2620.89058519345,8758.78732215069,8572.9596675856 +1526947200,8396.195,8407.11,7948.705,7986.6625,8723.26967708839,8609.04268456945,2626.24780242843,8741.70705423282,8583.61073694566 +1527033600,7986.66,8031.66,7436.9275,7501.415,8699.78591856145,8530.20210546552,2631.11519711999,8716.93327057611,8589.26953020555 +1527120000,7504.48,7735.04,7265.0575,7578.88,8676.430838849,8462.48730675278,2636.0550736741,8686.71393294839,8590.63167219705 +1527206400,7578.63,7658.2225,7316.015,7464.735,8649.09056859701,8391.46762138147,2640.87605520933,8651.2890738071,8587.6262945744 +1527292800,7464.21,7636.4225,7269.57,7334.285,8618.80814234314,8316.21770550317,2645.56198142629,8610.76021340288,8580.14347521051 +1527379200,7333.0325,7398.3175,7215.575,7342.2625,8588.02250307802,8246.89189007539,2650.25119396927,8566.45166483081,8568.6222875365 +1527465600,7342.575,7445.8975,7079.7725,7105.2875,8553.41240515114,8165.63286010078,2654.69912758629,8517.36805022255,8552.55471315149 +1527552000,7106.43,7530.875,7047.96,7463.0125,8524.58446472582,8115.62057090625,2659.49977503811,8467.87279125589,8533.73885151918 +1527638400,7463.0625,7563.2,7268.84,7379.63,8494.27009448415,8063.23300093697,2664.21237993336,8417.74592980197,8512.16455164978 +1527724800,7376.2725,7606.7875,7335.105,7486.93,8466.55636241839,8022.21194037106,2669.02740866807,8368.46037019231,8488.55301338087 +1527811200,7488.7975,7608.9325,7351.385,7512.7825,8441.31116106279,7985.95091814222,2673.86344133388,8320.51649104234,8463.26424148346 +1527897600,7512.7625,7697.4025,7438.555,7639.51,8418.77433240613,7961.29136602725,2678.82117113479,8275.18638933387,8437.01489787963 +1527984000,7638.0325,7784.65,7585.3,7709.2075,8396.87830532893,7943.34811825796,2683.84353749093,8233.00100186511,8410.24897685213 +1528070400,7711.3325,7756.5175,7446.5775,7492.7825,8372.89504078749,7911.27700378272,2688.64480953547,8191.89648374365,8382.29419360522 +1528156800,7494.435,7679.1575,7351.6825,7615.6225,8350.01602039959,7890.23241215897,2693.56393211816,8153.0984452532,8353.82107398718 +1528243200,7615.6225,7694.095,7482.5,7657.825,8326.40245710181,7873.68972798999,2698.52027863718,8116.89815470109,8325.14058028026 +1528329600,7654.67,7748,7629.97,7686.2175,8303.04574107226,7860.3455156463,2703.50002394529,8083.39339494435,8296.4858680819 +1528416000,7682.9375,7695.5,7537.3625,7624,8279.30955496184,7843.52251854921,2708.41267914104,8051.85800841,8267.72800275139 +1528502400,7624.405,7682.5675,7462.2275,7496.46,8253.4312476772,7818.81872111901,2713.19309285158,8021.11287102304,8238.50272549438 +1528588800,7496.71,7496.71,6632.975,6772.345,8218.98507457686,7744.33106128578,2717.24577323041,7985.0238578563,8206.22567731219 +1528675200,6772.42,6911.7725,6644.1775,6879.1525,8186.49304542535,7682.74793208963,2721.40104460628,7945.77379291804,8171.68155520687 +1528761600,6879.1875,6883.0475,6451.3625,6549.965,8151.53920690513,7602.11681063141,2725.22350466099,7901.41672529465,8133.95045850704 +1528848000,6550.1575,6624.385,6125.01,6300.405,8115.73080242084,7509.46138642494,2728.79298622471,7851.08424790614,8092.50343125872 +1528934400,6301.0525,6726.08,6271.025,6641.2375,8087.28913576618,7447.66149197375,2732.69919310657,7799.21737951476,8049.10001319407 +1529020800,6638.3125,6667.3225,6365.155,6389.6,8058.35846492737,7372.34901837193,2736.35026369629,7744.36121589117,8003.12019402484 +1529107200,6389.2025,6551.95,6330.4525,6485.1175,8032.33749228863,7309.19616684773,2740.09305425227,7688.34572959772,7955.31736412214 +1529193600,6486.11,6573.575,6428.285,6446.43,8006.53690209094,7247.78475110473,2743.79348216454,7631.5262756007,7905.88094557588 +1529280000,6448.17,6800.16,6376.44,6708.57,7984.90879772363,7209.40362012478,2747.75193761725,7576.80272843177,7856.12643371495 +1529366400,6710.775,6839.0425,6663.4875,6738.5225,7963.29482622566,7175.8864548201,2751.73634567207,7524.53546679611,7806.38187041049 +1529452800,6735.1275,6813.8675,6545.55,6756.5975,7943.44328740842,7146.04160309743,2755.73482185412,7474.89705889606,7756.90251566582 +1529539200,6757.7625,6788.1675,6681.0825,6717.83,7924.12619773763,7115.56164016625,2759.69060024202,7427.51536021308,7707.70627133228 +1529625600,6717.83,6729.5675,5937.815,6059.7875,7898.36825379432,7040.41197952372,2762.98543577905,7376.71122732531,7656.4698903435 +1529712000,6062.66,6265.6225,6038.57,6170.58,7873.99174088926,6978.49762152767,2766.38759759642,7324.48845216888,7603.97870060656 +1529798400,6170.3175,6260.0025,5743.85,6150.87,7849.51349126089,6919.58735603623,2769.76668409982,7271.37963818026,7550.46318228063 +1529884800,6149.29,6349.0525,6071.5825,6246.9125,7826.53323157842,6871.70657810211,2773.23828628293,7218.83126366874,7496.57520149972 +1529971200,6247.1,6275.45,6029.095,6071.065,7800.48890671747,6814.71717042331,2776.53085525328,7165.67806778475,7441.88587291258 +1530057600,6071.9775,6193.4375,5988.8925,6134.4525,7774.64760893057,6766.29615196442,2779.88342334499,7113.03475580348,7386.90922200619 +1530144000,6134.0225,6161.54,5820,5852.18,7745.29169419044,6701.22966094659,2782.95082174223,7058.82583449248,7330.81134465441 +1530230400,5849.745,6376.9975,5784.4,6201.4975,7721.04206343619,6665.65888791991,2786.36391821262,7006.81728462281,7275.21853547677 +1530316800,6201.865,6521.69,6189.765,6386.4525,7700.02327916896,6645.785067845,2789.95826715328,6958.66744908771,7220.99622808598 +1530403200,6386.235,6431.5,6256.1575,6347.705,7679.14593459576,6624.56782535852,2793.51034175085,6913.77342195978,7168.08633392203 +1530489600,6346.33,6672.54,6270.845,6614.4,7663.0934682969,6623.8440828495,2797.32513974359,6874.25152541111,7117.58418466753 +1530576000,6612.74,6669.865,6465.04,6503.6175,7646.68053722305,6615.28639370215,2801.02552314145,6838.53319982212,7069.05742807492 +1530662400,6503.975,6793.3575,6384.445,6584.91,7632.58209658582,6613.12421185718,2804.80337495037,6806.95556475769,7022.82834223537 +1530748800,6582.6825,6703.8,6447.8725,6530.5775,7618.90125857862,6607.24856369796,2808.52320905314,6778.58772640648,6978.67096875235 +1530835200,6529.865,6638.86,6450.8175,6593.61,7606.62573851078,6606.27777516037,2812.30226125929,6753.6506899978,6936.81394125515 +1530921600,6600.7525,6837.65,6508.8425,6755.6275,7597.98996347084,6616.90844010258,2816.23929963281,6733.15231619027,6897.83156260819 +1531008000,6755.2125,6780.475,6673.775,6703.5375,7588.84295401438,6623.07466847037,2820.12040029216,6716.03248633592,6861.42992001247 +1531094400,6702.955,6807.3775,6618.75,6664.815,7578.79690007252,6626.0457317217,2823.95896527402,6701.50540288581,6827.3808242432 +1531180800,6663.9525,6682.8125,6272.37,6301.69,7563.94197023565,6602.95819600833,2827.43115174293,6686.09780686622,6794.24156811718 +1531267200,6302.4725,6400.15,6283.1375,6381.985,7549.41546111454,6587.22939563394,2830.98003854634,6670.79314614469,6762.36315311478 +1531353600,6381.685,6381.9025,6073.8275,6246.47,7532.83976109648,6562.97425244714,2834.39008317327,6654.53398148292,6731.24701614667 +1531440000,6245.315,6339.875,6124.24,6214.195,7516.6577302046,6538.14825845526,2837.76449964843,6637.35110267599,6700.82396894027 +1531526400,6219.155,6323.15,6184.7975,6248.2625,7500.49713295985,6517.51428425166,2841.16956027297,6619.85133952118,6671.2786166593 +1531612800,6249.365,6388.04,6232.165,6345.355,7485.08650127857,6505.26004227341,2844.66815897048,6603.08149961666,6643.01455438006 +1531699200,6349.0475,6750.6625,6331.6,6726.5175,7473.37201419168,6521.00907630465,2848.54381945765,6590.35218457607,6617.46895206049 +1531785600,6726.41,7470.1975,6661.555,7316.35,7468.36171013929,6577.62118512313,2853.0045025901,6586.15596468566,6596.7345167589 +1531872000,7315.2775,7591.965,7236.2075,7374.955,7463.64210988429,6634.3751472891,2857.51924371683,6589.52274165348,6580.70179103278 +1531958400,7378.99,7564.495,7281.6075,7470.0775,7458.92449557576,6693.86016952549,2862.12444814599,6599.90472915636,6569.39076940271 +1532044800,7470.82,7682.6725,7258.8925,7330.025,7450.92947733691,6739.14217568955,2866.5852254993,6614.75759577557,6561.91382849976 +1532131200,7330.0275,7452.62,7207.895,7405.8525,7441.75947441572,6786.59840019124,2871.11725579489,6633.81572235706,6558.25955984227 +1532217600,7402.965,7575.105,7329.47,7398.9675,7432.14858054875,6830.18663396949,2875.63788726242,6656.1092046028,6558.09074363636 +1532304000,7397.8875,7815.975,7375.7025,7718.3325,7425.93492154989,6893.40456846327,2880.47286114037,6683.6324909717,6562.31768223922 +1532390400,7716.5175,8489.015,7695.5325,8397.7825,7427.60800428241,7000.48570137991,2885.98137450197,6721.09402823549,6573.11646356973 +1532476800,8391.55,8483.61,8048.3275,8164.3025,7426.55908624056,7083.32580338563,2891.25128037092,6764.38944931797,6589.00585614205 +1532563200,8163.9775,8302.3075,7844.755,7927.3375,7422.11820720077,7143.40228202424,2896.27933753045,6810.06157105523,6608.59818505197 +1532649600,7927.3675,8273.9875,7795.3175,8184.1175,7419.81091119073,7217.48005347267,2901.55874526331,6859.51395578513,6632.4742989071 +1532736000,8183.5775,8243.495,8061.025,8233.105,7417.24863990013,7289.77190754252,2906.88179140438,6912.07230813745,6660.36480003608 +1532822400,8229.2625,8290.0375,8120.7375,8215.66,7413.30430543241,7355.67632146402,2912.18210579853,6966.58074934089,6691.75716869775 +1532908800,8214.5025,8279.9475,7850.6625,8166.77,7408.62716556046,7413.40970625945,2917.42831627421,7021.79965686116,6726.05049246476 +1532995200,8166.7975,8172.5025,7634.57,7725.9375,7398.42014161196,7435.65533318612,2922.22915922516,7073.31481992097,6761.20391033628 +1533081600,7727.33,7755.135,7432.75,7603.06,7386.20805630809,7447.57114303827,2926.90252739145,7120.27536736696,6796.54752401601 +1533168000,7602.9125,7706.055,7457.305,7535.2725,7372.59355738509,7453.81369716308,2931.50355021434,7162.49690813204,6831.67570997554 +1533254400,7534.9075,7538.04,7279.3775,7414.94,7358.76486845057,7451.04668001558,2935.97983869661,7199.41447477562,6866.01972122134 +1533340800,7413.2475,7490.095,6930.8425,7013.51,7339.44700735199,7419.90296113585,2940.05086802904,7228.17910901613,6898.00062554084 +1533427200,7008.7875,7086.6675,6884.995,7030.395,7320.83471683372,7392.17791087812,2944.13469090275,7250.13370684324,6927.76233779416 +1533513600,7028.605,7166.2075,6835.765,6935.35,7300.53958177976,7359.66104844661,2948.11954299521,7265.47432065452,6955.0222375252 +1533600000,6934.37,7151.1325,6662.1175,6718.47,7277.83296562942,7314.02127771856,2951.88388236164,7273.36618449427,6979.07109795498 +1533686400,6717.02,6717.0475,6116.715,6279.1225,7250.17009951087,7240.3575185999,2955.20581634436,7271.26376189826,6998.43201927284 +1533772800,6281.4975,6629.3325,6185.4075,6541.67,7226.11073641639,7190.62516778698,2958.78656260834,7263.22696616692,7014.42193110626 +1533859200,6543.7625,6584.23,6007.8125,6134.1725,7196.70483738769,7115.42720976863,2961.95688601038,7246.85478179788,7025.72824246938 +1533945600,6132.7875,6488.3375,5995.65,6233.8525,7168.2460314472,7052.67700804488,2965.22356522311,7224.62839406341,7033.08289679849 +1534032000,6238.285,6485.2425,6165.425,6314.31,7141.57178219654,7000.12028405136,2968.56731219087,7198.47348497653,7037.09793760064 +1534118400,6313.935,6545.0875,6143.5675,6253.4025,7114.90881743841,6946.96915453197,2971.84691034778,7168.78619139747,7037.81214693974 +1534204800,6251.8275,6391.145,5889,6195.4,7088.83257464713,6893.47270603629,2975.06532410892,7135.9480609087,7035.2844444424 +1534291200,6194.68,6634.1475,6187.175,6270.1375,7064.94467109285,6849.10390837584,2978.35514293303,7101.44773082812,7030.08224633801 +1534377600,6269.4775,6479.845,6207.8525,6314.81,7042.62705327984,6811.07304138426,2981.68627846167,7066.26435393677,7022.62129044771 +1534464000,6314.895,6586.8625,6290.6225,6583.9,7024.44353601098,6794.90293802819,2985.28274915396,7033.14940693855,7014.13796054164 +1534550400,6583.5825,6615.955,6304.15,6396.4775,7005.33252982908,6766.54314465945,2988.68850541816,7000.40218797467,7004.04345818394 +1534636800,6394.18,6547.8675,6318.845,6484.53,6988.66247605535,6746.46954055076,2992.17877347332,6969.00177823855,6992.84540288555 +1534723200,6485.1425,6523.0125,6226.955,6258.78,6969.28532997847,6711.75595733539,2995.44016673946,6937.02927283892,6979.82741446429 +1534809600,6258.76,6499.07,6246.6425,6476.7975,6952.81329278424,6695.03169059869,2998.91597372548,6906.74720983628,6966.01668668479 +1534896000,6476.475,6903.49,6240.25,6356.3875,6935.54429068785,6670.92710701981,3002.26809241634,6877.07672461676,6951.07807254325 +1534982400,6357.11,6573.3525,6342.605,6525.685,6921.32160707,6660.58882098088,3005.78589192087,6849.62940629081,6935.80319739764 +1535068800,6526.03,6730.6375,6449.495,6692.28,6909.9150879019,6662.844588818,3009.46650863101,6825.68851276305,6920.90744370724 +1535155200,6692.3525,6793.47,6665.6375,6733.2925,6899.69862518547,6667.85904827186,3013.18439770602,6805.19382716743,6906.56970236886 +1535241600,6733.065,6772.8325,6565.5875,6706.6875,6889.1845537275,6670.62284486399,3016.8720122359,6787.48148196637,6892.69620418871 +1535328000,6704.3025,6945.175,6649.35,6908.6025,6881.58757169706,6687.56215947959,3020.75753811624,6773.95676434274,6880.06235572581 +1535414400,6910.085,7127.995,6863.2275,7075.9375,6876.41686248742,6715.20659016951,3024.80625288229,6765.44065441707,6869.24237008103 +1535500800,7074.985,7120.64,6898.235,7030.0975,6871.84912630924,6737.62042293251,3028.80515847143,6760.72242289403,6859.94977953628 +1535587200,7031.155,7053.655,6788.8625,6982.0175,6868.10636948352,6755.0165275584,3032.75206818467,6758.75381836602,6851.90824631067 +1535673600,6983.3125,7091.4025,6882.8725,7016.315,6865.8476682936,6773.61566802163,3036.72928010008,6759.36081708831,6845.17128443637 +1535760000,7015.315,7269.795,7014.1425,7190.8925,6865.91706566862,6803.31729749347,3040.8768203146,6763.59067089246,6840.31266852164 +1535846400,7193.56,7331.395,7129.4225,7291.145,6867.6575087957,6838.04071503201,3045.12031226823,6771.63110450949,6837.56962304131 +1535932800,7293.19,7333.625,7182.7975,7256.12,6869.26288282871,6867.79946284721,3049.32459833588,6782.4341761906,6836.64036751863 +1536019200,7256.545,7407.38,7223.79,7358.805,6872.22647665423,6902.7490776245,3053.62720810912,6796.30433986672,6837.76196268203 +1536105600,7357.3025,7385.2325,6654.7175,6685.4675,6866.91512025122,6887.28304544855,3057.25325813796,6806.75703537613,6838.21308811045 +1536192000,6683.08,6703.485,6250.505,6494.815,6858.67960399215,6859.34729735014,3060.68533935613,6812.65970900352,6837.32908856196 +1536278400,6493.455,6527.4475,6321.6275,6397.115,6849.39276488831,6826.44575244357,3064.01644972853,6813.92350409354,6834.85787733834 +1536364800,6397.94,6460.96,6174.7175,6251.295,6838.20402754895,6785.50670855145,3067.19864678299,6810.09943587613,6830.3930802279 +1536451200,6236.3125,6455.3975,6193.68,6289.405,6827.58767928211,6750.19434994798,3070.4157159548,6802.45214023787,6824.26497475681 +1536537600,6275.6375,6389.56,6268.0325,6340.54,6817.684222854,6721.03528627317,3073.68062666162,6792.1676697464,6816.83122408058 +1536624000,6325.2325,6420.395,6224.24,6325.1225,6807.92230680908,6692.85434264086,3076.92688474321,6779.66924683393,6808.17269073651 +1536710400,6308.4675,6379.505,6243.6825,6355.905,6799.18121320984,6668.87039778956,3080.20063516553,6765.72357888696,6798.54245139531 +1536796800,6343.4175,6531.01,6342.2125,6478.615,6792.15577110955,6655.32808032283,3083.59363141956,6751.76862972444,6788.52287878945 +1536883200,6463.795,6556.87,6386.5375,6473.28,6785.5184178045,6642.36995704967,3086.97791359242,6737.88056226386,6778.16476593946 +1536969600,6458.15,6541.045,6449.42,6503.625,6779.90952752161,6632.49413603695,3090.3891134995,6724.42990137009,6767.65060343527 +1537056000,6488.9775,6506.8425,6352.9225,6487.8875,6775.03841101049,6622.20108261633,3093.78119523554,6711.31932155844,6756.97393447223 +1537142400,6473.68,6513.1925,6251.3725,6302.7225,6769.02115745697,6599.46070079339,3096.98502050744,6697.00115648575,6745.48965869436 +1537228800,6286.985,6404.905,6268.8425,6363.5525,6765.30429482997,6582.66883162559,3100.24638008035,6682.33915928499,6733.53952140063 +1537315200,6348.0325,6513.92,6176.1775,6405.7775,6762.33064130534,6570.07776405107,3103.54664117373,6667.88606829352,6721.36771274818 +1537401600,6390.4225,6518.2475,6351.3925,6483.24,6761.03710529121,6563.89668018936,3106.92094626875,6654.39942937853,6709.33156469196 +1537488000,6468.2575,6708.155,6463.0175,6677.605,6762.38297637702,6571.99040148912,3110.48593756116,6643.50470599361,6698.19897196774 +1537574400,6662.3975,6736.59,6568.41,6647.5025,6762.87336085479,6577.36532815346,3114.01731503854,6634.57628053201,6687.82147476862 +1537660800,6629.5975,6695.1475,6593.7225,6638.72,6763.57462081028,6581.73253378266,3117.53639827052,6627.26677117085,6678.14089486499 +1537747200,6624.075,6654.605,6511.9225,6549.62,6762.91634948505,6579.44677405023,3120.9630100824,6620.58207069329,6668.79806720888 +1537833600,6533.9325,6550.5925,6339.925,6439.1375,6760.78203392103,6569.4596054611,3124.27589438838,6613.51408894886,6659.3823426504 +1537920000,6423.4325,6519.66,6381.95,6456.585,6758.53022152784,6561.42522767816,3127.60289077517,6606.3427154583,6650.00136233128 +1538006400,6439.4275,6665.58,6422.1475,6625.275,6758.58478657758,6565.9700337494,3131.09498652641,6600.60655943954,6641.32461858558 +1538092800,6610.9875,6708.9725,6494.735,6577.185,6758.37627598115,6566.76831140727,3134.53558241953,6595.68500497614,6633.14339865038 +1538179200,6561.7425,6577.9775,6437.965,6549.6875,6758.4121248799,6565.55250479493,3137.94528954153,6591.23845215811,6625.34262726949 +1538265600,6533.3075,6593.005,6486.685,6565.645,6759.63541892127,6565.5590885736,3141.36752445139,6587.35906652975,6617.97967506904 +1538352000,6550.5825,6592.865,6459.6025,6543.075,6760.23054238074,6563.95867844621,3144.76380856591,6583.78470834641,6610.95989070708 +1538438400,6528.0975,6561.5125,6432.805,6488.5325,6760.00112644754,6558.58986754419,3148.10224626843,6580.02068671038,6604.07463738539 +1538524800,6472.9775,6499.9325,6397.16,6460.5925,6759.20036641987,6551.61444672772,3151.40945540064,6575.89163556595,6597.23296802609 +1538611200,6445.095,6566.87,6440.425,6524.52,6759.26380057524,6549.68587280322,3154.77718817645,6572.05060970259,6590.69842135663 +1538697600,6512.255,6602.4075,6477.605,6552.9575,6759.36005817074,6549.91874616527,3158.16995075062,6568.72557915278,6584.57694886608 +1538784000,6574.68,6587.27,6532.38,6548,6759.24872076204,6549.78217043596,3161.55437637508,6565.81094075942,6578.83782474375 +1538870400,6548.9375,6589.7975,6493.26,6572.825,6758.41725444188,6551.42235156571,3164.9602083911,6563.47373021626,6573.56395891235 +1538956800,6572.1375,6670.28,6542.4575,6605.705,6757.44627716672,6555.28617286368,3168.39546758427,6561.91600791171,6568.85987295842 +1539043200,6604.92,6617.7075,6551.8075,6589.215,6756.01511892432,6557.70121576754,3171.81083328519,6560.87047742641,6564.63261485732 +1539129600,6589.3175,6590.9225,6431.2975,6525.59,6753.26861361729,6555.415549851,3175.15926550324,6559.70533867309,6560.61734001438 +1539216000,6525.4175,6526.1375,6051.4775,6152.845,6745.89272737117,6526.76070876802,3178.13220389691,6555.22958587123,6555.40359689057 +1539302400,6154.4875,6242.005,6110.9425,6191.895,6738.78106429592,6502.92507629953,3181.14116183433,6548.40649142982,6549.26043671448 +1539388800,6192.305,6224.21,6174.7,6197.1475,6731.66891151837,6481.15992765952,3184.15235973692,6539.75665177788,6542.30991566359 +1539475200,6197.5075,6305.725,6148.49,6182.4575,6724.12516511382,6459.89838580343,3187.14588466272,6529.55175055331,6534.59145248429 +1539561600,6182.325,6788.75,6150.965,6439.245,6719.58459471909,6458.42828450506,3190.39279893846,6520.37559640612,6527.16919024017 +1539648000,6439.5925,6491.7175,6385.75,6458.7975,6715.46179014962,6458.45456514416,3193.65599280384,6512.29413461497,6520.11980902364 +1539734400,6457.315,6463.78,6409.44,6440.6225,6711.29693417313,6457.18528453465,3196.89778265439,6505.02600974759,6513.36959143848 +1539820800,6441.2625,6488.875,6350.13,6394.3875,6706.90282628842,6452.71535861267,3200.0901745962,6498.09015070457,6506.74399562032 +1539907200,6393.85,6409.7075,6351.09,6384.235,6701.97251418198,6447.84094891212,3203.26924292191,6491.3998365535,6500.21910711482 +1539993600,6382.82,6423.885,6368.155,6413.0975,6697.17631109492,6445.36792149464,3206.47395373205,6485.21887489373,6493.91999616107 +1540080000,6412.7375,6461.1625,6402.6925,6412.975,6691.79580369409,6443.06220385586,3209.67534263598,6479.50932654846,6487.85079083565 +1540166400,6413.2125,6427.95,6372.2975,6407.685,6685.50296899956,6440.54406596718,3212.86825368887,6474.19123234506,6481.99488609707 +1540252800,6408.2925,6417.27,6355.14,6394.55,6677.94492275329,6437.27022327914,3216.04486286238,6469.12760857949,6476.30665830975 +1540339200,6395.38,6468.92,6392.725,6413.46,6669.19378508538,6435.5754193138,3219.23718034289,6464.48058110893,6470.86474074766 +1540425600,6413.48,6421.9825,6363.87,6392.9525,6658.96966936189,6432.54153375044,3222.40583579067,6460.03917369646,6465.59129917724 +1540512000,6392.94,6450.075,6378.8125,6405.34,6648.71171725551,6430.60533740642,3225.58369538535,6455.91240957889,6460.53870177792 +1540598400,6405.3125,6422.2675,6386.0775,6409.2975,6638.34698838354,6429.08865245535,3228.76233337745,6452.11438591803,6455.72219613003 +1540684800,6409.2675,6421.8925,6384.6625,6405.5225,6627.98945729258,6427.41122137204,3231.93402881777,6448.58701293993,6451.1256417422 +1540771200,6405.1675,6418.0275,6205.0925,6265.6225,6615.5231491701,6415.89515269377,3234.96288066266,6444.10339500456,6446.21939331898 +1540857600,6265.445,6291.24,6240.37,6270.63,6602.74832493863,6405.55522627124,3237.99370800113,6438.91513173431,6441.06721946772 +1540944000,6270.65,6356.795,6201.48,6305.1325,6589.6308741156,6398.40716920774,3241.05595683679,6433.49028000574,6435.8397770755 +1541030400,6305.6625,6363.08,6288.49,6342.2975,6576.39512380878,6394.41330116408,3244.15225405342,6428.23896764523,6430.7035516537 +1541116800,6343.2725,6379.58,6327.6175,6349.3525,6564.1951972484,6391.20588796184,3247.25250366145,6423.23680941605,6425.69682507128 +1541203200,6349.0125,6350.505,6311.775,6332.705,6552.44714517871,6387.04181374334,3250.33303700382,6418.33895690257,6420.76462793742 +1541289600,6332.5775,6465.9925,6315.0125,6422.5075,6541.89927655666,6389.5662497806,3253.50015405153,6414.34557618931,6416.25836848218 +1541376000,6425.5625,6441.2825,6370.145,6404.12,6531.74441155048,6390.60218099776,3256.64575084685,6410.97186232617,6412.08941220231 +1541462400,6404.59,6453.465,6385.2525,6448.9275,6523.02926690054,6394.75375827469,3259.83294312356,6408.52445683926,6408.41402913078 +1541548800,6448.845,6544.225,6446.2675,6502.23,6516.08198936601,6402.40388227898,3263.07017080888,6407.32106021302,6405.40541821934 +1541635200,6502.0925,6512.7125,6387.83,6406.6025,6509.40236749588,6402.70273852569,3266.20869138711,6406.32482547645,6402.65713255416 +1541721600,6406.87,6420.64,6308.5,6332.5725,6502.64222454708,6397.7108909084,3269.27016647495,6404.86766251829,6399.87785825644 +1541808000,6332.3975,6374.0625,6328.665,6348.9925,6496.90000620747,6394.24313165523,3272.34497879013,6403.18584182363,6397.14273200502 +1541894400,6348.985,6363.6175,6272.6775,6358.58,6492.22884665148,6391.70464151858,3275.42629340979,6401.41661775781,6394.49453387307 +1541980800,6357.94,6384.7625,6298.8125,6324.86,6488.23645361245,6386.94666162991,3278.47086538736,6399.29928143167,6391.80853694649 +1542067200,6324.8475,6328.02,6249.2125,6259.6275,6483.87036047307,6377.88412502689,3281.44726914748,6396.34994190854,6388.8517617344 +1542153600,6257.775,6297.3775,5306.2325,5602.1625,6471.95454613989,6322.66851152014,3283.76428444921,6387.05799972399,6383.17562258935 +1542240000,5605.0075,5645.46,5198.475,5576.9575,6460.5431194611,6269.58904374277,3286.05382161414,6372.41049427566,6374.93758473846 +1542326400,5573.3775,5609.565,5411.805,5512.78,6449.05043354414,6215.71962163369,3288.27699771067,6352.92884361985,6364.14422831573 +1542412800,5514.51,5547.1225,5453.9375,5502.6175,6437.22382093374,6164.96124405512,3290.48780787765,6329.55074933922,6351.01519952303 +1542499200,5502.435,5664.95,5501.595,5560.145,6426.675211341,6121.91062009812,3292.75384654277,6303.6664962244,6336.01590608404 +1542585600,5557.3375,5559.6325,4684.5875,4735.99,6405.48520056884,6023.26124016402,3294.19478173685,6268.81960233166,6316.24976472141 +1542672000,4735.62,4893.7,4039.2725,4354.4625,6379.35197092925,5904.47668745253,3295.25335906443,6223.60226332979,6290.75595954366 +1542758400,4352.625,4635.4475,4241.1825,4544.4975,6355.63010976272,5807.67381027477,3296.50061152852,6171.88695438862,6260.83537835323 +1542844800,4545.72,4591.19,4185.17,4266.62,6328.32799879329,5697.98210021282,3297.46918425029,6112.87071267891,6225.92804870132 +1542931200,4269.7225,4366.6175,4080.745,4286.6775,6300.96844023698,5597.5258968126,3298.45681546576,6048.53163537613,6186.66552762883 +1543017600,4288.85,4373.08,3656.08,3782.6575,6267.02535385023,5468.34415334818,3298.94024418646,5976.01258199271,6141.66305597139 +1543104000,3780.1625,4120.955,3465.1275,3935.5125,6234.66016618469,5359.23769374774,3299.57580155161,5898.71224145078,6092.15583424592 +1543190400,3934.365,4072.4,3516.245,3729.05,6199.99577649531,5243.20146278883,3300.00459103697,5816.36180736763,6037.93416764305 +1543276800,3728.8625,3830.6525,3559.565,3772.035,6165.76167249625,5138.48431143879,3300.47586888524,5730.94020230272,5979.76597794548 +1543363200,3774.7375,4366.92,3774.3575,4222.17,6137.3128942351,5073.26135614299,3301.39609355431,5647.62172480137,5919.90631185922 +1543449600,4222.1925,4418.2775,4079.085,4245.0575,6108.66991719965,5014.31007445865,3302.33825047616,5566.9515940396,5858.81146253138 +1543536000,4245.13,4298.2,3859.475,3971.615,6076.52624365654,4940.09137746834,3303.00646019406,5486.79376482913,5795.78456557871 +1543622400,3973.5325,4269.5175,3907.8975,4140.5975,6045.99901848864,4883.18366274816,3303.84271585784,5409.21115606242,5731.86602496567 +1543708800,4142.0275,4263.875,4032.18,4102.0975,6014.63789343486,4827.58620318749,3304.63969797997,5334.08501589733,5667.22763958395 +1543795200,4101.76,4117.88,3742.8875,3833.88,5979.81222802489,4756.85451815478,3305.16809451125,5259.31056337058,5601.16184128512 +1543881600,3833.81,4040.8425,3730.4125,3903.5,5945.77875161459,4696.11302051116,3305.76547249287,5186.07369426531,5534.3023826943 +1543968000,3904.8775,3914.7975,3661.3375,3694.325,5908.7976753431,4624.80607434433,3306.15341253778,5112.92662983335,5466.17932036532 +1544054400,3695.7275,3847.4,3411.9675,3435.64,5868.52751135934,4540.16161911974,3306.28269268406,5038.24951855409,5396.18047536486 +1544140800,3433.605,3554.34,3209.9275,3379.455,5827.8743035762,4457.54289868143,3306.35574833236,4962.47351187883,5324.51749959767 +1544227200,3377.86,3487.2225,3250.145,3397.8,5787.70825044749,4382.11074309587,3306.44704679395,4886.60710658807,5251.67178004426 +1544313600,3398.0475,3638.2475,3368.1225,3532.5225,5749.34318025049,4321.63732768858,3306.67276181381,4812.48681878056,5178.5277149066 +1544400000,3531.07,3591.6675,3354.0575,3409.4375,5709.50468390824,4256.70724001076,3306.77536271361,4739.37975773722,5104.92207966963 +1544486400,3408.8925,3429.9925,3293.9125,3349.4975,5669.32791122162,4192.1323451543,3306.81801673876,4667.22009461838,5030.94572426788 +1544572800,3347.8175,3487.89,3324.9975,3431.8775,5630.9308881668,4138.01765201909,3306.94287683899,4597.17580287838,4957.22061474946 +1544659200,3431.3575,3439.62,3223.0475,3263.2925,5591.28560193376,4075.75499959291,3306.89929605419,4528.01994768645,4883.3671713328 +1544745600,3263.2975,3298.4525,3135.2525,3195.4475,5552.46402459741,4013.0949974782,3306.78802194635,4459.60633280805,4809.41899508792 +1544832000,3194.2625,3231.1725,3124.5125,3181.675,5514.07290074224,3953.91479189743,3306.66310839279,4392.27571053167,4735.61138098722 +1544918400,3181.6825,3261.37,3173.3675,3192.87,5476.17307900406,3899.74387060942,3306.54949670538,4326.51489002242,4662.25337178309 +1545004800,3193.15,3587.21,3183.1525,3499.5975,5442.3701024962,3871.26158181809,3306.74223693117,4265.26559736882,4590.74205066849 +1545091200,3499.7375,3686,3431.3875,3667.9625,5410.59341813612,3856.79081915557,3307.10288129878,4209.71285300354,4521.82624537126 +1545177600,3668.5975,3923.69,3642.43,3683.645,5378.94525234793,3844.46635594305,3307.4788230943,4159.46241535262,4455.60474139477 +1545264000,3682.785,4175.0175,3658.135,4075.2,5352.21373418424,3860.88990184176,3308.24532028909,4117.39343076078,4393.57715161248 +1545350400,4074.0825,4162.9825,3771.8325,3839.425,5322.43904300446,3859.36203709516,3308.7756531061,4080.38071056343,4334.73077242777 +1545436800,3840.2525,4010.69,3787.205,3980.5025,5294.31500882091,3867.98477592824,3309.44630901517,4049.06727571569,4279.55009313236 +1545523200,3980.645,4054.135,3905.9,3944.385,5265.85476171642,3873.42291908176,3310.08023541989,4022.40105883124,4227.79542849903 +1545609600,3945.94,4238.61,3944.17,4034.35,5238.62604211591,3884.87765647218,3310.80335047718,4000.5663112216,4179.71065795824 +1545696000,4034.56,4045.22,3675.5225,3779.115,5208.40479885376,3877.34950491006,3311.27091549485,3980.68868159824,4134.20149379962 +1545782400,3778.72,3859.09,3683.015,3809.235,5178.84608879256,3872.50113655732,3311.76808567246,3962.853371141,4091.33454429408 +1545868800,3808.3425,3841.1625,3566.69,3589.7125,5146.38698276251,3852.37233318702,3312.04558695847,3944.95472275484,4050.21805589133 +1545955200,3590.2325,3983.8525,3575.54,3888.1825,5117.55911345829,3854.92128923848,3312.62080533325,3929.73889341665,4011.98557176194 +1546041600,3887.885,3949.0725,3688.3775,3727.34,5086.57445297095,3845.84009447736,3313.03486333881,3915.47128825232,3975.92887162683 +1546128000,3727.0525,3867.3975,3687.945,3831.0375,5056.77276549411,3844.78645060668,3313.55204012101,3903.00355645624,3942.39071262455 +1546214400,3831.2325,3838.3,3624.6325,3692.3525,5025.53020881723,3833.93625147537,3313.93023665722,3890.92544716702,3910.75989357835 +1546300800,3692.905,4006.695,3625.39,3823.3175,4996.21999377405,3833.1804121917,3314.43881180163,3880.4044479362,3881.4882522852 +1546387200,3825.325,3916.8075,3767.78,3888.3275,4968.08839856074,3837.10576400375,3315.01178553592,3871.81741464224,3854.73123572077 +1546473600,3889.845,3894.2175,3750.0175,3787.1975,4938.94773386633,3833.55330996983,3315.48321844209,3864.02142631491,3829.99418649589 +1546560000,3786.3525,3851.6325,3730.8325,3820.7825,4910.22983494511,3832.64428786098,3315.98771212221,3857.23395128986,3807.32559907908 +1546646400,3821.6525,3873.8525,3776.775,3796.1175,4881.13123901657,3830.04432295591,3316.46707643651,3851.12162391288,3786.54206514716 +1546732800,3796.995,4085.235,3756.55,4040.9525,4855.39983403799,3845.05669854706,3317.19040680896,3847.73410995551,3768.48636032448 +1546819200,4040.925,4072.215,3966.5625,4006.0575,4829.46311815305,3856.51668334121,3317.87817563754,3846.31589988999,3752.86296318578 +1546905600,4005.405,4113.205,3941.5525,3993.475,4803.55694406642,3866.26533187077,3318.55269535415,3846.42130496904,3739.4765520121 +1546992000,3994.44,4046.705,3960.37,4001.705,4778.01006461804,3875.90588349088,3319.2347585053,3847.85040880384,3728.21855855666 +1547078400,4003.3525,4035.385,3544.86,3625.9725,4748.01413064733,3858.11570637059,3319.54100721312,3847.10804081388,3717.5316568897 +1547164800,3626.13,3698.6225,3570.84,3635.0225,4718.30297899646,3842.23600434667,3319.85598573202,3844.66387612602,3707.44182251892 +1547251200,3634.525,3650.4825,3559.645,3617.965,4688.44818099965,3826.27246704507,3320.15361946943,3840.69333090053,3697.87197839896 +1547337600,3616.4975,3646.305,3454.2175,3514.2175,4657.47444532483,3804.06049576913,3320.34737395285,3834.60450049926,3688.42227128522 +1547424000,3515.37,3713.8175,3507.245,3664.04,4628.62973905921,3794.09388232433,3320.69051862784,3828.12079084452,3679.68394357063 +1547510400,3664.0125,3684.8725,3541.0775,3581.695,4598.99592606242,3778.97539881515,3320.95110698833,3820.6564162064,3671.31855115985 +1547596800,3581.3225,3667.2025,3571.9675,3607.3425,4570.00040952788,3766.75862478143,3321.23704178596,3812.6715015485,3663.42282783925 +1547683200,3609.215,3658.6975,3540.295,3641.015,4541.8935855515,3757.80823437994,3321.5563099204,3804.61846132651,3656.11381375121 +1547769600,3639.84,3643.52,3577.61,3609.315,4513.97804762285,3747.23853415068,3321.84360983521,3796.30495289308,3649.24951714632 +1547856000,3609.31,3812.475,3605.4,3683.4125,4487.72595307149,3742.69541775475,3322.2046022741,3788.48958196095,3643.09786094268 +1547942400,3682.17,3702.8125,3473.4275,3534.25,4459.58489060854,3727.85834057052,3322.41630960667,3779.86211400901,3637.05820402872 +1548028800,3535.4675,3569.005,3487.01,3532.23,4431.43835121916,3713.93357878045,3322.62578878994,3770.62366143898,3631.13620311728 +1548115200,3532.2275,3611.6075,3422.5425,3576.72,4403.81579348355,3704.16676077591,3322.87947789735,3761.34702644839,3625.51222458875 +1548201600,3575.5475,3614.8675,3521.67,3553.6125,4375.64851829048,3693.4503573567,3323.10984306052,3751.91941483045,3620.09490660256 +1548288000,3553.6025,3595.545,3528.485,3570.3125,4347.92356526432,3684.68544463479,3323.35665160089,3742.59346273831,3614.95019926637 +1548374400,3570.2725,3578.245,3510.6525,3560.8175,4320.38414051458,3675.86856453738,3323.59373386415,3733.34968359557,3610.03849614189 +1548460800,3561.0525,3662.0075,3538.0575,3556.505,4293.1037621752,3667.37230475339,3323.82627379857,3724.21613701216,3605.3422489938 +1548547200,3556.3425,3563.19,3472.21,3531.82,4265.74817679191,3657.72373569493,3324.03393591922,3715.03883934517,3600.76765566097 +1548633600,3531.8075,3536.2175,3368.7775,3430.0375,4237.32095492107,3641.51710333439,3324.13977048123,3705.02499963906,3595.93728804949 +1548720000,3430.52,3438.7725,3331.09,3394.6025,4208.72310868866,3623.94180200588,3324.21012087163,3694.10318527872,3590.75732140565 +1548806400,3393.0725,3462.265,3372.2225,3436.6025,4180.942843503,3610.60705129061,3324.32233406297,3682.89188443567,3585.43564501753 +1548892800,3436.815,3474.425,3394.7425,3411.5775,4153.14812854776,3596.44019242535,3324.40945011751,3671.32300989639,3579.90990231418 +1548979200,3412.3025,3459.11,3369.465,3437.85,4125.96153605045,3585.15179399941,3324.5227098085,3659.78709194146,3574.31752303698 +1549065600,3437.7025,3486.835,3411.7625,3466.5775,4099.47778798296,3576.71171423616,3324.66453811995,3648.62635407046,3568.79377448751 +1549152000,3469.12,3473.1275,3387.43,3415.1975,4072.66544383763,3565.21518488673,3324.75492674463,3637.42658798909,3563.15965520548 +1549238400,3415.5825,3436.815,3395.9625,3411.4525,4046.17433715096,3554.27040688061,3324.84148609547,3626.25915832813,3557.43168322303 +1549324800,3410.1225,3432.065,3398.91,3429.8175,4020.34086495021,3545.41188936039,3324.94629474553,3615.37363188165,3551.70882017377 +1549411200,3429.9275,3444.205,3334.485,3366.5525,3994.24456879022,3532.68073607504,3324.98783461778,3604.26721729361,3545.77333627495 +1549497600,3366.0075,3382.2075,3350.6,3359.655,3968.32163523898,3520.36482033722,3325.02244651311,3593.01546512797,3539.63967659841 +1549584000,3359.1175,3709.55,3341.7875,3622.38,3945.93415091434,3527.6262277163,3325.31932998781,3584.01260450985,3534.33997729563 +1549670400,3623.205,3666.74,3592.7825,3624.04,3923.85251258995,3534.48892873609,3325.6175744058,3576.95206331229,3529.8296133505 +1549756800,3624.35,3657.2125,3578.28,3648.38,3902.43932613532,3542.59565822498,3325.93982224948,3571.76089953852,3526.15041930018 +1549843200,3649.3475,3651.3125,3578.4475,3589.835,3880.68091300671,3545.95813924086,3326.20329669769,3567.64642444866,3523.02453677562 +1549929600,3589.9075,3619.315,3546.645,3587.8775,3859.2187032059,3548.94194573465,3326.46455371236,3564.4363774066,3520.40933305191 +1550016000,3587.81,3629.4475,3556.3,3575.5225,3838.1315967095,3550.83394096046,3326.71321458419,3561.89133892878,3518.22460784596 +1550102400,3575.955,3606.51,3533.8025,3561.6375,3817.37783267702,3551.60293478657,3326.94776432852,3559.79536559057,3516.38957651745 +1550188800,3561.13,3618.16,3545.63,3566.85,3797.32922292529,3552.68821593998,3327.18728408673,3558.13201376893,3514.90112009879 +1550275200,3569.3725,3609.145,3565.3125,3581.1725,3778.35375095319,3554.71571803472,3327.44086437261,3556.96276918309,3513.78947798426 +1550361600,3581.375,3672.3025,3555.3725,3625.62,3760.77400856124,3559.76266181282,3327.73856811959,3556.59436708711,3513.19465605909 +1550448000,3625.6925,3917.995,3616.5225,3868.6225,3747.01912970036,3581.74720485365,3328.27858971723,3558.98869009136,3513.9926045538 +1550534400,3868.7675,3979,3841.0475,3889.15,3734.45512388917,3603.62803604371,3328.83856692712,3563.81263748251,3516.13940865406 +1550620800,3889.705,3965.97,3864.835,3939.67,3723.68881622905,3627.54739397474,3329.44842450827,3571.0304445244,3519.70305387786 +1550707200,3938.335,3987.7475,3867.225,3899.2,3713.84190646905,3646.88353830599,3330.01726772567,3579.80540817538,3524.39679093585 +1550793600,3899.15,3955.755,3884.64,3942.225,3706.44019929651,3667.90584769546,3330.62849941177,3590.1575126275,3530.26928437817 +1550880000,3940.9325,4156.77,3910.545,4111.955,3701.96378972887,3699.51312223908,3331.4085802392,3603.1848972271,3537.83908372413 +1550966400,4111.14,4189.02,3691.9425,3732.395,3693.655250954,3701.8536436262,3331.8089273641,3615.01939121195,3545.49996518027 +1551052800,3733.3925,3860.32,3732.2875,3819.89,3687.4471905267,3710.25543316385,3332.29623028638,3626.52657127178,3553.54566079666 +1551139200,3818.985,3828.5975,3763.1875,3797.6825,3682.24713059405,3716.47846340654,3332.76087458819,3637.4730184361,3561.82920742678 +1551225600,3796.58,3823.54,3654.1475,3799.37,3679.24953237531,3722.37865607858,3333.2267397961,3647.87811473195,3570.30547343973 +1551312000,3798.535,3901.195,3754.455,3792.1725,3677.10931330897,3727.34655923712,3333.68495385654,3657.68567684257,3578.89888444691 +1551398400,3792.14,3843.77,3789.6025,3806.51,3675.36389421924,3732.9813872579,3334.1570250751,3667.04081342032,3587.62117159551 +1551484800,3805.9725,3818.41,3759.58,3810.6275,3674.52997832539,3738.50821236261,3334.63273591051,3675.9784657754,3596.44398831518 +1551571200,3810.845,3819.6975,3759.2425,3787.94,3673.87545764754,3742.02675096342,3335.08532046432,3684.29926642409,3605.23979528309 +1551657600,3787.995,3805.6375,3672.0725,3700.075,3672.98036664552,3739.0406389454,3335.4497282388,3691.28108723615,3613.64587040907 +1551744000,3701.1025,3876.36,3691.99,3844.8225,3673.72283760961,3746.57015748346,3335.95828891473,3698.35229134696,3622.21021414976 +1551830400,3844.8475,3889.1325,3809.24,3851.4,3674.75045288991,3754.03191165097,3336.47290885425,3705.49276230149,3630.91186695884 +1551916800,3851.795,3890.79,3829.09,3855.7375,3675.50410989276,3761.27128242081,3336.99134557899,3712.66598745846,3639.72267396649 +1552003200,3855.7675,3913.8125,3765.835,3843.515,3675.55545152983,3767.12536354566,3337.49706167994,3719.6984880719,3648.55392670268 +1552089600,3841.6475,3948.115,3835.575,3917.53,3676.90976127559,3777.83111675423,3338.07616986854,3727.19426262451,3657.6500390695 +1552176000,3916.965,3917.02,3865.885,3898.95562045,3678.66046962291,3786.45271961599,3338.63615510592,3734.84579838701,3666.88399997833 +1552262400,3899.7175,3911.595,3815.0525,3850.195,3679.86446831731,3790.98987444599,3339.14689836972,3742.13780866309,3676.02508500963 +1552348800,3850.185,3877.21,3797.045,3861.24,3681.73621583201,3795.99025558305,3339.66815909543,3749.16648438111,3685.08838058222 +1552435200,3862.3025,3872.2975,3824.925,3850.965,3684.18806178568,3799.90334004843,3340.17864077295,3755.82893138235,3694.00747380344 +1552521600,3850.25,3902.745,3780.2225,3854.6225,3686.94849905613,3803.79823209453,3340.69226445149,3762.16410849618,3702.7747560968 +1552608000,3855.4775,3909.7425,3846.1575,3901.3025,3690.93599539192,3810.73855423875,3341.25198090304,3768.57881452452,3711.54630422 +1552694400,3900.5825,4039.2475,3899.6775,3989.8,3696.48915570977,3823.48408983313,3341.89949493845,3775.76853312743,3720.62282323968 +1552780800,3990.355,3991.36,3932.76,3965.74,3701.73546054531,3833.60981934925,3342.52234085115,3783.32570133376,3729.85325037323 +1552867200,3965.7975,4017.02,3934.77,3969.92,3706.88788533654,3843.31233376811,3343.14873824674,3791.15597207539,3739.20542786419 +1552953600,3969.8025,4011.2325,3950.2225,4000.07,3712.2432874372,3854.47029357435,3343.80461217529,3799.40387006386,3748.74754245204 +1553040000,3999.73,4048.1175,3963.7875,4031.885,3718.18146304944,3867.09861479728,3344.49159555275,3808.19907762607,3758.54755360861 +1553126400,4032.345,4058.8625,3905.785,3973.595,3723.37543290027,3874.67899293231,3345.11969597416,3816.86461700278,3768.32640672628 +1553212800,3973.6925,3999.3875,3961.13,3983.655,3728.54214795619,3882.43586974691,3345.75721325782,3825.43553435347,3778.08696244052 +1553299200,3983.2675,3999.77,3959.8425,3982.725,3733.8127018314,3889.5744174892,3346.3931655233,3833.84647404689,3787.79040590841 +1553385600,3980.62,3981.43,3944.86,3970.085,3738.72169619742,3895.30513462238,3347.01586300244,3841.94382161871,3797.35721788466 +1553472000,3969.7925,3978.25,3855.625,3908.16,3742.44536509838,3896.22013976788,3347.57611250424,3849.17785453424,3806.52904203017 +1553558400,3907.8525,3925.8975,3881.465,3920.73,3745.73681038268,3897.96474366446,3348.14835260932,3855.7477747671,3815.3522943421 +1553644800,3920.7025,4036.0525,3913.76,4026.295,3749.45835233085,3907.09924966047,3348.82541808376,3862.62712311327,3824.22193608836 +1553731200,4026.0275,4026.0425,3994.1,4012.5025,3752.50633119905,3914.60181881071,3349.48803706164,3869.58233215196,3833.04844438147 +1553817600,4012.2125,4100.5275,4006.5975,4088.1575,3756.21597092684,3926.95545586978,3350.22552885977,3877.1938432941,3842.08784991305 +1553904000,4088.0625,4130.43,4039.9475,4093.4975,3759.49063648016,3938.80986451927,3350.9676158283,3885.32565130211,3851.30808126375 +1553990400,4093.82,4101.9025,4075.405,4095.32,3763.17857403356,3949.95020516698,3351.71078148735,3893.83096023205,3860.66582793559 +1554076800,4094.2825,4149.0225,4052.07,4136.915,3767.24930623676,3963.25829858324,3352.49473385044,3902.92959678987,3870.27113479402 +1554163200,4136.345,5108.63,4131.7525,4902.065,3781.07831559947,4030.08225489769,3354.04183362814,3919.05223023382,3882.95610389551 +1554249600,4901.035,5348.0025,4784.6525,4975.835,3795.92847998697,4097.40062834733,3355.66104116071,3941.45178598585,3898.68956380145 +1554336000,4973.65,5074.09,4780.29,4906.9525,3810.38324739114,4155.0242678292,3357.209859387,3968.22619588617,3916.89278520932 +1554422400,4908.11,5073.38,4886.055,5039.8725,3826.49927974668,4218.00747781511,3358.88983934926,3999.5173583609,3937.78898166413 +1554508800,5040.0875,5240.86,4909.795,5044.8925,3842.823334546,4276.86488532634,3360.57315400655,4034.29730272422,3961.08923211272 +1554595200,5045.1925,5265.14,5025.7325,5193.965,3860.55242599224,4342.14377384135,3362.40362286579,4072.93546488249,3987.06408541646 +1554681600,5194.5225,5352.4175,5129.43,5286.6,3879.63873897709,4409.36986149337,3364.324751486,4115.21453508825,4015.73786320154 +1554768000,5287.595,5287.885,5143.2675,5191.3975,3897.36260088599,4465.03433499298,3366.14891132233,4159.3004525045,4046.41329968606 +1554854400,5187.79,5472.3,5164.9275,5320.65,3916.79690367609,4525.93678033568,3368.10029633912,4205.60908940812,4079.29246034646 +1554940800,5323.3175,5344.38,4966.18,5041.97,3932.45549597883,4562.66785743133,3369.77149738306,4250.93689233708,4113.01143970876 +1555027200,5040.825,5118.4975,4909.4075,5081.23,3948.54806495315,4599.57894243855,3371.48022729793,4295.40531786368,4147.51975732493 +1555113600,5081.1775,5127.258,5036.165,5066.2325,3964.57747991423,4632.79519121203,3373.17227761771,4338.65267395683,4182.56335236099 +1555200000,5065.59,5188.6225,5012.885,5161.725,3981.69776598243,4670.44424333588,3374.9579788406,4381.34711382427,4218.32498546295 +1555286400,5161.635,5190.93,4946.7275,5032.24,3997.12026671042,4696.19674787339,3376.61261864787,4422.09822727009,4254.11958795157 +1555372800,5031.135,5234.2325,5017.99,5203.27,4014.41800683864,4732.2900573877,3378.43636377927,4462.37681240393,4290.45504377853 +1555459200,5202.125,5279.815,5173.8975,5232.93,4032.34852746924,4767.92544601872,3380.28790078603,4502.17485801711,4327.26015891201 +1555545600,5227.8275,5320.915,5222.3875,5282.15,4051.16512758894,4804.52778287807,3382.18673073599,4541.65901873524,4364.54188306668 +1555632000,5282.055,5360.6425,5191.5875,5288.225,4070.41839560571,4838.9571938075,3384.0897301979,4580.59613563022,4402.14184751797 +1555718400,5288.965,5359.9925,5259.21,5319.1475,4090.7320448345,4873.13698395515,3386.02170289441,4619.01392044539,4440.00777814401 +1555804800,5319.8825,5346.525,5210.4175,5296.6375,4110.73361638156,4903.28161323892,3387.92927258618,4656.47775047984,4477.88906477742 +1555891200,5296.14,5443.3125,5250.305,5387.1,4131.88366751212,4937.71964898394,3389.92525602466,4693.61493101571,4515.98296333385 +1555977600,5387.075,5641.495,5363.61,5531.93,4154.8735955282,4980.0153489166,3392.06384575863,4731.41435716799,4554.67446239227 +1556064000,5531.9225,5625.0625,5374.4575,5442.5525,4176.47454523335,5012.93859321297,3394.11106530747,4768.65919428976,4593.42912665204 +1556150400,5442.3375,5512.005,4821.9125,5133.6225,4194.27529795113,5021.52883452976,3395.84780342947,4802.45518280101,4630.92862981788 +1556236800,5133.6125,5291.745,5044.225,5152.02,4212.20701325458,5030.81715333665,3397.601175751,4833.28072032197,4667.20755638189 +1556323200,5154.2775,5218.3625,5116.6575,5170.5475,4230.30508740058,5040.76311406227,3399.37129545712,4861.55618263843,4702.30265047712 +1556409600,5171.1175,5214.1975,5100.985,5157.275,4248.2594327898,5049.05639228905,3401.12639652607,4887.37455074776,4736.13191677992 +1556496000,5155.0925,5191.21,5070.6625,5149.055,4266.06149390665,5056.17426073109,3402.87153839731,4910.87723776605,4768.64419134769 +1556582400,5150.28,5288.605,5129.37,5269.5575,4285.57636295787,5071.36281044811,3404.73524829117,4933.31337469192,4800.28372634705 +1556668800,5270,5358.4875,5266.975,5323.21,4305.67513078835,5089.28921166269,3406.65066440797,4955.14192851939,4831.20785294683 +1556755200,5323.7625,5422.29,5306.9075,5389.005,4326.47893981134,5110.62288420293,3408.62985826509,4976.85070825995,4861.60908046186 +1556841600,5389.0025,5797.3775,5365,5658.98,4350.64762731065,5149.6547657345,3410.87662066115,5000.60714937484,4892.43656635717 +1556928000,5660.205,5842.5525,5514.5025,5766.9175,4376.09868398991,5193.59132682514,3413.22890529149,5026.77590589885,4923.94525760009 +1557014400,5768.4225,5780.7675,5627.4575,5714.345,4400.87104726729,5230.65840426964,3415.52635270409,5054.24855323041,4955.75972087076 +1557100800,5716.1625,5754.94,5565.1925,5686.8525,4425.28877052641,5263.13015194463,3417.79405766356,5082.31873940664,4987.62999826446 +1557187200,5687.53,5970.455,5687.53,5747.2475,4450.49528982931,5297.58946765755,3420.11979724539,5111.15995491093,5019.65906165837 +1557273600,5746.46,5987.295,5657.7375,5941,4478.19301202976,5343.38722052897,3422.63665839491,5142.061105057,5052.44412388225 +1557360000,5946.4975,6171.8575,5933.8825,6151.8425,4508.40989288784,5400.93280493525,3425.36151304855,5176.21249109057,5086.59330203736 +1557446400,6151.005,6428.5125,6108.5525,6350.4725,4540.88527743366,5468.52073225415,3428.28196051489,5214.45969111081,5122.61173941137 +1557532800,6349.8575,7451.145,6343.65,7218.7675,4584.08726400752,5593.10272913472,3432.06640286232,5263.25203064115,5163.48341566552 +1557619200,7214.7625,7583.4125,6750.4175,6976.065,4623.99601481265,5691.54153473057,3435.60475124291,5318.19985741099,5207.7248316898 +1557705600,6970.955,8175.45,6866.9425,7818.4875,4674.24639250332,5842.93685823208,3439.98064633747,5385.0192634381,5258.0636358115 +1557792000,7817.265,8341.865,7621.315,7991.525,4726.51046598741,5995.87266483272,3444.52493413881,5462.52353330818,5314.44474751708 +1557878400,7991.755,8301.14,7835.0475,8203.37,4781.15801070082,6153.00160870038,3449.27619215168,5549.97948057176,5376.94150011214 +1557964800,8203.935,8382.2375,7657.785,7880.26,4831.44756990077,6275.94730040646,3453.70011161754,5642.07333996797,5443.57775587508 +1558051200,7880.395,7942.6375,6511.1025,7356.83,4874.9136425901,6352.88418015997,3457.59701872437,5732.66171826363,5511.77329963887 +1558137600,7355.6625,7491.87,7206.4925,7262.96,4916.7498417356,6417.66308164848,3461.39631479441,5820.41695576722,5580.7835488181 +1558224000,7263.185,8304.8875,7253.7975,8196.835,4969.61197385755,6544.30396136143,3466.12420374354,5913.15588557521,5653.80520788884 +1558310400,8195.7525,8198.93,7573.7225,8003.5375,5019.84028883209,6648.17173104332,3470.6543830167,6007.52213943275,5729.49151340472 +1558396800,8001.7525,8114.4475,7774.5625,7953.3125,5069.22647557546,6741.0712273905,3475.12989440707,6101.97722267651,5807.14042920548 +1558483200,7951.7625,8046.905,7506.4525,7623.3825,5114.34921163207,6803.87385741821,3479.2715334306,6192.836683825,5885.04595255267 +1558569600,7621.695,7983.6325,7469.0775,7880.255,5162.44961724987,6880.49031780462,3483.6655003849,6282.17320138058,5963.86209556665 +1558656000,7880.785,8179.3925,7797.72,8001.27,5211.80619281386,6960.26705183105,3488.17590244269,6370.53066014744,6043.67078837241 +1558742400,8001.3,8154.4875,7943.925,8067.455,5261.68474371702,7039.07633064071,3492.74788077027,6457.89098128385,6124.33619329999 +1558828800,8068.025,8792.645,7889.57,8737.8225,5319.57913179777,7159.9925316428,3497.98459313804,6549.47091565922,6208.01235114999 +1558915200,8737.1525,8946.615,8639.21,8775.72,5377.48288688793,7274.99948845151,3503.25391422217,6644.05821473723,6294.2704019007 +1559001600,8773.9675,8819.555,8458.985,8719.955,5434.12749458392,7377.85095279911,3508.46229829257,6739.81988675773,6382.35450293418 +1559088000,8719.3,8758.805,8426.865,8662.0575,5489.36789531374,7469.26035803598,3513.60767708896,6835.21935974608,6471.55812793747 +1559174400,8663.2975,9093.925,7990.2,8275.2025,5539.51277239757,7526.62705813016,3518.36168047492,6926.15188767954,6559.98835813981 +1559260800,8277.47,8579.0125,8111.14,8542.59,5592.77619270835,7598.94297059879,3523.37789863946,7014.93491076194,6648.38674412815 +1559347200,8544.7625,8621.555,8457.37,8557.805,5646.10687419145,7667.19445865016,3528.40429932587,7101.31357977215,6736.47963224687 +1559433600,8556.5975,8835.24,8545.7975,8739.8225,5701.48403730151,7743.54377450896,3533.6074089337,7186.54098292775,6824.64768313231 +1559520000,8737.2425,8745.0475,8037.25,8110.6475,5748.79119695998,7769.67409854485,3538.17715182444,7264.64542339788,6910.17561568448 +1559606400,8105.5475,8105.8225,7431.4175,7672.325,5791.02285661031,7762.74482130536,3542.30470857785,7332.42549051998,6991.30969630452 +1559692800,7672.9775,7929.0325,7569.1375,7788.485,5834.35684747172,7764.57699887079,3546.54411916056,7392.13002604548,7068.555776512 +1559779200,7787.695,7876.3025,7447.42,7804.0925,5877.70612622629,7767.3896994163,3550.79487970848,7444.80969081932,7142.01166569031 +1559865600,7804.245,8132.72,7761.68,8000.715,5923.28946576054,7783.99771858546,3555.23770529653,7492.95441042435,7212.4647337798 +1559952000,7999.4475,8060.0125,7784.165,7931.865,5967.77417893414,7794.5228636858,3559.60735491014,7536.35688412681,7279.64424540901 +1560038400,7933.74,7962.315,7510.045,7638.2825,6008.31654604626,7783.4017253069,3563.6795274009,7572.94480774734,7342.46619259626 +1560124800,7630.8825,8089.81,7522.6825,8020.26,6053.41181345538,7800.26122042652,3568.12900272262,7606.91227089447,7402.50629548181 +1560211200,8017.895,8055.685,7710.3225,7919.825,6097.02570236279,7808.7717314518,3572.47376078691,7637.56203098207,7459.39507872294 +1560297600,7918.1675,8283.8575,7822.115,8174.9325,6143.585713595,7834.83493611854,3577.06888180072,7667.42272841279,7514.14901073353 +1560384000,8174.0375,8334.895,8037.825,8242.6825,6190.44746697015,7863.86539334753,3581.72705700533,7696.96181488684,7566.998682357 +1560470400,8243.02,8736.365,8178.75,8697.1775,6242.71013575155,7923.18027864524,3586.83435185741,7729.90995095346,7619.62272827265 +1560556800,8696.475,8913.0525,8615.1225,8856.88,6296.66427818335,7989.64072177637,3592.09599544264,7766.7584389785,7672.44469068255 +1560643200,8856.245,9389.2075,8715.185,8978.795,6351.82411279115,8060.04840226749,3597.4741064032,7807.55108786333,7725.70865676649 +1560729600,8975.545,9473.675,8974.52,9333.1625,6411.02008013647,8150.66825055128,3603.20065035709,7854.29933529111,7780.51409770612 +1560816000,9336.875,9359.2725,8927.7925,9080.5325,6466.79227420276,8216.85568603695,3608.66924966628,7903.35914817045,7835.56898757719 +1560902400,9079.15,9323.225,9037.82,9278.89,6524.78274826684,8292.45094381858,3614.33043035233,7955.61130453652,7891.39326841067 +1560988800,9279.2375,9601.11,9211.635,9533.845,6585.57753717324,8380.8129698396,3620.24050740718,8012.2420861122,7948.67349732908 +1561075200,9533.01,10242.0775,9532.9975,10227.86,6654.67188365006,8512.28517798204,3626.83759233549,8077.98514560594,8009.69037427643 +1561161600,10226.96,11208.4225,10062.8325,10667.11,6728.79355981227,8665.66490945875,3633.86664039794,8154.45366210467,8075.55450910865 +1561248000,10664.74,11254.715,10484.3325,10830.4725,6804.40717227191,8819.75521115901,3641.05177266903,8240.49708653948,8146.22194904637 +1561334400,10826.6,11095.8925,10535.98,11029.3875,6881.96458946005,8977.03612033626,3648.42832913187,8335.39344280847,8221.76859602528 +1561420800,11029.9275,11794.195,11001.25,11757.885,6968.26168043127,9174.9760410583,3656.52485685114,8443.05034280816,8304.24532666217 +1561507200,11759.8175,13870.6275,11497.9925,12929.5325,7068.75873139414,9442.22415125378,3665.78308048695,8570.40314916986,8397.17593333824 +1561593600,12931.13,13358.795,10299.75,11151.1925,7146.43115303084,9563.86796366699,3673.25655587685,8697.48536050814,8492.6051360551 +1561680000,11154.655,12444.5575,10734.61,12365.78,7238.8566650233,9763.30715304464,3681.93522078279,8833.74616272323,8594.54675226485 +1561766400,12361.405,12395.72,11252.1425,11868.7375,7324.64100243449,9913.17100181751,3690.10897079788,8972.08335831706,8700.18513563998 +1561852800,11870.375,12199.2725,10648.3575,10754.915,7395.93221632453,9973.08606641773,3697.16251336778,9101.304180676,8804.60094198561 +1561939200,10756.975,11212.38,9940.75,10545.515,7464.09104856609,10013.8313721267,3703.99994748818,9220.09775847678,8906.71306260313 +1562025600,10434.6775,10932.72,9646.02,10832.3,7535.32384322239,10072.0897034224,3711.11688285252,9331.76518444004,9007.41474359652 +1562112000,10832.8725,12020.96,10825.3975,11977.7425,7620.34721723798,10207.7334509977,3719.37032894275,9446.50671580116,9110.77114356979 +1562198400,11977.0125,12060.64,10932.1875,11143.8725,7694.12728044936,10274.3675246791,3726.78299418895,9555.57677885519,9213.01731495051 +1562284800,11140.1275,11453.5625,10756.7625,11001.4125,7765.23439973818,10326.1183500579,3734.04602571273,9657.80656537149,9313.32357425159 +1562371200,10995.4625,11727.42,10975.6075,11238.3725,7838.55152492447,10391.0523043761,3741.53838799783,9755.57362985064,9412.37090415239 +1562457600,11232.9525,11625.77,11063.6975,11475.0375,7913.90364544804,10468.2100187902,3749.25955754945,9850.86999267952,9510.78602739718 +1562544000,11478.405,12399.4,11329.105,12296.2,7998.63546897469,10598.3257523733,3757.79287155751,9950.40866102132,9611.35199555979 +1562630400,12299.0775,12843.1925,12096.315,12569.815,8085.70397358107,10738.6557171669,3766.59084463036,10054.9422794312,9714.53941691429 +1562716800,12569.2275,13196.8325,11548.64,12097.6125,8165.45470217888,10835.3858199157,3774.90858409185,10158.5994586194,9817.95256926745 +1562803200,12096.17,12097.165,10955.02,11340.29,8233.76644055941,10871.324735586,3782.46190397835,10254.0926490821,9918.32187851744 +1562889600,11346.615,11942.61,11084.24,11796.3525,8307.22326022309,10937.1679116366,3790.4630179843,10345.9864336609,10017.2493431677 +1562976000,11806.9825,11845.7775,10804.0575,11376.2825,8374.95991340238,10968.4239455204,3798.03674335238,10430.4932244295,10112.8976735382 +1563062400,11383.395,11463.4675,10136.125,10299.7,8428.49099784432,10920.8243921145,3804.52804097136,10498.8854837761,10201.1189999035 +1563148800,10296.7475,11081.78,9841.04,10848.7175,8488.39833505567,10915.6918469363,3811.56099984019,10558.1753543444,10284.2848941217 +1563235200,10844.905,11037.5525,9359.75,9421.22,8529.77602545525,10809.3158259065,3817.16171533,10597.1238772318,10357.1204975926 +1563321600,9428.2525,9987.9075,9073.385,9700.785,8574.28062513299,10730.4109614953,3823.03595832154,10621.4178350178,10421.2848037191 +1563408000,9701.2025,10797.7525,9277.8575,10645.53,8630.47541817723,10724.3691622044,3829.84757522326,10641.6126867132,10480.8404045939 +1563494400,10645.765,10772.925,10109.41,10536.0375,8684.91104964094,10710.9637756123,3836.54307343236,10657.3141285943,10535.5407781921 +1563580800,10534.2225,11141.285,10368.2575,10759.8025,8742.19331259589,10714.4401001635,3843.45529506816,10671.1175415115,10586.4371722066 +1563667200,10766.47,10835.8425,10290.75,10594.06,8796.85542827304,10705.8714837035,3850.19513724669,10681.8073352552,10633.0349271504 +1563753600,10595.26,10690.0325,10062.23,10325.69,8847.65770823735,10678.8102890825,3856.66030819219,10687.5231831061,10674.5101239455 +1563840000,10322.545,10326.9725,9802.4525,9842.615,8891.80571788329,10619.2901797952,3862.63671944334,10684.9215402949,10709.3174539369 +1563926400,9845.5025,9915.485,9509.8575,9769.06,8934.64424760383,10558.771071542,3868.53372608061,10674.8638032333,10737.6146403083 +1564012800,9773.2475,10185.69,9736.6675,9888.9575,8978.18726685304,10511.0939589095,3874.54455145963,10659.7954382982,10760.3011115097 +1564099200,9888.725,9904.1875,9646.105,9848.24,9020.68285517794,10463.9122292455,3880.5087230125,10640.3831471835,10777.6144827473 +1564185600,9847.9625,10232.115,9290.025,9477.8625,9057.99519253605,10393.725529543,3886.09715289742,10614.3631442569,10788.5475670418 +1564272000,9471.0025,9642.265,9112.6225,9530.3275,9095.4909181494,10332.2691380185,3891.73238461688,10583.5855225321,10793.7996794383 +1564358400,9536.545,9721.185,9364.8125,9498.6325,9132.07850844501,10272.9311526834,3897.33034562041,10548.8859225409,10793.7143172538 +1564444800,9502.9625,9793.8925,9375.31,9593.95,9169.38001977003,10224.6014946007,3903.01788312259,10512.0837130939,10789.1055631949 +1564531200,9592.5925,10136.175,9574.1875,10085.57,9212.2201635807,10214.7052779381,3909.19057836245,10478.1197825347,10782.231915285 +1564617600,10094.0025,10504.215,9883.6375,10408.135,9258.57433272854,10228.4735427763,3915.67916148107,10449.5729790315,10774.5299979063 +1564704000,10410.0225,10670.68,10325.575,10530.7075,9306.32991973015,10249.9864577606,3922.28364344334,10426.7891824393,10766.5621870871 +1564790400,10531.2,10922.8725,10505.53,10817.38,9357.5640003539,10290.373345948,3929.16774690966,10411.4217278913,10759.4637354324 +1564876800,10816.605,11084.9425,10564.215,10977.9675,9410.0407319013,10339.3160746728,3936.20530872234,10403.6767133139,10753.7939560042 +1564963200,10980.5325,11949.84,10979.3825,11808.5925,9472.1145395923,10443.8986937697,3944.0651449232,10409.4501033532,10752.5894629431 +1565049600,11803.7975,12326.6025,11198.18,11464.6575,9529.01404556035,10516.555974307,3951.57374715632,10423.3218162253,10754.1763514378 +1565136000,11464.8775,12151.975,11382.8525,11970.4575,9591.26143833186,10620.044213038,3959.57984635846,10448.108537336,10760.2213379693 +1565222400,11980.42,12048.7725,11461.775,11947.725,9652.00701756956,10714.5481005513,3967.55525596813,10481.4641403884,10770.2367043959 +1565308800,11951.1925,12020.935,11653.94,11857.525,9710.46708488353,10795.9048252977,3975.43264668979,10520.8011743804,10783.5064307603 +1565395200,11865.9675,11973.8375,11193.8,11280.7725,9760.44163616073,10830.4175490178,3982.72633959938,10559.7331373112,10797.5257267551 +1565481600,11279.555,11578.2975,11093.1275,11530.865,9812.12480835037,10880.2751712465,3990.26244422059,10600.1572813066,10813.1223400771 +1565568000,11536.2775,11552.0775,11219.565,11385.025,9860.90437041691,10916.2031002392,3997.64541726555,10640.198822295,10829.5525302314 +1565654400,11385.2125,11443.015,10746.395,10857.9225,9902.14172663993,10912.0547060293,4004.49475697061,10675.0227833316,10844.6928897005 +1565740800,10857.695,10860.6825,9893.495,10020.9325,9931.72445475661,10848.6249166204,4010.50160267369,10698.0176808135,10855.4351998196 +1565827200,10022.31,10446.35,9476.2725,10300.9525,9963.35255124302,10809.641771754,4016.78202467038,10713.5028368322,10863.1702699947 +1565913600,10295.8325,10538.6575,9736.1325,10357.36,9993.94199895459,10777.4485020299,4023.11249382719,10723.1635631923,10868.3375892613 +1566000000,10353.1875,10472.28,9983.545,10209.83,10020.8708566017,10737.0456012776,4029.28934781545,10726.6737127539,10870.5788502709 +1566086400,10220.57,10508.465,10069.965,10319.71,10047.2664411095,10707.3397886261,4035.56973961521,10726.0433815676,10870.5493131288 +1566172800,10319.355,10940.0575,10269.99,10922.2725,10078.9045056577,10722.6386292647,4042.44546286732,10727.221164949,10870.7176087554 +1566259200,10921.66,10954.37,10556.4225,10762.0675,10107.7367305824,10725.4451634869,4049.15437177389,10728.4913538525,10870.461301611 +1566345600,10768.7475,10803.545,9847.6875,10130.5475,10126.6948306001,10683.1005408756,4055.22606930344,10724.3672535413,10867.4326627849 +1566432000,10128.5875,10235.0725,9756.5875,10122.97,10145.0647519003,10643.230630768,4061.28413939645,10715.7754690033,10861.8502297643 +1566518400,10120.9925,10478.15,10045.26,10406.7225,10166.7927700459,10626.3960587794,4067.61946118959,10706.0354051574,10855.0237474699 +1566604800,10409.4525,10428.9725,9885.785,10147.4975,10185.8049175042,10592.3082147933,4073.68964604524,10693.193928973,10846.105861933 +1566691200,10149.7825,10375.0125,9906.3525,10136.39,10204.8959108783,10559.8561042339,4079.74268060251,10677.8159401198,10835.2661244307 +1566777600,10143.4875,10671.6025,10141.09,10363.6125,10225.8670959948,10545.887548176,4086.01653201352,10662.4484059728,10823.5669292892 +1566864000,10362.255,10380.6225,10024.5975,10173.06,10242.628682412,10519.349804299,4092.09387087445,10645.5750433067,10810.4059504899 +1566950400,10174.3225,10286.525,9530.8575,9717.26,10253.7767226642,10462.2573123496,4097.71006877012,10623.6684406043,10794.2359447555 +1567036800,9715.465,9716.9,9309.9575,9489.395,10261.8626851083,10393.0092887017,4103.09315770826,10595.8405811647,10774.5133319535 +1567123200,9491.38,9700.825,9346.735,9580.5325,10270.895832939,10335.1774545736,4108.56186433873,10564.1697853861,10751.9588088183 +1567209600,9576.965,9694.8025,9430.815,9600.935,10279.0488073313,10282.9143149575,4114.04548095354,10529.7876028158,10726.9753741324 +1567296000,9599.3575,9840.4,9540.7475,9768.0175,10288.4195420084,10246.2641267801,4119.69043881375,10494.9163990823,10700.4948394947 +1567382400,9768.075,10482.06,9753.375,10386.88,10304.6404886012,10256.2731189986,4125.94763655997,10465.2942440079,10675.0814926272 +1567468800,10385.7175,10783.4775,10282.62,10621.4725,10322.5023373079,10282.2678924118,4132.43280557222,10442.2744999162,10651.6264524345 +1567555200,10623.1225,10847.3475,10364.53,10584.2825,10339.8802062816,10303.7651941602,4138.87436904701,10424.5639983233,10629.9113483676 +1567641600,10584.2975,10662.37,10457.5325,10580.8225,10357.3768974801,10323.4860432702,4145.30604674445,10411.3445520345,10609.8571801958 +1567728000,10577.965,10951.85,10179.29,10320.7025,10371.8066837488,10323.2879115636,4151.471597729,10399.6854617201,10590.4161716329 +1567814400,10319.11,10574.4425,10309.9,10483.8825,10388.6083212856,10334.7189822471,4157.79391283357,10390.8215009349,10572.2258179054 +1567900800,10488.37,10595.725,10232.3175,10403.6725,10403.8236617078,10339.6270712617,4164.02983358198,10383.6402982695,10554.9455793477 +1567987200,10396.9375,10537.5575,10059.6225,10311.485,10417.8562054749,10337.6239277628,4170.16748782664,10377.1086268785,10538.2152031224 +1568073600,10312.7075,10390.0175,9924.775,10095.8775,10429.2768803285,10320.4164954942,4176.08375044658,10369.3039112916,10521.2369213029 +1568160000,10095.8475,10268.4225,9865.0025,10159.12,10442.4950345583,10308.9354632941,4182.05724790837,10361.0660594671,10504.3347482468 +1568246400,10163.38,10467.6325,10035.385,10424.1725,10459.1044970385,10317.1379981664,4188.28941132161,10354.8343962115,10488.5669535367 +1568332800,10425.0675,10455.0275,10154.49,10363.9875,10474.0363628784,10320.4727305017,4194.45526346069,10349.7867923389,10473.6693556228 +1568419200,10367.705,10441.1225,10233.6025,10359.7775,10488.1048308286,10323.2704312381,4200.61075628991,10345.7205437388,10459.6083261167 +1568505600,10362.5675,10382.45,10265.745,10309.045,10500.5773417044,10322.2578696595,4206.70945182314,10342.0582289106,10446.174254607 +1568592000,10311.38,10377.1025,10054.2175,10266.095,10511.9346589365,10318.260214825,4212.75917685944,10338.3885945038,10433.2023739911 +1568678400,10262.045,10278.98,10135.115,10190.78,10521.6646711891,10309.1862145078,4218.72766689093,10334.0935823723,10420.4179615909 +1568764800,10186.865,10261.0175,10023.97,10156.9375,10529.3302804252,10298.3492004219,4224.65640940328,10329.028647408,10407.7255567714 +1568851200,10159.13,10379.8825,9603.04,10265.2275,10537.3009879763,10295.9916085356,4230.687349978,10324.3102288506,10395.5742004737 +1568937600,10268.525,10300.695,10059.4625,10170.0075,10542.4507949711,10287.0241005785,4236.61720103707,10319.094522877,10383.6041997657 +1569024000,10170.3975,10174.17,9914.225,9979.65,10543.7596261772,10265.1453118585,4242.3510776871,10311.8691995174,10371.1264933337 +1569110400,9976.98,10090.3575,9847.4525,10026.9475,10543.8183616451,10248.1904689182,4248.12645169536,10303.4619189866,10358.4099765514 +1569196800,10027.4225,10048.11,9611.53,9689.0275,10538.3649924904,10208.3894302685,4253.55867828504,10291.2336998114,10344.2468936566 +1569283200,9690.7275,9777.8575,8048.6325,8536.7225,10517.2200806909,10089.4007207163,4257.835013435,10266.0063567122,10324.4622916745 +1569369600,8532.6725,8744.8225,8164.805,8435.3525,10493.4464625685,9971.66610519175,4262.00587068235,10229.4265239999,10299.2260461904 +1569456000,8443.3975,8464.025,7723.61,8060.1075,10464.2244796334,9835.60198407599,4265.79791697724,10180.5794316884,10267.6799466675 +1569542400,8060.835,8289.0075,7859.255,8193.6775,10435.007826386,9718.73033219073,4269.71953432013,10123.2171309065,10230.9840085155 +1569628800,8197.365,8368.21,8018.1225,8219.08,10404.243652348,9611.98570826118,4273.66259829859,10059.5649297208,10189.8105939111 +1569715200,8221.54,8243.46,7905.1925,8052.3225,10369.217537627,9500.96938729028,4277.43523386192,9989.84676815413,10144.0661556335 +1569801600,8058.2875,8373.295,7694.05,8303.7925,10335.9677652523,9415.75472500013,4281.45517188441,9917.91478866556,10095.2617071625 +1569888000,8311.105,8534.375,8199.715,8323.5375,10302.0809568654,9338.01105740683,4285.49080989833,9844.95404640282,10043.9162855316 +1569974400,8324.5575,8392.0975,8171.99,8380.4875,10267.9060118551,9269.85484135761,4289.57927791257,9772.26999613414,9990.65488911453 +1570060800,8382.77,8415.52,8056.9925,8231.22,10230.5527564516,9195.92515044167,4293.51463445507,9699.1515332798,9935.27787590154 +1570147200,8234.1275,8243.4775,8007.09,8154.56,10191.8699989903,9121.80111701126,4297.36952413464,9625.64506763178,9877.88475392813 +1570233600,8157.58,8200.765,8022.16,8148.0425,10156.1323153956,9052.48929468853,4301.2140579613,9552.3984983561,9818.83906197444 +1570320000,8151.11,8175.9925,7778.065,7859.23,10115.8325938608,8967.5534853683,4304.76640133885,9477.50223067071,9757.41364395974 +1570406400,7862.8675,8312.895,7767.4025,8209.15,10081.9711396622,8913.5705714218,4308.66456015716,9404.9212004509,9695.36419093507 +1570492800,8210.525,8344.0075,8109.8525,8184.0775,10049.7218688768,8861.64549135705,4312.53379450473,9334.65559325718,9632.88339641909 +1570579200,8183.5575,8704.4075,8119.08,8589.7875,10022.3400918759,8842.29472776454,4316.804228961,9270.40955073382,9571.77595586465 +1570665600,8589.62,8660.46,8454.9875,8586.93,9993.84181945965,8824.11794932161,4321.06754684692,9211.64643519715,9512.14506922068 +1570752000,8588.5625,8847.7775,8223.1075,8269.06,9960.16753818174,8784.60910463453,4325.00924499388,9155.1541584133,9452.890009675 +1570838400,8266.01,8424.2575,8261.0025,8307.945,9928.56617549916,8750.68030836934,4328.98583073239,9101.35459140477,9394.34942747955 +1570924800,8307.945,8471,8144.045,8280.48,9896.59879836497,8717.21160302446,4332.93102501266,9049.9979467731,9336.57992496755 +1571011200,8279.3375,8413.4825,8216.515,8357.115,9864.97142805452,8691.58004369156,4336.94879320889,9001.7575263997,9280.02349116073 +1571097600,8355.2225,8417.52,8078.73,8161.255,9830.35913889445,8653.8316792001,4340.76700230316,8954.80466035564,9224.05093616264 +1571184000,8162.825,8176.4975,7913.13,7997.9125,9793.09444795298,8607.14356490507,4344.41831719357,8907.90489421509,9168.2071568368 +1571270400,7998.465,8128.0325,7938.4075,8075.2625,9757.85681100171,8569.28444332864,4348.14321327087,8862.1229205106,9112.98418155413 +1571356800,8074.4325,8117.9275,7815.45,7956.58,9723.36563672311,8525.67233990748,4351.74589710689,8816.63033749654,9058.08958581817 +1571443200,7955.4025,8101.0175,7876.7125,7961.1675,9690.9216967973,8485.49106861452,4355.34956418897,8771.80876304263,9003.72007065506 +1571529600,7962.665,8307.1925,7878.62,8234.765,9662.44005996892,8467.6444684244,4359.22279465131,8730.29187292557,8951.06948781032 +1571616000,8235.9125,8361.3375,8151.46,8213.5325,9635.75073517847,8449.55686098471,4363.07095940938,8691.66906859878,8900.11033001959 +1571702400,8208.7725,8317.435,7996.06,8023.59,9608.77830292037,8419.23667806858,4366.72564246423,8654.1190808323,8850.17394477847 +1571788800,8021.9475,8050.95,7291.8075,7472.3575,9574.8698990817,8351.83812548599,4369.82632299573,8613.01103428725,8799.28033562174 +1571875200,7474.3525,7513.495,7359.2875,7438.235,9542.4392785802,8286.80815152639,4372.88983969182,8569.03619487883,8747.57422220031 +1571961600,7439.8175,8793.0975,7395.7625,8666.525,9524.13478076666,8313.83627356256,4377.17662948586,8533.70127842057,8699.95831473894 +1572048000,8674.505,10520.2475,8646.0225,9260.7525,9511.82299457539,8381.23746323602,4382.05241944437,8510.91675153793,8658.50862917867 +1572134400,9262.7825,9819.22,9103.5375,9549.05,9503.53550174232,8464.361980586,4387.21117925212,8501.14653592884,8623.94610618134 +1572220800,9559.325,9939.62,9183.555,9220.2875,9491.29886199517,8518.1685137201,4392.03655017257,8499.32546327731,8594.57418787736 +1572307200,9219.6225,9566.93,9055.5425,9431.4625,9482.60070658323,8583.17648325134,4397.06794173775,8505.8853718956,8570.85992053564 +1572393600,9432.415,9435,8994.5725,9165.3975,9471.50273255813,8624.61878626202,4401.82866912184,8516.98346109633,8551.40708194864 +1572480000,9167.2275,9439.3725,8955.9075,9152.5625,9461.0572986217,8662.19764846026,4406.57182883151,8531.6081728534,8535.87833839088 +1572566400,9155.985,9306.7275,9058.61,9252.3375,9451.79036891721,8704.20361156129,4411.40986887168,8549.87030606802,8524.37546641308 +1572652800,9254.56,9392.51,9205.625,9306.1125,9442.91340374822,8747.04729088911,4416.29676785135,8571.43191104992,8516.80267724261 +1572739200,9306.7175,9383.6175,9072.575,9205.705,9432.79610279508,8779.69439776496,4421.07854030348,8594.6535681793,8512.47524859461 +1572825600,9206.825,9596.625,9128.5825,9413.55,9425.4144853733,8824.81203381241,4426.06305223833,8620.8369563087,8511.91846945539 +1572912000,9414.5625,9493.1475,9171.76,9319.0325,9416.11948533618,8859.99048619498,4430.94822079785,8648.41350387894,8514.45692109559 +1572998400,9319.4425,9446.8925,9255.8725,9343.63,9406.33452448177,8894.41578982104,4435.85307026134,8677.11043737009,8519.91073521567 +1573084800,9344.24,9373.17,9081.2125,9201.3425,9393.56039822447,8916.26273343764,4440.61096204494,8705.25098473738,8527.47412243312 +1573171200,9204.0525,9249.2475,8666.5075,8766.13,9373.73445552134,8905.57633419756,4444.92958488398,8728.92822919587,8535.29567088573 +1573257600,8764.355,8876.245,8719.63,8810.3575,9353.405301727,8898.79868848292,4449.28805297324,8749.11120851116,8543.4909098017 +1573344000,8808.0375,9142.7025,8745.75,9033.985,9335.15216655157,8908.4212062616,4453.86544051258,8768.17821528183,8552.84159965806 +1573430400,9035.32,9069.11,8598.25,8720.11,9312.08630003518,8895.01727571684,4458.12488337478,8783.44892301616,8562.02890745368 +1573516800,8720.105,8871.525,8557.61,8812.7525,9289.51398235932,8889.16169568058,4462.47256838453,8796.26531109706,8571.38187504969 +1573603200,8814.1475,8838.235,8705.3475,8759.3575,9265.3435073367,8879.92227516036,4466.76260276874,8806.49017310502,8580.64946326449 +1573689600,8762.9325,8787.0975,8559.21,8631.415,9240.39860603574,8862.23360796819,4470.92061543763,8813.38858951587,8589.32078727293 +1573776000,8630.97,8780.825,8366.9325,8458.5375,9213.19840464811,8833.49865002374,4474.90187484256,8815.9962536445,8596.76096420283 +1573862400,8459.26,8531.66,8426.54,8482.635,9187.35585498031,8808.52428928884,4478.90321841664,8815.2597308235,8603.13757411354 +1573948800,8483.355,8631.6,8373.0325,8500.63,9163.05498866626,8786.60847370523,4482.91853333698,8811.93390643958,8608.58492026698 +1574035200,8500.9325,8503.1525,8022.295,8170.925,9136.27319607694,8742.78432386872,4486.60065999455,8803.6564232473,8611.91638242423 +1574121600,8172.04,8198.255,7989.105,8121.9725,9109.46724410691,8698.59513973199,4490.23023594113,8790.95363223601,8613.11442287968 +1574208000,8124.08,8222.8625,8028.845,8083.375,9083.63656735917,8654.80396985732,4493.81765213463,8774.3863293664,8612.21015487296 +1574294400,8082.6525,8116.435,7388.7825,7615.5175,9053.75779315444,8580.82789623626,4496.93437503917,8750.73844026441,8607.61897789024 +1574380800,7615.725,7718.0725,6777.6175,7285.1575,9021.13328823715,8488.60249794568,4499.71815288459,8718.6139719221,8598.42417310261 +1574467200,7282.76,7351.755,7105.52,7325.3475,8988.608786278,8405.80238472963,4502.53927731522,8680.14104260849,8585.20365127118 +1574553600,7327.9725,7345.635,6856.535,6908.4475,8950.95024188865,8299.22115000536,4504.94134978513,8633.17388894704,8566.77528775987 +1574640000,6906.5825,7377.3725,6522.48,7124.6625,8916.24992839676,8215.61644650434,4507.55689429943,8581.49376048254,8544.4679548953 +1574726400,7125.41,7341.1225,7023.4725,7161.5975,8881.79921159347,8140.59171997701,4510.20670355352,8526.70236770826,8518.83517475248 +1574812800,7162.6225,7675.3725,6850.5425,7524.3925,8851.57787114878,8096.73085948826,4513.21608381689,8472.9612955946,8491.62650408066 +1574899200,7522.8025,7656.5925,7372.76,7431.89,8821.3296448758,8049.40770288588,4516.13010447512,8419.74922961231,8462.72936372169 +1574985600,7430.0475,7867.225,7412.34,7757.21,8796.47363727158,8028.60916522806,4519.36601709905,8370.24468545246,8433.62493865862 +1575072000,7757.5625,7814.095,7455.045,7554.92,8769.17305401985,7994.89212418429,4522.39673148145,8322.46949282078,8403.67685534569 +1575158400,7556.4725,7557.0175,7235.5225,7403.8775,8739.93458410405,7952.82389505033,4525.27361828926,8275.22430162712,8372.49955834775 +1575244800,7407.6975,7429.315,7156.88,7305.5,8710.17274319736,7906.74759029146,4528.04941214068,8227.97311176454,8339.94379357972 +1575331200,7307.75,7412.78,7241.475,7299.71,8680.57619485488,7863.5388516303,4530.81665385474,8181.07540830303,8306.2278392621 +1575417600,7300.0175,7792.265,7081.72,7195,8649.84220033088,7815.95247314744,4533.47658967865,8133.96874213326,8271.18224596407 +1575504000,7198.355,7490.9175,7155.3725,7392.7875,8622.48290373988,7785.8317276982,4536.33134197378,8088.80721215617,8235.79930884946 +1575590400,7394.895,7611.715,7306.8275,7542.82,8597.90352118359,7768.53423179079,4539.33303737032,8046.93333001684,8200.80789148861 +1575676800,7545.4825,7637.0675,7486.25,7503.51,8572.95258873672,7749.66989298629,4542.29248852923,8007.78632861413,8166.15839703821 +1575763200,7504.8925,7579.7975,7390.6825,7523.3275,8547.76862624984,7733.5589149136,4545.26877086011,7971.39243920328,8132.02743656851 +1575849600,7520.8875,7660.845,7268.6725,7338.185,8519.77344163984,7705.41632796978,4548.05723432746,7935.97761492586,8097.80065981831 +1575936000,7336.015,7397.75,7158.44,7219.035,8489.49558045419,7670.79586290133,4550.72395373852,7900.64438891494,8063.16551935641 +1576022400,7221.065,7268.9875,7125.4325,7202.7875,8458.01961055393,7637.48317952346,4553.37178908521,7865.54328427299,8028.22617291553 +1576108800,7203.15,7297.245,7076.785,7189.4625,8426.41444947694,7605.59321296137,4556.00367706213,7830.82139256521,7993.0901072561 +1576195200,7190.12,7299.79,7184.765,7252.3525,8396.16079250143,7580.44965365806,4558.69572708123,7797.25530572969,7958.14422244765 +1576281600,7253.2375,7267.7075,7008.88,7065.535,8364.14903171319,7543.7981957277,4561.19856968644,7763.31526905877,7922.79883830093 +1576368000,7067.365,7206.3,7008.8775,7114.98,8333.5338815957,7513.27505572997,4563.7482796089,7729.78842986233,7887.40811442176 +1576454400,7114.755,7140.305,6811.31,6879.2925,8300.1926113249,7468.14838317395,4566.06013214434,7694.85389676729,7851.21952845212 +1576540800,6879.4425,6934.845,6557.26,6613.77,8264.19282147871,7407.33400715057,4568.10457733704,7656.76789291208,7813.4348881897 +1576627200,6617.2625,7458.53,6430.145,7288.2375,8237.29832972767,7398.8567564247,4570.82037353675,7622.2490479622,7776.87956259531 +1576713600,7288.99,7373.03,7035.4875,7150.8725,8209.28398828209,7381.20531753639,4573.39631227184,7589.77579186597,7741.06834430591 +1576800000,7153.02,7218.5275,7075.3275,7190.62,8181.87823191736,7367.63951648915,4576.00936330538,7559.6097523579,7706.22329730706 +1576886400,7190.81,7192.775,7110.745,7143.5625,8153.96643688112,7351.68978718029,4578.57282297791,7531.19581562389,7672.21615598072 +1576972800,7143.7875,7525.115,7125.88,7511.47,8131.34926642057,7363.06289087167,4581.50104422076,7507.64941528374,7640.49342154115 +1577059200,7517.5525,7690.6175,7260.5125,7316.8825,8106.93141144833,7359.77578563741,4584.23206464276,7486.62888403261,7610.24584066422 +1577145600,7314.635,7425.9475,7157.395,7255.145,8082.48935201833,7352.32820027395,4586.89871932686,7467.33437342612,7581.22907475327 +1577232000,7254.5575,7267.4325,7116.2075,7193.1525,8058.04309739608,7340.99812558938,4589.50081794272,7449.0907303316,7553.21394904665 +1577318400,7195.345,7430.7475,7148.75,7193.44,8034.42834034872,7330.49498610034,4592.10060565015,7431.87182297306,7526.22217861778 +1577404800,7195.47,7254.4375,7025.6275,7244.9725,8012.24951270764,7324.40752329628,4594.74924805617,7416.09029440784,7500.46328338206 +1577491200,7247.5725,7348.7225,7234.3375,7299.9275,7991.56129588585,7322.66504318311,4597.45011342748,7402.10278302538,7476.1372376355 +1577577600,7301.05,7527.195,7277.225,7387.9625,7973.24921913928,7327.31289496686,4600.23617688473,7390.47315120893,7453.54652162013 +1577664000,7382.7925,7386.2475,7199.7425,7216.0525,7954.21722335889,7319.393416163,4602.84782279742,7379.39774145224,7431.97971842927 +1577750400,7218.3875,7300.53,7112.1425,7167.07,7935.95598092133,7308.55108483752,4605.40795682103,7368.45058775518,7411.24624126456 +1577836800,7164.9025,7235.535,7145.6625,7175.6525,7919.95692259085,7299.0914067014,4607.97410360912,7357.77777799206,7391.38594267924 +1577923200,7174.665,7185.8925,6904.755,6945.695,7903.57658282776,7273.9367651682,4610.30809746417,7345.43500795995,7371.53119485297 +1578009600,6944.76,7399.7025,6857.05,7335.29,7892.5884930159,7278.30386851116,4613.02873491299,7335.19302735676,7353.22772400345 +1578096000,7333.66,7396.225,7259.47,7349.0325,7882.32955667573,7283.33830954536,4615.76037665215,7326.88668598794,7336.46464870998 +1578182400,7351.925,7491.835,7309.2125,7352.6925,7871.85834321908,7288.27491831282,4618.49294526949,7320.27622259893,7321.18812139174 +1578268800,7351.62,7807.485,7343.53,7761.8475,7866.49904094517,7321.98366097798,4621.63128835667,7318.65512866867,7308.87452310834 +1578355200,7765.255,8224.625,7721.1575,8159.0075,7866.19162701958,7381.5627461811,4625.16302490987,7324.58610277497,7300.81822143072 +1578441600,8156.165,8465.065,7865.775,8043.8175,7863.99949889817,7428.70182462126,4628.57622900523,7335.68303143456,7296.25267595864 +1578528000,8045.23,8045.56,7747.2275,7814.6425,7858.96913339309,7456.17295663658,4631.75721571316,7348.95285204482,7294.03289905996 +1578614400,7816.1475,8197.6675,7670.075,8195.22,7858.79775800813,7508.77808532336,4635.31499724903,7367.18557174656,7295.40499453636 +1578700800,8196.1075,8293.1275,7999.8275,8021.475,7856.77727509595,7545.2716853128,4638.69575867817,7387.84162276303,7299.4022745941 +1578787200,8018.675,8185,7961.6125,8178.0025,7856.83308259537,7590.30925934765,4642.22942268319,7411.66589956313,7306.37753231552 +1578873600,8180.7775,8193.0425,8029.4375,8105.8775,7855.97342032262,7627.00723938814,4645.68754864723,7437.26718848912,7315.77886257425 +1578960000,8106.365,8892.4225,8106.115,8817.81,7864.10249893301,7711.76819341007,4649.8530194607,7470.26356728903,7330.05294709073 +1579046400,8813.425,8906.0075,8556.53,8810.445,7871.33389935414,7789.97165192445,4654.00697818644,7508.99490237623,7348.70376853811 +1579132800,8812.7125,8849.5325,8578.3425,8714.43,7877.14123942577,7855.77429710488,4658.06092765339,7551.27948366938,7370.92618776912 +1579219200,8715.7675,9009.85,8663.4725,8898.5,7884.72908904882,7929.99517421736,4662.29460617028,7597.71298575258,7397.02771483594 +1579305600,8899,8981.525,8804.75,8908.3325,7892.77684094181,7999.6329075444,4666.53387458243,7647.24335917351,7426.61709525802 +1579392000,8905.765,9187.0675,8468.4725,8700.1475,7898.79391293144,8049.49530888139,4670.56105739534,7697.09361530357,7458.49987372846 +1579478400,8700.5775,8734.3975,8508.0025,8627.775,7903.87715584678,8090.65706961289,4674.51196232988,7746.15045123417,7492.08735847293 +1579564800,8632.0475,8777.855,8439.5,8719.995,7910.19957762956,8135.45313924443,4678.55099563158,7794.92768249156,7527.45602118651 +1579651200,8726.565,8791.005,8568.2725,8659.8475,7915.81248838868,8172.77935964932,4682.52594473293,7842.53325902347,7564.09372257095 +1579737600,8662.7225,8666.545,8279.2025,8386.2825,7918.37103483049,8187.97644388643,4686.22379636864,7886.39848834078,7600.72115041095 +1579824000,8385.83,8514.885,8217.7925,8425.3425,7921.52702748424,8204.87208272277,4689.95695377466,7927.14502957034,7637.34836428754 +1579910400,8428.85,8434.2225,8254.6875,8327.83,7923.20163238846,8213.62418736822,4693.58902693978,7964.13064148031,7673.46883285707 +1579996800,8325.475,8597.24,8280.8175,8590.48,7928.09471399616,8240.44866180172,4697.47970507802,7999.97298386892,7709.98108137546 +1580083200,8596.5925,8989.5825,8557.0475,8896.025,7936.42295748477,8287.11237278551,4701.67155660897,8037.20628021908,7747.86774290227 +1580169600,8896.985,9414.5675,8880.3725,9398.35,7950.45249699695,8366.2099064353,4706.36074711195,8079.60450074722,7788.7658097278 +1580256000,9389.56,9438.0225,9222.66,9284.64,7963.02082140446,8431.58346241613,4710.93172718892,8124.90233941265,7831.83539570375 +1580342400,9283.5175,9569.5,9146.0125,9500.19,7978.36865419221,8507.64652894206,4715.71334992079,8174.05745302391,7877.54320403234 +1580428800,9505.6275,9524.215,9197.8625,9333.17,7991.50175211561,8566.40702168597,4720.32344493421,8224.51713115364,7924.86160154746 +1580515200,9339.8425,9457.98,9284.885,9378.7625,8003.57951222315,8624.23022098008,4724.97445701414,8276.00798659493,7973.64713171934 +1580601600,9379.345,9473.9525,9143.75,9324.0225,8012.12089000515,8674.04120828114,4729.56617276941,8327.42884306245,8023.38411106119 +1580688000,9319.475,9611.2375,9220.2675,9282.0225,8019.10279498958,8717.31711930363,4734.11137109035,8377.98451247838,8073.6452185659 +1580774400,9280,9346.575,9077.93,9162.5025,8024.55188627879,8749.00527021541,4738.5327020108,8426.35813979324,8123.74474912893 +1580860800,9165.23,9769.4,9148.205,9615.87,8036.43307492156,8810.70842033806,4743.40226334298,8476.43769091181,8175.21929472121 +1580947200,9619.0275,9856.5,9520.6475,9758.425,8050.14559387269,8878.16657889428,4748.40929060116,8528.72011608184,8228.29589137564 +1581033600,9761.705,9879.49,9714.13,9807.01,8065.11387540601,8944.28135214981,4753.45982635549,8582.78286149487,8282.82136444668 +1581120000,9807.05,9948.3025,9657.6225,9906.1175,8081.46126675515,9012.74453698713,4758.60426911852,8638.69965990517,8338.84087873584 +1581206400,9906.755,10177.09,9886.375,10167.7075,8101.13094620853,9094.95442584786,4764.00474858622,8697.91976264942,8397.00369694121 +1581292800,10166.69,10199.7125,9731.0725,9852.9925,8117.08090847434,9148.9113299426,4769.08562293633,8756.62488854394,8455.71949416212 +1581379200,9854.5325,10396.01,9708.5575,10270.4125,8138.66459047225,9228.73941924089,4774.57817901754,8818.00734679813,8516.29582242382 +1581465600,10270.5225,10488.305,10241.3875,10351.8125,8161.39512171507,9308.67939663275,4780.14652152302,8881.76546749759,8578.65312764859 +1581552000,10351.88,10514.2025,10074.7275,10238.0375,8183.36645258093,9374.83080480461,4785.59571095574,8945.94329440183,8641.97485825132 +1581638400,10235.2125,10396.0075,10101.04,10369.7275,8207.59314242125,9445.64722867207,4791.1709399326,9011.05003518961,8706.43719267969 +1581724800,10369.725,10401.26,9751.725,9904.735,8226.9021773324,9478.32494723694,4796.27635140922,9072.33841138841,8769.94378066139 +1581811200,9908.385,10048.9425,9617.6525,9922.8975,8247.43454725287,9509.96947725533,4801.39479915738,9130.11264309401,8832.40465165699 +1581897600,9921.6375,9967.24,9472.125,9701.0875,8265.33824446378,9523.5731960864,4806.28668025106,9182.57888690026,8892.83522962502 +1581984000,9711.5925,10285.7175,9606.9675,10185.295,8289.50291352107,9570.67433932527,4811.65711278811,9234.41059294656,8953.00844023212 +1582070400,10189.69,10306.265,9307.4275,9598.8125,8307.19781554704,9572.67720446978,4816.43663598702,9280.20220672555,9010.5042108944 +1582156800,9594.5325,9702.0825,9382.575,9610.905,8325.36319276772,9575.39824654868,4821.22346050362,9320.73337373315,9065.37873318887 +1582243200,9608.75,9772.38,9566.8475,9698.3575,8345.26674494709,9584.15044630257,4826.09281890136,9357.34244418098,9117.97790031982 +1582329600,9698.2275,9722.8825,9575.2225,9670.8825,8365.56771427244,9590.32400573562,4830.92988450749,9390.17085256646,9168.19278980794 +1582416000,9668.935,10022.14,9667.66,9968.39,8390.29422764587,9617.23462050496,4836.05915394192,9422.17702968705,9217.15996985295 +1582502400,9970.12,10026.365,9482.0175,9660.7575,8411.61185779218,9620.33256494194,4840.87616024474,9450.5706749169,9263.63890459995 +1582588800,9662.705,9680.6525,9238.9275,9307.825,8429.16425440639,9598.0883778946,4845.33598740326,9472.69585688591,9306.33286445271 +1582675200,9306.5725,9370.61,8623.695,8780.31,8441.16417481215,9539.87917836836,4849.26468786504,9484.91253402995,9343.41039339844 +1582761600,8779.995,8972.3925,8519.075,8812.2875,8454.18527755698,9488.08943884405,4853.221392408,9489.14840572592,9375.32976481134 +1582848000,8816.35,8898.86,8429.8975,8708.2775,8466.67125984845,9432.58267812732,4857.07030237833,9485.88278658699,9402.01623910394 +1582934400,8706.9675,8800.8,8524.35,8526.76,8478.05895602324,9368.10651388555,4860.73414146938,9474.9048200324,9423.1285020001 +1583020800,8528.5075,8752.9875,8406.2525,8527.415,8490.02858212157,9308.266364776,4864.39497651835,9457.68254260393,9439.0632439309 +1583107200,8521.375,8972.2625,8487.2825,8917.49,8506.87248604431,9280.45102995882,4868.44160967003,9438.84411142012,9451.67353899515 +1583193600,8917.625,8923.6925,8655.715,8754.4925,8521.93961121846,9243.01347249769,4872.32146500794,9417.42986739146,9460.57890086762 +1583280000,8756.825,8847.8675,8668.6825,8757.4225,8536.28900829593,9208.44926467524,4876.20037200488,9394.10697642089,9466.07177385942 +1583366400,8758.6325,9170.465,8757.855,9067.5425,8554.03756793689,9198.41956689735,4880.38503185295,9372.09638880064,9469.59266037122 +1583452800,9063.2225,9181.3575,9000.985,9156.305,8572.19941971283,9195.421865694,4884.65413469825,9352.12302586276,9471.63112343496 +1583539200,9157.1725,9217.95,8857.115,8899.3625,8587.14876645447,9174.34845613081,4888.66244239182,9331.77713034319,9471.33521947752 +1583625600,8899.565,8899.66,8000.2,8036.475,8590.97152592065,9093.35499282349,4891.80523637446,9303.84119777112,9465.64603610642 +1583712000,8037.4375,8186.585,7552.575,7932.88,8594.03647586474,9010.75275946978,4894.84146273578,9269.00696044992,9454.65241249091 +1583798400,7932.72,8156.0125,7726.8875,7887.13,8596.83626383035,8930.77365612568,4897.82898065089,9228.40318938569,9438.67410448578 +1583884800,7891.9625,7995.7125,7588.72,7937.8525,8600.36972199664,8860.09785048805,4900.86415744394,9183.84237015305,9418.38681201267 +1583971200,7949.5675,7968.1825,4673.2225,4844.805,8565.06135801625,8574.29060856504,4900.80818766192,9109.67273242276,9382.55329054701 +1584057600,4844.805,5996.0875,3880.5875,5635.8925,8539.6578080114,8365.13638486285,4901.54210002528,9018.62412919565,9335.61803360933 +1584144000,5627.675,5694.2275,5052.4875,5166.4675,8507.9710037474,8137.45617177541,4901.80660305322,8910.4183937028,9276.92951646213 +1584230400,5161.7925,5985.02,5090.57,5343.135,8478.40289729206,7938.55729767333,4902.24722783786,8790.56030529318,9208.37582156781 +1584316800,5346.805,5349.965,4407.18,5037.2225,8445.25646482379,7732.04122841141,4902.3819879182,8659.50754379182,9129.89939369527 +1584403200,5045.05,5566.905,4935.7975,5332.8675,8416.07062688541,7561.26882108175,4902.81178710485,8522.9337248457,9043.75669367574 +1584489600,5334.43,5451.3125,5010.8725,5414.0525,8388.37611923363,7408.43066023233,4903.32221274386,8383.70025406358,8951.23141690897 +1584576000,5416.645,6436.485,5267.0425,6185.74,8370.57718898869,7321.39993586473,4904.60258596534,8250.15339327737,8856.12974896824 +1584662400,6188.77,7027.6625,5666.9425,6207.055,8353.0497511438,7242.0812249937,4905.9029618723,8122.62359391204,8759.11036774072 +1584748800,6208.885,6466.505,5857.7775,6197.8275,8335.39924468236,7167.75158376417,4907.19282668799,8001.06666709711,8660.66785225668 +1584835200,6194.4675,6418.85,5734.96,5824.085,8313.04237772249,7072.10983242265,4908.10825705504,7882.24348557027,8559.88359268205 +1584921600,5817.7525,6633.955,5686.91,6497.31,8299.37278943907,7031.19576690373,4909.69492512486,7772.51638553773,8459.87957202031 +1585008000,6496.9425,6875.2,6403.0425,6769.9625,8289.01023778871,7012.60126774952,4911.55222686486,7673.5781197529,8361.99670760878 +1585094400,6767.1275,6983.76,6465.1875,6691.9525,8277.79968493424,6989.77759252858,4913.329788636,7583.69664489489,8266.12969540298 +1585180800,6692.82,6795.82,6525.7525,6753.585,8267.04822724379,6972.96548044938,4915.16710991831,7502.57590565314,8172.70190193559 +1585267200,6754.835,6872.7925,6254.625,6375.7975,8250.24360397872,6930.45925741356,4916.62541161728,7426.09793158357,8080.43211183574 +1585353600,6374.45,6374.475,6034.4,6253.6775,8231.94213752721,6882.28615157231,4917.96033203613,7353.04495257757,7989.10914395366 +1585440000,6257.7875,6280.6775,5869.9225,5876.4525,8208.63128907946,6810.69123869957,4918.91729607473,7280.18019463984,7897.57284847608 +1585526400,5878.2075,6632.6025,5854.3525,6406.07,8191.71078632104,6781.89043024991,4920.40207780288,7212.6785903847,7808.18701599617 +1585612800,6406.515,6526.965,6337.145,6424.0325,8174.4460959337,6756.41821891853,4921.90331097878,7150.32801714815,7721.17418281928 +1585699200,6425.015,6719.99,6152.895,6661.81,8160.44919455087,6749.68403660127,4923.64044372495,7094.80967908567,7637.5590868344 +1585785600,6666.485,7267.625,6575.535,6802.8275,8148.18288637593,6753.46677107813,4925.51663478291,7046.61115833107,7557.90111444334 +1585872000,6798.8425,7049.995,6608.8825,6741.01,8135.00756826692,6752.58010215567,4927.32923369702,7004.31684908671,7481.93118506503 +1585958400,6739.1725,7014.3825,6656.72,6874.445,8123.21546095374,6761.25440603263,4929.2732451659,6968.3990137492,7410.1264981018 +1586044800,6882.9,6914.2525,6679.9775,6777.015,8109.83869256177,6762.37623999608,4931.11804105584,6937.1952858565,7342.03613872563 +1586131200,6777.865,7372.43,6773.06,7343.6125,8103.2354028993,6803.74844834128,4933.52668926153,6915.03764903489,7279.74106025896 +1586217600,7339.165,7469.58,7077,7202.6875,8094.59379984157,6832.14480056154,4935.79223233664,6899.29543168473,7222.45159475211 +1586304000,7203.34,7429.22,7154.005,7368.7675,8088.04371754561,6870.34143014515,4938.22132869839,6890.40292581415,7170.5856503227 +1586390400,7368.2275,7377.635,7106.08,7299.13,8080.29937308951,6900.86246138286,4940.57847335994,6886.62048743563,7123.61498602161 +1586476800,7300.035,7307.86,6751.2875,6873.5425,8066.76228882784,6898.9178353984,4942.50835565135,6883.39565545599,7079.69362022601 +1586563200,6872.98,6956.305,6773.16,6888.695,8052.97525024088,6898.19017729259,4944.45143947957,6880.78842832503,7038.78536842091 +1586649600,6886.86,7205.3625,6791.155,6906.54,8038.14837646188,6898.78451496295,4946.41039987146,6878.86610313836,7000.85591192143 +1586736000,6906.2925,6907.855,6554.9775,6862.78,8022.10996880667,6896.22172527325,4948.32371419294,6877.1455642056,6965.62996326605 +1586822400,6862.5925,6990.33,6771.5175,6876.885,8005.40586605307,6894.84534344409,4950.24920076283,6875.72784066795,6933.06394649961 +1586908800,6873.975,6938.73,6604.545,6622.355,7984.23286364101,6875.44956923526,4951.91864071454,6872.37114917618,6902.09350420884 +1586995200,6621.805,7218.2475,6469.8825,7114.9175,7968.43642186871,6892.49481882709,4954.07819109279,6871.70638255078,6874.5599825621 +1587081600,7117.4925,7158.08,6996.44,7033.0025,7951.63065278251,6902.49610997081,4956.15380096118,6872.55384930853,6849.96580028368 +1587168000,7030.83,7304.32,7023.69,7262.19,7937.53516344052,6928.09900432341,4958.45616063396,6876.61935765153,6829.0193938844 +1587254400,7263.6525,7276.5125,7063.92,7130.2775,7920.87332518774,6942.49000402807,4960.62451942656,6882.15682289607,6810.99157476475 +1587340800,7128.3575,7225.7525,6755.955,6840.2975,7900.40479970334,6935.21597475822,4962.50119563411,6886.35057971142,6794.60722395818 +1587427200,6836.6675,6956.7025,6771.705,6854.9675,7879.40538785389,6929.5039143698,4964.39064476898,6889.52944483379,6779.84387691162 +1587513600,6854.2425,7168.3275,6824.465,7137.135,7861.35291511471,6944.2830276577,4966.55992510588,6894.2851540503,6767.68500402433 +1587600000,7137.2325,7774.8625,7032.835,7507.5425,7846.66046059886,6984.37565409155,4969.09685657821,6903.49908471598,6759.35384090439 +1587686400,7511.375,7612.6275,7386.705,7510.8825,7832.07489550248,7021.85224050402,4971.63458983873,6916.32997315489,6754.56901321899 +1587772800,7514.605,7722.775,7440.985,7548.32,7818.04440198356,7059.32604475833,4974.2071672251,6932.34921627791,6753.1884401087 +1587859200,7552.6525,7713.9375,7483.77,7703.1325,7805.74600159165,7105.15197929322,4976.93174181713,6952.19132092567,6755.51250682585 +1587945600,7706.215,7807.935,7634.8975,7790.8125,7794.7409896195,7153.95707262405,4979.74113638966,6975.76489877795,6761.54855751338 +1588032000,7792.8225,7798.0125,7667.1625,7761.97,7783.7569808426,7197.23523546235,4982.51892953042,7001.95520049655,6770.84927243345 +1588118400,7758.0625,8976.83,7721.185,8788.7275,7785.66440152401,7310.51713832879,4986.31906984152,7038.94790520271,6786.97928100275 +1588204800,8788.4175,9481.3425,8408.75,8627.93,7785.37453647431,7404.29015825245,4989.95487493125,7083.11779811896,6808.68979965125 +1588291200,8627.5475,9071.6575,8621.9875,8827.04,7787.65444907589,7505.56103023053,4993.78584257029,7134.53171340434,6836.17626065604 +1588377600,8830.9925,9020.8,8759.895,8982.3675,7791.97477406613,7610.67963544697,4997.76806520993,7192.80352356874,6869.43033311305 +1588464000,8984.3425,9205.4975,8725.59,8908.385,7794.82588098995,7703.04988212189,5001.67244742653,7255.57395376715,6907.55667483327 +1588550400,8913.4975,8973.09,8533.0975,8884.475,7796.79367235079,7787.14333857756,5005.54905960553,7321.29602561908,6949.90675824614 +1588636800,8892.8125,9122.2125,8771.3625,9028.66,7799.41119184605,7875.51409159984,5009.56575647791,7390.12467707653,6996.50602058168 +1588723200,9030.195,9420.2375,8921.97,9157.695,7802.58224823154,7966.7793125243,5013.70727233605,7462.0295506292,7047.30447949814 +1588809600,9158.815,10078.3,9033.98,10002.4525,7815.46207707729,8111.67786932529,5018.68806397962,7543.14631739502,7104.94331579436 +1588896000,10005.9075,10048.9725,9728.755,9806.6125,7825.9733999217,8232.32276624086,5023.46835500125,7629.44740028852,7167.88372402918 +1588982400,9808.49,9917.4175,9519.3425,9541.09,7832.90388311359,8325.4803931757,5027.97877417708,7716.97214532545,7234.434573374 +1589068800,9531.785,9564.665,8086.295,8726.06,7829.88896848365,8353.9935195802,5031.67095953157,7797.70122919071,7300.95979010275 +1589155200,8730.695,9179.2075,8189,8571.67,7824.87175952029,8369.48766080896,5035.205314732,7870.80704247821,7366.62731520663 +1589241600,8572.2425,8981.5925,8535.8025,8823.31,7823.04181024194,8401.79058762325,5038.98738002102,7939.18464618993,7432.21235794287 +1589328000,8819.55,9416.6325,8805.295,9316.36,7827.28289820504,8466.88934157011,5043.25793320219,8007.34358176043,7499.33616000616 +1589414400,9320.47,9946.5675,9259.475,9790.2375,7837.17346091533,8561.08483399074,5047.99734463323,8078.82995500552,7569.40390673937 +1589500800,9793.12,9830.9225,9119.3525,9311.1425,7840.11406933553,8614.47369522393,5052.2536930327,8148.29414355709,7640.09149760684 +1589587200,9312.48,9589.685,9215.6475,9387.115,7843.77218722106,8669.47005253495,5056.58164324633,8216.15096268047,7711.36618817194 +1589673600,9379.845,9891.695,9325.61,9670.7075,7850.92493331122,8740.73780909105,5061.18841277672,8284.55039438516,7783.97983291179 +1589760000,9681.9,9956.7475,9435.1675,9726.3225,7858.67280758864,8810.89140751563,5065.84610921488,8353.28571014005,7857.75439662799 +1589846400,9730.0075,9900.4725,9462.7825,9782.035,7867.05410637333,8880.01709324125,5070.55477905965,8422.18477557803,7932.52296565079 +1589932800,9780.02,9841.8525,9251.6425,9512.655,7872.6318742932,8925.04805411991,5074.98979721565,8488.2942197769,8006.90142304922 +1590019200,9509.9075,9568.5675,8800.5,9059.705,7872.23143170075,8934.63289182435,5078.96815956496,8547.62153212168,8078.93159620449 +1590105600,9060.84,9266.6525,8925.2325,9168.7,7873.7170490745,8951.29371261715,5083.05137112331,8601.79861359079,8148.95273574971 +1590192000,9168.925,9313.9875,9084.845,9179.705,7876.16854654566,8967.55195392153,5087.14149343466,8651.36543739919,8216.91279650323 +1590278400,9181.0975,9304.825,8672.7825,8716.09,7873.50585765465,8949.65297365409,5090.76465628857,8692.70311960902,8280.97964211121 +1590364800,8712.855,8978.0075,8636.7325,8898.915,7874.49566571188,8946.04146115654,5094.56673527713,8728.49388714671,8341.93275447722 +1590451200,8900.6675,9014.1125,8692.4575,8842.3325,7875.31726010505,8938.65949096046,5098.30852595818,8758.92271728573,8399.59302852191 +1590537600,8841.4,9228.3025,8810.77,9210.6075,7881.47444274843,8958.01666198239,5102.41426867124,8787.86092676664,8455.41340432199 +1590624000,9207.9025,9608.7525,9110.165,9556.0825,7892.08909579287,9000.58679422851,5106.86083639469,8818.30919690651,8510.6441356128 +1590710400,9574.875,9606.905,9325.355,9424.535,7902.56939259764,9030.76328992173,5111.1716268665,8848.59936733587,8564.63002896531 +1590796800,9426.3825,9754.3975,9328.15,9701.15,7916.94473661444,9078.48119836919,5115.75428741174,8880.8888861842,8618.31763626044 +1590883200,9701.4725,9704.9975,9377.135,9448.95,7928.60119952088,9104.85104743256,5120.08057468645,8912.36391038574,8670.57720082609 +1590969600,9446.96,10413.065,9416.49,10206.925,7950.4460780081,9183.29631369508,5125.15930912758,8949.44926523365,8724.1951221268 +1591056000,10208.5,10236.705,9241.5475,9523.3525,7964.35523563576,9207.50140267006,5129.55049025474,8984.92028177861,8776.27206723627 +1591142400,9519.505,9693.985,9366.23,9666.645,7981.73905328318,9240.18309491164,5134.08035124963,9019.99528686757,8827.28351217681 +1591228800,9667.87,9887.175,9451.915,9791.94,8002.26604094594,9279.45697234155,5138.73078484699,9055.52442602231,8877.60056597878 +1591315200,9793.39,9856.7025,9576.0225,9618.695,8021.98053781878,9303.60382504962,5143.20360663043,9089.62237758348,8926.4380350836 +1591401600,9598.0475,9737.7875,9528.0775,9671.7825,8042.78052048769,9329.81066363915,5147.72496558544,9122.70706453486,8973.93776931176 +1591488000,9671.515,9819.6775,9373.77,9752.5925,8065.21598261618,9359.90413753626,5152.32249155409,9155.37072152473,9020.33929749082 +1591574400,9756.0075,9904.565,9637.3975,9782.51,8088.58350180899,9389.9850856685,5156.94529712899,9187.66426133789,9065.67374535096 +1591660800,9783.695,9894.8825,9563.3325,9780.1875,8112.08688234474,9417.75956687931,5161.56116847127,9219.35406240122,9109.85187441212 +1591747200,9781.8925,10010.6675,9654.5,9893.4425,8136.97567584173,9451.61852367459,5166.28550573823,9251.25228374857,9153.23285357246 +1591833600,9894.88,9989.56,9065.3425,9266.2725,8154.8870254806,9438.42565386401,5170.37895610056,9277.62449321145,9193.35226952608 +1591920000,9267.9175,9552.1025,9230.4125,9464.24,8175.91274854765,9440.26311064385,5174.66597141807,9300.93390289724,9231.08351311879 +1592006400,9463.8075,9496.5925,9349.555,9474.3475,8197.65388967012,9442.68922641604,5178.95879794062,9321.60944916429,9266.52532171132 +1592092800,9476.19,9479.8725,9237.5025,9329.6975,8219.03006320775,9434.64651200153,5183.10291909702,9338.6889437016,9299.19227502115 +1592179200,9330.565,9501.075,8900.6275,9430.55,8243.91737705703,9434.3549236068,5187.34359444956,9353.53419700252,9329.57779081844 +1592265600,9431.735,9591.99,9382.5925,9527.8625,8272.68207221257,9441.01076254631,5191.67719324183,9367.25426966328,9358.12858173545 +1592352000,9529.1525,9560.9925,9231.4375,9456.335,8301.94857506444,9442.10153679474,5195.93505188107,9379.31172330625,9384.62271982213 +1592438400,9456.9225,9480.5875,9264.2625,9376.185,8331.89117323605,9437.40961909909,5200.10863723359,9389.20424608424,9408.83235187642 +1592524800,9374.175,9432.22,9226.7625,9301.5275,8363.31606404802,9427.73757396255,5204.20351718159,9396.58478735872,9430.57836590827 +1592611200,9298.1125,9395.745,9157.9375,9357.655,8400.15246502905,9422.74911909339,5208.35034679375,9402.32015039571,9450.20006328623 +1592697600,9357.0375,9419.1375,9275.3025,9285.9675,8434.44160720313,9413.01304783919,5212.42146297939,9406.03273996018,9467.53325294807 +1592784000,9287.1825,9789.2375,9270.7025,9688.89,8473.89006285896,9432.64987975734,5216.89079465788,9411.53228123157,9484.22860782395 +1592870400,9691.105,9723.8025,9574.8225,9622.5125,8511.55022536423,9446.16423944576,5221.28939245618,9417.88057193311,9500.02665268564 +1592956800,9622.08,9665.435,9196.96,9287.6075,8544.4208529265,9434.87822219205,5225.34922761029,9421.97707275504,9513.67932661204 +1593043200,9286.41,9337.93,8985.61,9238.85,8575.11000028156,9420.92499695794,5229.35632963621,9423.76413804196,9525.13335955839 +1593129600,9239.4675,9289.185,9027.6,9154.7425,8603.40019262717,9401.97821321476,5233.2754575417,9422.90871597859,9534.21482180559 +1593216000,9156.2025,9186.245,8820.86,9004.28,8627.98484381044,9373.67018347223,5237.04044995077,9418.58602952284,9540.52295610224 +1593302400,9005.5575,9190.005,8933.915,9116.235,8653.56956108325,9355.34603066399,5240.91345987951,9412.41604865512,9544.69251490454 +1593388800,9116.4575,9236.1375,9015.0975,9186.5725,8679.65743952108,9343.33278552726,5244.85282833361,9405.38770396083,9547.15519775507 +1593475200,9189.4375,9201.74,9060.67,9134.015,8704.73304641734,9328.43361348811,5248.73578999253,9397.2596035288,9547.84835862374 +1593561600,9135.67,9298.875,9080.5,9236.385,8729.44768165249,9321.88162305467,5252.71708167136,9389.18197249957,9547.30641022611 +1593648000,9236.2825,9267.49,8938.15,9093.3025,8751.82279403279,9305.61143526164,5256.55154402312,9379.9787793876,9545.09609325832 +1593734400,9092.415,9137.155,9037.0275,9064.355,8773.90401103503,9288.43888050018,5260.353276677,9369.67891253357,9541.25829224556 +1593820800,9060.425,9195.8325,9043.9725,9140.565,8796.93250840566,9277.91326567907,5264.22730215733,9359.22467842823,9536.23366587055 +1593907200,9140.645,9146.9125,8909.995,9078.89,8819.60444177911,9263.7468542216,5268.03588311734,9348.20065734912,9529.90919515759 +1593993600,9078.75,9373.985,9063.265,9347.485,8845.43113630745,9269.70730826065,5272.10882834595,9339.12511331445,9523.43357208108 +1594080000,9346.455,9381.0175,9203.28,9256.945,8869.74642762303,9268.7988913007,5276.08731147127,9330.94832330641,9516.50219736274 +1594166400,9257.3575,9481.8975,9233.9225,9439.2625,8894.76776892404,9280.93243564347,5280.24384928658,9325.15770441638,9509.86847824882 +1594252800,9440.375,9446.305,9158.195,9237.495,8916.53929180539,9277.84057307211,5284.19479136991,9319.63599549505,9502.77022640992 +1594339200,9237.505,9319.0125,9105.285,9288.2275,8938.00772088872,9278.57991115973,5288.19244042706,9314.82181958808,9495.46532365926 +1594425600,9291.46,9302.8975,9182.91,9237.305,8958.20425179794,9275.64197637927,5292.13525689465,9310.19112962361,9487.8066279289 +1594512000,9236.215,9345.4575,9158.34,9302.385,8978.81714351877,9277.54553612107,5296.13911307442,9306.31402299776,9480.09890209086 +1594598400,9303.9125,9351.015,9194.2325,9236.425,8997.92763464039,9274.61858970576,5300.07311694177,9302.52019138696,9472.12633781171 +1594684800,9236.455,9280.195,9095.44,9254.7525,9016.76225397245,9273.2045278881,5304.02149135763,9298.98610262915,9464.01076925569 +1594771200,9256.3625,9275.01,9154.3475,9192.06,9033.72168439512,9267.42868672872,5307.90333114499,9295.15429241761,9455.55825730229 +1594857600,9192.46,9215.4725,9021.5525,9131.8425,9050.00534760287,9257.77770596225,5311.72117378649,9290.59010963812,9446.60197104328 +1594944000,9131.845,9192.805,9070.505,9154.5775,9066.33822112372,9250.43194879578,5315.55790342562,9285.6594054052,9437.30441875342 +1595030400,9153.08,9213.22,9124.25,9176.77,9083.19511467955,9245.18871518769,5319.4129595704,9280.66164066354,9427.81353165545 +1595116800,9176.23,9242.695,9107.7725,9213.99,9100.93977888985,9242.96800076626,5323.30132746513,9275.97366772527,9418.32214142011 +1595203200,9215.165,9225.375,9131.4275,9163.4975,9117.6361290202,9237.3113163141,5327.13540119168,9271.14458906389,9408.675459028 +1595289600,9163.33,9438.6425,9157.2725,9393.93,9136.80444354774,9248.45938338782,5331.19571207737,9268.23320062101,9399.79329503125 +1595376000,9395.2525,9568.7525,9280.2975,9536.005,9157.36539971434,9268.92678705453,5335.39381761461,9268.15284817303,9392.18070385578 +1595462400,9535.8875,9682,9454.82,9615.2925,9178.40878992883,9293.580986088,5339.66689283086,9271.0876770422,9386.05790043849 +1595548800,9614.7225,9648.775,9478.0275,9551.6625,9198.18634647882,9311.95114448717,5343.87217323015,9275.92763089367,9381.0810533166 +1595635200,9553.085,9748.7275,9537.345,9712.85,9218.62940353494,9340.48699490971,5348.23418557142,9283.68649776058,9377.7802120937 +1595721600,9713.8075,10184.4275,9662.9875,9942.845,9241.51168969942,9383.36264221503,5352.82147117243,9295.76790151065,9376.89386685873 +1595808000,9942.1375,11418.6925,9935.68,11046.5075,9277.46103454086,9501.74475341376,5358.50607972615,9320.84185642021,9382.38781617626 +1595894400,11049.5475,11261.725,10584.12,10936.3525,9311.77133172662,9603.85966720974,5364.07503335504,9355.43563972817,9393.28285745209 +1595980800,10934.42,11354.1175,10851.87,11111.095,9347.85793209568,9711.14418902023,5369.81289081599,9399.07284541074,9409.73850157083 +1596067200,11107.9575,11188.875,10824.9775,11128.7175,9382.98604115752,9812.04659721832,5375.56261397172,9449.92509820445,9431.28636911959 +1596153600,11128.4075,11460.3875,10977.225,11354.0825,9419.38445081114,9921.80821230618,5381.53160227044,9508.2217200248,9458.26316908528 +1596240000,11354.7825,11887.3725,11236.305,11812.8525,9460.13084637797,10056.4121309604,5387.95266967771,9576.10474405873,9491.83788421679 +1596326400,11810.79,12123.25,10569.515,11066.14,9490.68989957334,10128.2842329686,5393.62180424259,9644.83243879982,9528.50294664553 +1596412800,11071.575,11484.8475,10895.7775,11236.735,9522.40027397601,10207.183398815,5399.45560173068,9715.13565306744,9568.50135943537 +1596499200,11236.5325,11419.9425,11011.99,11196.035,9552.40997794248,10277.5695348528,5405.24293961037,9785.77543769845,9611.24496709574 +1596585600,11196.9275,11798.3125,11086.7475,11755.6625,9588.27908881504,10382.7797123927,5411.58323466175,9860.91929009126,9658.45226154918 +1596672000,11756.68,11915.7825,11578.7675,11773.815,9623.0516598053,10481.7931527001,5417.93532308582,9939.27592046362,9709.63400228134 +1596758400,11773.86,11920.0825,11318.0175,11606.64,9653.53619928541,10561.8593862187,5424.11416107665,10018.1531141998,9763.62768831754 +1596844800,11607.3625,11818.0375,11534.3475,11775.3475,9685.89775715815,10648.2350763166,5430.45526860916,10098.2351306346,9820.62742810457 +1596931200,11771.34,11808.6325,11533.1325,11687.8175,9716.39662222611,10722.2322158349,5436.70265469335,10177.8593799685,9879.83184912134 +1597017600,11688.64,12087.03,11503.8775,11900.03,9749.02620495305,10806.0674798542,5443.15567752014,10258.2532203891,9941.63130194102 +1597104000,11898.18,11943.9,11128.875,11390.4325,9775.02652684323,10847.6623923308,5449.09347256631,10334.1798708904,10003.6473894074 +1597190400,11388.96,11626.28,11154.1675,11570.8525,9802.82181984551,10899.1388294813,5455.20547163949,10407.3347251549,10066.3088190284 +1597276800,11572.6525,11803.0375,11273.5125,11795.9525,9832.68804776768,10962.9737354854,5461.53610957981,10479.5227761694,10130.1741351353 +1597363200,11796.93,11865.0175,11654.565,11777.6425,9861.57180924947,11020.9615937405,5467.8421461669,10550.1331146885,10194.8306609881 +1597449600,11775.915,11988.285,11680.0275,11859.085,9890.47578368082,11080.6189457827,5474.22319942692,10619.5391254168,10260.2745132043 +1597536000,11860.2075,11940.23,11692.625,11918.0375,9921.04778767544,11140.2261266853,5480.65674031873,10687.8639791752,10326.4142368085 +1597622400,11920.0225,12479.03,11775.86,12305.01,9957.44515369502,11223.1350647539,5487.47021347429,10758.0540032882,10394.4022212888 +1597708800,12305.61,12400.5575,11820.1775,11956.1375,9990.508848063,11275.3099401967,5493.9285677288,10826.1557963075,10462.5071365425 +1597795200,11953.5125,12023.345,11572.7725,11759.73,10020.553025793,11309.7908028336,5500.18437955921,10890.2530058415,10529.7201668587 +1597881600,11760.7725,11896.4925,11674.695,11857.665,10050.5829052649,11348.7883103738,5506.53172441316,10951.3482017043,10596.2331588932 +1597968000,11860.445,11884.365,11489.09,11529.71,10075.2612305649,11361.6662575227,5512.54529990232,11006.610429388,10660.6160100234 +1598054400,11530.9,11692.6375,11366,11673.4475,10101.1863143694,11383.8587451728,5518.69637974199,11057.838775836,10723.3494993891 +1598140800,11675.35,11714.815,11524.1375,11650.9875,10127.4813075288,11402.872883244,5524.81889411662,11105.1114695062,10784.2521479149 +1598227200,11653.5025,11826.32,11595.3825,11760.61,10154.7726386383,11428.3364951101,5531.04474346627,11149.668883464,10843.6636013251 +1598313600,11755.1675,11771.9825,11113.87,11327.7775,10176.2106647547,11421.1787384748,5536.83223445973,11187.8655481337,10899.8517947603 +1598400000,11327.705,11612.1975,11252.9325,11470.0925,10199.5726375958,11424.6604041451,5542.75603529563,11221.72936137,10953.416022516 +1598486400,11467.09,11598.1575,11126.615,11320.96,10221.4173337934,11417.2790430343,5548.52502703781,11250.4466222964,11003.8139449377 +1598572800,11325.72,11553.24,11289,11538.1775,10246.7822873297,11425.8845559632,5554.50513017472,11276.5594002147,11051.9447325465 +1598659200,11537.465,11584.415,11421.0575,11476.0725,10271.9829372054,11429.4569175311,5560.41725675696,11299.7668744481,11097.5848651165 +1598745600,11475.4225,11716.2325,11465.86,11713.08,10299.8547466257,11449.6451164905,5566.56011027598,11322.4324298403,11141.6687659494 +1598832000,11714.0825,11781.8575,11577.34,11657.2675,10326.9908398266,11464.4236103643,5572.64110721724,11343.973730909,11183.9515153076 +1598918400,11658.1025,12072.2525,11528.29,11925.9375,10357.7212734636,11497.2740192429,5578.98427451447,11366.7264834263,11225.4411569994 +1599004800,11922.5575,11955.2125,11166.905,11397.7725,10380.95063177,11490.1915333967,5584.79378581372,11385.7133415809,11264.053947166 +1599091200,11397.7475,11477.3225,10004.465,10171.66,10388.1528340202,11396.3388867827,5589.37333916174,11390.8384667294,11295.2585270479 +1599177600,10171.5375,10638.5725,9924.1675,10470.58,10397.9574267832,11330.4436696792,5594.24676368782,11387.099457914,11320.6957429937 +1599264000,10471.5225,10567.8575,9849.325,10166.6325,10403.222369626,11247.6039683397,5598.81185964428,11373.4727842317,11339.6121105514 +1599350400,10166.9575,10353.8275,10003.365,10258.09,10409.5790062245,11177.1706852228,5603.46370947174,11352.6200486198,11352.8359954715 +1599436800,10258.355,10414.165,9879.525,10378.3725,10416.9351446495,11120.3124896509,5608.23100559879,11327.0425787841,11361.2556801584 +1599523200,10379.2975,10442.1825,9836.43,10126.5975,10421.2044440275,11049.5801792006,5612.74216843651,11295.6226948509,11364.2970690859 +1599609600,10126.9275,10349.595,9984.3225,10230.265,10425.9719892033,10991.2615906561,5617.3523295259,11260.5641084732,11362.7974402153 +1599696000,10224.53,10493.5,10221.5525,10346.9775,10433.3076090046,10945.4016581875,5622.07441422882,11223.8240186493,11357.5892924035 +1599782400,10353.27,10412.255,10204.6,10397.115,10440.9614795113,10906.3747918057,5626.84184194099,11186.4516066069,11349.1969403301 +1599868800,10398.9425,10480.1625,10277.7975,10446.5425,10449.1413458709,10873.6440785148,5631.65385852365,11149.3093522649,11338.109462536 +1599955200,10447.61,10579.535,10215.5675,10335.125,10456.181779035,10835.3124652841,5636.34983089508,11111.7143558537,11324.1771353529 +1600041600,10336.025,10757.6625,10252.8975,10678.515,10467.4045974579,10824.1516725942,5641.38395731239,11077.040411312,11308.9911900841 +1600128000,10676.8725,10940.065,10616.0875,10785.185,10479.8878750538,10821.3780374857,5646.51955756464,11045.9914708568,11293.1183771483 +1600214400,10785.71,11099.7125,10665.705,10955.3775,10494.5903138765,10830.9160757375,5651.81995156551,11019.6644679152,11277.3197322155 +1600300800,10953.6575,11047.5,10742.97,10944.9075,10509.3562003826,10839.0299483203,5657.1046003152,10997.3592378443,11261.6090716827 +1600387200,10946.64,11039.885,10816.3425,10935.2675,10524.2730879868,10845.8801060147,5662.3743482106,10978.4721697826,11246.0018392798 +1600473600,10937.1075,11180.7775,10894.34,11081.2575,10541.9368268925,10862.6341925262,5667.78459200703,10963.8225114661,11231.0994780123 +1600560000,11079.2625,11081.435,10762.7825,10921.11,10557.1833723333,10866.7964815237,5673.02954200928,10951.4011380074,11216.2935700139 +1600646400,10920.915,10993.4575,10264.16,10415.95,10566.086308143,10834.7053752923,5677.76490080297,10936.5533531248,11199.724198548 +1600732800,10418.82,10575.6275,10357.85,10535.13,10576.5783243431,10813.3816973071,5682.61452177814,10920.8680187639,11182.0539287382 +1600819200,10532.25,10540.36,10136.78,10234.5225,10583.0366465573,10772.1786875131,5687.15917262431,10902.030560699,11162.3079124989 +1600905600,10236.13,10793.0075,10193.29,10749.985,10595.8462785381,10770.598948039,5692.21392676048,10885.2187677687,11142.6837373826 +1600992000,10743.3475,10763.1775,10555.5225,10691.8375,10608.0750496088,10764.9927337298,5697.20557940622,10869.7161336087,11123.0255689648 +1601078400,10692.9925,10830.5425,10658.6975,10731.0575,10620.8821280539,10762.5772348067,5702.23140582887,10855.7635951899,11103.5586381315 +1601164800,10731.4225,10803.1125,10597.205,10777.975,10634.2455757167,10763.6732427358,5707.29905713697,10843.6125118158,11084.5173714654 +1601251200,10779.07,10952.065,10630.8075,10694.3675,10646.3325532205,10758.7400824612,5712.27817466905,10832.3257458232,11065.6217568362 +1601337600,10689.7125,10863.9625,10638.9925,10841.27,10660.1199158026,10764.6145352063,5717.39898931436,10823.1175515257,11047.4855109162 +1601424000,10843.19,10847.07,10663.015,10779.1975,10672.6245534975,10765.6525459074,5722.4527177717,10815.1623799175,11029.8781532566 +1601510400,10781.775,10933.495,10440.445,10621.26,10683.5797471058,10755.3747313527,5727.3437148584,10806.9414990552,11012.2247892116 +1601596800,10616.7775,10664.1625,10376.45,10575.665,10694.5638277524,10742.5830510003,5732.18430643812,10798.1789319537,10994.4238149094 +1601683200,10573.93,10605.415,10501.665,10553.77,10705.3136779722,10729.1433993099,5736.99820505095,10788.8571981871,10976.4723205934 +1601769600,10550.8125,10695.945,10527.1,10673.18,10717.5904573042,10725.1599427101,5741.92651706398,10780.1882964412,10958.9018199976 +1601856000,10671.41,10801.43,10624.7075,10796.145,10731.3426457806,10730.2126360496,5746.97267757845,10773.1944150194,10942.2106212741 +1601942400,10798.5575,10801.7125,10526.6975,10605.925,10742.2474346206,10721.3658824535,5751.82388324632,10765.9946136691,10925.6686686062 +1602028800,10604.4575,10682.2775,10550.5225,10670.07,10753.6542822494,10717.7146581887,5756.73428817611,10759.2421616261,10909.5679692444 +1602115200,10670.0825,10962.8675,10536.7925,10930.3575,10768.1693709478,10732.850506655,5761.89966305185,10755.1662321235,10894.9147260692 +1602201600,10930.75,11114.615,10834.735,11056.8425,10783.9578057698,10755.9121515888,5767.18616413216,10754.420918328,10882.1188482446 +1602288000,11059.6125,11496.96,11059.0725,11302.1025,10802.7863181573,10794.789803321,5772.71225612032,10758.5423238326,10871.9969068257 +1602374400,11301.5225,11446.105,11274.05,11375.2725,10822.198074309,10836.1083732733,5778.30588417143,10767.2644405982,10864.6360864686 +1602460800,11375.1175,11730.81,11188.1575,11535.7025,10843.1399594925,10885.9052561585,5784.05410173801,10781.0829948824,10860.4352507131 +1602547200,11536.2125,11563.475,11314.36,11428.785,10862.3631787636,10924.547260132,5789.68983321059,10798.0506073677,10858.7378372021 +1602633600,11431.935,11555.2025,11294.5625,11429.41,10880.89842281,10960.4832261011,5795.32056194035,10817.4676423717,10859.3397645606 +1602720000,11431.4725,11628.465,11256.1525,11506.8975,10900.2467615385,10999.3768167769,5801.02303287972,10839.4017984114,10862.335874867 +1602806400,11508.1575,11550.1225,11203.2725,11325.495,10916.8959582761,11022.5898032162,5806.53869715065,10861.6489722887,10866.8262632816 +1602892800,11329.3775,11414.77,11262.6325,11367.0225,10934.1201467233,11047.1064107866,5812.09031584343,10884.320336485,10872.8237426271 +1602979200,11366.2075,11522.5275,11353.61,11513.1325,10952.8050021307,11080.2779965667,5817.78226882452,10908.4077736594,10880.7292782526 +1603065600,11513.305,11836.43,11415.9425,11760.85,10974.3276795912,11128.7208908895,5823.71586148996,10935.5934256705,10891.2862370754 +1603152000,11759.615,12059.84,11684.65,11923.335,10997.4686142272,11185.2812652817,5829.80575597196,10966.4975780564,10904.8429072633 +1603238400,11924.4075,13246.91,11901.965,12811.105,11031.4637444411,11301.0068710533,5836.77592489201,11007.8682928362,10924.4455177971 +1603324800,12807.73,13204.8725,12693.8125,12985.925,11067.2098250506,11420.9387966267,5843.91367603923,11059.0033841676,10950.1661622603 +1603411200,12986.17,13036.05,12730.4675,12940.1275,11101.9928164525,11529.0741554758,5850.99857633026,11117.3335776613,10981.2145869705 +1603497600,12939.9675,13177.5325,12887.6275,13127.4175,11138.6017817585,11642.8437159922,5858.26339441902,11182.6979380667,11017.7278141127 +1603584000,13125.275,13358.31,12873.7975,13042.115,11173.4149455196,11742.4433918504,5865.43579277028,11252.5467640147,11058.7811925759 +1603670400,13042.86,13249.1225,12785.0975,13071.8175,11207.8174746605,11837.0678094163,5872.63068530331,11325.7378623552,11103.9458355097 +1603756800,13070.675,13793.88,13062.795,13663.92,11248.7738395823,11967.102555432,5880.40955292239,11406.1644736107,11154.9375781453 +1603843200,13673.1175,13860.09,12895.8925,13286.15,11284.0599181041,12060.9919244357,5887.80348635653,11488.5826793146,11209.6418502839 +1603929600,13284.9025,13651.245,12981.235,13466.4225,11320.2691700439,12161.0300166679,5895.37002273599,11573.4852763455,11268.2171782639 +1604016000,13462.745,13694.34,13131.6625,13570.475,11356.642749508,12261.3538531421,5903.03289125096,11660.5973045513,11330.5061633477 +1604102400,13573.2125,14095.095,13428.1875,13809.855,11394.9488188808,12371.575662205,5910.92710746951,11750.8433287013,11396.8618006307 +1604188800,13799.875,13904.565,13632.055,13768.1925,11431.6298225823,12470.9863954432,5918.77184598039,11842.5273458595,11466.5304192085 +1604275200,13768.7125,13842.045,13219.33,13569.8975,11464.1940908046,12549.2065312109,5926.41077340249,11932.8875912923,11538.2184290204 +1604361600,13571.555,14079.0225,13295.6775,14037.9525,11500.7449997339,12655.1749860925,5934.50938285327,12025.423857471,11613.2509269185 +1604448000,14039.165,14273.01,13535.4775,14162.7275,11536.5157171633,12762.482084752,5942.72448267679,12120.0290108948,11691.5313922595 +1604534400,14168.4275,15776.2175,14113.8275,15610.2425,11590.1415233552,12965.1847468606,5952.3765877167,12228.0317799714,11777.9542864651 +1604620800,15608.8575,15971.91,15189.285,15601.6325,11642.9320099341,13152.8462422624,5962.01045976694,12346.0485523502,11871.468434947 +1604707200,15604.7475,15776.6,14344.0575,14838.965,11685.6522023319,13272.8636282036,5970.87326172948,12464.6904583544,11968.2377252082 +1604793600,14836.535,15663.25,14722.9175,15484.175,11735.7583150086,13430.2640539606,5980.3713963582,12588.3987031955,12070.0564588214 +1604880000,15483.03,15851.17,14821.125,15336.3475,11783.5361783363,13565.9384550249,5989.71245617742,12713.927619339,12175.5525760656 +1604966400,15344.6825,15479.5525,15095.6375,15315.845,11831.9255603986,13690.4962349591,5999.02372001658,12839.691979979,12283.9376039009 +1605052800,15316.85,15995.2525,15294.3275,15708.3125,11884.4824882032,13834.1237418167,6008.71752922379,12967.9556194255,12396.0386908654 +1605139200,15706.815,16366.1325,15455.16,16308.4025,11943.9783242222,14010.2421007899,6019.00079334988,13102.3542107625,12513.3826663055 +1605225600,16307.6025,16492.71,15973.975,16342.135,12002.7977515154,14176.2254805332,6029.3074693266,13240.9297359321,12635.2080172367 +1605312000,16343.145,16344.37,15717.085,16084.31,12058.3575460875,14312.0423173546,6039.34644111116,13379.5148030693,12759.7000510994 +1605398400,16088.0525,16171.57,15795.8875,15969.7475,12112.582519277,14430.0372342424,6049.26101007675,13515.9193239123,12885.7292977207 +1605484800,15970.3225,16892.7075,15880.955,16724.2975,12175.940395436,14593.3419353503,6059.91902729698,13655.8736406105,13015.5385291247 +1605571200,16728.7325,17877.73,16573.09,17683.04,12251.3397786032,14813.2656408218,6071.52361746367,13805.8265563673,13151.9366418414 +1605657600,17680.9875,18488.8075,17166.6225,17792.575,12327.8906479579,15025.3319140647,6083.22598190919,13963.6558219238,13294.2619788097 +1605744000,17797.855,18194.815,17359.4125,17825.9375,12405.3338868566,15224.6781107271,6094.9499719574,14126.888902041,13441.5991080271 +1605830400,17826.62,18827.1375,17767.41,18682.275,12492.8032041019,15470.7887351326,6107.51722894357,14300.5593605914,13596.1992920067 +1605916800,18682.175,18978.125,18342.8625,18719.7725,12580.1701862019,15702.0503450489,6120.10937642633,14481.6393705534,13757.0027824629 +1606003200,18721.2125,18769.195,17612.955,18442.9925,12663.9005754136,15897.1497180578,6132.41261310922,14664.8570646134,13921.8297091005 +1606089600,18440.27,18780.865,18005.4175,18390.1275,12746.6860533878,16074.5990674734,6144.65078545351,14847.7925361727,14089.5159161442 +1606176000,18385.2675,19450.9275,18066.4375,19169.8975,12839.0386929991,16294.9214053127,6157.65526594522,15035.6553087756,14262.1296972619 +1606262400,19172.4325,19499.825,18469.7725,18727.64,12925.5965726154,16468.0815253368,6170.20521028313,15222.124495502,14436.9301613926 +1606348800,18723.79,18911.8575,16210.25,17167.14,12993.443790636,16517.8402806819,6181.18461259892,15392.3450877475,14607.178401738 +1606435200,17169.0075,17469.82,16432.5675,17152.92,13061.5169394091,16563.045048986,6192.13885568794,15547.6036737116,14772.5648631697 +1606521600,17155.465,17905.515,16877.7075,17740.0325,13137.0024712293,16646.8226337546,6203.66833846158,15694.2864266524,14935.0954714512 +1606608000,17734.33,18356.78,17535.1925,18197.3175,13218.6766870606,16757.1863551164,6215.64286608197,15836.5990007642,15096.1261192336 +1606694400,18201.185,19867.6775,17817.1475,19709.54,13319.0491125819,16967.3339293644,6229.11524982109,15987.158793438,15260.8868224219 +1606780800,19710.6975,19930.2625,18106.75,18779.14,13407.7991941775,17096.2976974455,6241.64526599744,16135.1588717517,15424.924799186 +1606867200,18778.85,19345.0325,18340.775,19228.5225,13502.2386390266,17248.0687668717,6254.61143818128,16283.6584718305,15589.3790404631 +1606953600,19220.4625,19617.0375,18875.8675,19449.8775,13600.0163111557,17404.7927978924,6267.78566695747,16433.1988401337,15754.4290270711 +1607040000,19442.015,19546.265,18577.885,18667.305,13687.6528819966,17494.6580066865,6280.1654176683,16575.5375597128,15916.4456154524 +1607126400,18654.6875,19186.88,18505.5,19159.9025,13781.4867308032,17613.1895692607,6293.0246205146,16714.9794494765,16076.9350849675 +1607212800,19160.87,19427.66,18873.605,19382.2675,13877.7012709552,17739.1119622115,6306.09299514181,16852.7549940983,16236.2609371922 +1607299200,19379.3375,19432.1425,18903.5,19178.0925,13971.4016038953,17841.538129866,6318.9444727467,16986.2035768592,16393.1494256241 +1607385600,19182.1275,19299.675,18158.5675,18317.92,14054.1773593533,17875.4468367711,6330.92431824095,17107.5028074934,16543.967074931 +1607472000,18314.79,18648.5875,17634.8075,18551.52,14140.3658394932,17923.5695051082,6343.12543055946,17219.7776932221,16689.5426629268 +1607558400,18548.5225,18559.9175,17908.525,18247.86,14223.2700340816,17946.6523972852,6355.01118534477,17321.0326847961,16828.6254509019 +1607644800,18250.97,18289.5875,17575.405,18035.185,14305.3076330114,17952.954119213,6366.67273739374,17410.5078692011,16960.4391469706 +1607731200,18030.74,18962.175,18021.5375,18814.7425,14398.8103701871,18014.2959364615,6379.10096112992,17496.2575044484,17088.0478638199 +1607817600,18813.5075,19416.4575,18700.0425,19164.8025,14495.8965370861,18096.188620254,6391.86627835415,17581.2270617438,17212.6491654542 +1607904000,19160.14,19347.395,18987.4775,19276.6175,14594.3172764718,18180.2111648028,6404.73048734569,17665.786928352,17334.4504702419 +1607990400,19276.5775,19562.59,19051.5425,19442.235,14694.0651954872,18270.0416117987,6417.74720609283,17750.7104689659,17453.8553080241 +1608076800,19441.39,21574.2375,19295.1975,21370.875,14817.3280944348,18490.7579259865,6432.67649403244,17851.8716609377,17577.8996206659 +1608163200,21360.8575,23771.485,21253.0875,22824.125,14958.4371420868,18799.2055879082,6449.04180956145,17978.0798784547,17711.2083975284 +1608249600,22823.2075,23289.67,22339.66,23139.1,15102.460148238,19108.1178636358,6465.70525869985,18126.5258866759,17853.6799580712 +1608336000,23141.4825,24222.145,22768.5825,23856.9625,15254.4843489832,19446.1390836012,6483.0687889636,18298.1891747939,18006.708083056 +1608422400,23856.13,24298.685,23098.7525,23478.995,15400.88553757,19733.1964588556,6500.03761847553,18484.201679929,18167.3900192597 +1608508800,23477.04,24111.9925,21894.5975,22729.9375,15537.0280161675,19946.5035135634,6516.24164293795,18673.9357069691,18331.639573864 +1608595200,22739.8975,23843.4625,22375.885,23834.1425,15686.1827877662,20223.2243948736,6533.53193376995,18874.6367638557,18502.7029508506 +1608681600,23826.42,24090.325,22620.0175,23234.965,15826.4372421398,20437.5991136775,6550.20673964912,19077.4455451208,18677.0921628305 +1608768000,23228.25,23778.535,22712.935,23725.2675,15971.9695622488,20671.6142823938,6567.35441811516,19284.4736413301,18855.7174113676 +1608854400,23724.985,24775.6625,23415.7475,24705.6075,16128.9826126442,20958.752610379,6585.46375327989,19501.6580127102,19041.2460327294 +1608940800,24712.245,26816.0875,24493.8325,26458.9725,16307.4738986045,21350.2564770102,6605.30557758176,19740.4777462518,19239.0116672192 +1609027200,26469.4325,28378.285,25777.165,26259.1225,16482.9219050981,21699.6679673402,6624.92806031522,19993.3044982418,19446.472363419 +1609113600,26244.505,27474.655,26077.5475,27037.975,16667.5685786112,22079.6469293622,6645.30856262133,20262.2020500747,19664.9615437102 +1609200000,27037.58,27397.9425,25840.645,27370.3625,16856.3189176158,22456.2383465634,6666.00057449065,20544.869750652,19893.9716323904 +1609286400,27371.025,28999.67,27332.21,28889.2925,17064.0657202997,22914.1410533389,6688.18843569899,20849.5531950983,20137.4792004458 +1609372800,28891.96,29307.5225,27931.1875,28980.4525,17271.8264655232,23345.9391332736,6710.44515908347,21170.5029268564,20393.6763037875 +1609459200,28976.325,29685.86,28697.7925,29404.035,17484.0433580774,23777.1524308949,6733.10256840866,21505.7220127727,20662.1161195146 +1609545600,29406.05,33296.94,29040.885,32223.72,17729.7471154114,24378.3763691063,6758.55254600797,21874.1579371244,20951.3919449338 +1609632000,32213.8175,34789.25,31992.4175,33096.3175,17985.4443982231,24998.9165893707,6784.8483205177,22274.2793874203,21261.935002841 +1609718400,33087.9125,33664.5125,27741.085,32028.2225,18226.6258495399,25499.260302708,6810.05144904619,22687.7758606756,21586.7309362624 +1609804800,32042.0275,34508.74,29913.0975,34052.6475,18492.0934051936,26108.0876273851,6837.25061207567,23126.2019058859,21930.986186439 +1609891200,34066.4,37017.4575,33363.855,36873.235,18791.8698627304,26874.3473235086,6867.23870992765,23605.7304533381,22302.3975722374 +1609977600,36870.75,40400.09,36214.3875,39501.2625,19123.2057404389,27773.12704767,6899.8207051132,24137.6468661096,22707.17778635 +1610064000,39502.535,41993.84,36597.3675,40658.6275,19467.939537147,28690.3127878409,6933.5256900558,24718.0691218126,23145.3316441624 +1610150400,40657.505,41416.715,38780.545,40252.745,19806.4182445369,29513.3229600821,6966.79178835022,25329.8703195054,23610.8342581801 +1610236800,40249.61,41452.4575,34530.2675,38173.345,20117.3543619682,30129.7405182487,6997.94858878158,25944.2219241331,24091.750049616 +1610323200,38170.4125,38270.6825,30228.2825,35458.7275,20392.6718999827,30509.0560820718,7026.36399251565,26531.8936324539,24574.701287047 +1610409600,35446.215,36630.42,32393.75,34034.27,20648.3882404185,30759.9796646317,7053.32883966929,27080.2216980521,25052.3119929156 +1610496000,34033.685,37833,32329.7975,37399.4125,20944.638703485,31232.5723390064,7083.6265424007,27620.5327676336,25535.9403791686 +1610582400,37393.2,40117.0575,36724.085,39139.71,21261.213554806,31795.3998314319,7115.63151866724,28164.6219085073,26029.8203357116 +1610668800,39135.6625,39694.275,34350.89,36760.6625,21545.8649494432,32148.8256166904,7145.22928641181,28686.5494593788,26522.2312435871 +1610755200,36771.7925,37947.3325,35366.2,36010.045,21818.8363495878,32423.6659592247,7174.04808279014,29179.2440522536,27008.6039802983 +1610841600,36009.2125,36853.2525,33850.635,35822.635,22087.4477845998,32665.603472402,7202.65099510687,29642.0096370866,27486.9075421315 +1610928000,35821.3125,37430.2675,34761.7025,36625.1225,22364.0615190063,32947.4407517132,7232.0265582028,30083.0897210939,27959.0522145303 +1611014400,36635.3575,37881.4775,35892.9975,35915.7275,22630.0265329329,33158.7224390904,7260.66452856162,30496.3837849847,28421.0998238158 +1611100800,35911.435,36419.1025,33390.2525,35502.5025,22889.0516465882,33325.5519431454,7288.86134041467,30879.6735069835,28870.6035875002 +1611187200,35506.705,35625.29,30027.815,30839.85,23088.213024767,33148.620485574,7312.37478160285,31194.6580540174,29289.325086635 +1611273600,30834.9025,33865.4625,28876.7525,33001.7675,23312.8436557384,33138.1675377224,7338.02321758043,31469.414848826,29686.4643601555 +1611360000,32993.905,33483.285,31413.075,32111.9675,23524.519855551,33065.1229520934,7362.75766462653,31701.0093567239,30058.9965724216 +1611446400,32105.98,33081.37,30949.995,32291.01,23736.7715102527,33010.021843404,7387.64617371141,31896.6403626846,30408.2832471226 +1611532800,32293.7375,34883.565,31922.43,32271.49,23946.5056525174,32957.4533864831,7412.49034508793,32060.8246116677,30734.9080990056 +1611619200,32264.215,32949.3625,30831.8925,32513.14,24156.6942869856,32925.8273038364,7437.55097663835,32199.8075843155,31040.4770422583 +1611705600,32518.9325,32586.6125,29188.3475,30427.465,24337.9754091292,32747.9946858999,7460.5042377147,32298.8261036838,31317.7503244908 +1611792000,30425.22,33935.67,29898.155,33460.75,24554.5073379925,32798.7283778308,7486.46303114144,32390.3322351801,31579.5412420541 +1611878400,33465.565,38619.21,31987.0675,34257.6675,24777.6777530388,32902.575191044,7513.19155413103,32481.7560985794,31829.1869600447 +1611964800,34262.835,34916.8525,32857.015,34321.5575,24999.7336158593,33003.5778912607,7539.95717935088,32572.8742575458,32067.0186481223 +1612051200,34313.79,34388.2375,32198.425,33138.715,25205.2844684588,33013.1969068016,7565.51512493043,32652.7278502618,32288.6759167532 +1612137600,33128.5375,34716.1675,32328.07,33538.6675,25413.876031977,33050.5997330825,7591.44686816509,32726.0813650932,32496.2072762319 +1612224000,33525.58,36001.9175,33447.0525,35514.35,25645.5054179258,33225.9686774645,7619.32525365811,32810.5324782311,32697.4908099251 +1612310400,35507.6375,37731.73,35396.7925,37688.8725,25902.2036353546,33543.6367231045,7649.34686085906,32922.1816159605,32900.5092431803 +1612396800,37695.575,38759.6525,36191.795,36987.58,26147.4665790341,33788.7754878123,7678.63831989093,33049.1786361559,33101.7001334532 +1612483200,36984.185,38359.3625,36607.3075,38309.9425,26407.8969220179,34110.5906883822,7709.22078841346,33199.1358441454,33305.45272753 +1612569600,38324.045,41002.87,38239.81,39273.03,26677.940784641,34478.0514430988,7740.73427526954,33375.0114851142,33514.4166821811 +1612656000,39271.3675,39729.6575,37398.695,38868.57,26940.5129643457,34790.5671290237,7771.81248371371,33567.1931204173,33725.8324431403 +1612742400,38877.0325,46747.33,38060.915,46431.245,27295.3264412187,35619.1468018646,7810.41028128303,33836.5055841954,33967.2519836368 +1612828800,46425.3975,48209.83,45026.95,46507.4325,27648.6847526518,36394.1714440338,7849.04560862531,34167.6033312045,34235.5002934476 +1612915200,46513.2875,47355.3125,43737.6775,44851.2175,27978.5892243366,36996.1412375391,7885.9887877495,34532.3514298387,34521.028959718 +1613001600,44852.7825,48696.6625,44033.3775,47987.3325,28344.0616568623,37778.4906643786,7926.0261976678,34948.7411154276,34833.1333550392 +1613088000,48003.775,48953,46271.0225,47438.89,28699.1473238568,38466.114753778,7965.47606589295,35399.2751147204,35166.3042306866 +1613174400,47423.98,48216.0375,46252.0625,47230.7775,29047.2220325072,39089.9806034579,8004.67876643993,35872.2054847655,35516.7063868203 +1613260800,47243.4525,49703.665,47080.9625,48660.45,29411.5907682916,39771.2035089806,8045.26971995267,36371.8319287088,35886.9503780245 +1613347200,48652.725,49057.39,45805.93,47935.8025,29765.5032553472,40352.3570153175,8085.0966550358,36882.8374418069,36271.2145479633 +1613433600,47954.68,50612.4425,47042.8425,49184.5275,30131.6607185203,40981.0280439111,8126.13056083098,37409.5818044137,36671.5712910297 +1613520000,49161.2025,52682.1,48943.0775,52161.055,30532.8042534291,41776.818734136,8170.0952801467,37970.4521215233,37096.3806992317 +1613606400,52152.79,52568.25,50883.085,51591.845,30923.8509938776,42475.4491182454,8213.44780233095,38549.6282799051,37539.8100056532 +1613692800,51583.0425,56381.95,50633.93,55970.9075,31366.1763164197,43436.0514658693,8261.12912204663,39176.7135315857,38015.138133552 +1613779200,55977.665,57529.345,53990.5,55951.415,31804.7040081365,44326.8909803318,8308.74337503818,39837.6236386133,38517.7843284709 +1613865600,55930.86,58385.435,55528.68,57492.04,32259.9669485713,45263.9820147652,8357.84825846146,40533.9660443006,39049.3455955291 +1613952000,57489.645,57579.39,46504.5,54157.43,32670.8310521589,45897.0147559603,8403.57482167666,41224.6117062332,39592.7636966888 +1614038400,54146.56,54199.7775,44927.8325,48910.7625,33012.5354282968,46111.5323422607,8444.01742852175,41859.2441479116,40125.1655116997 +1614124800,48912.6,51439.8575,47004.4275,49748.1475,33360.2232583485,46370.3854289148,8485.25570719033,42449.5477900282,40648.6393942943 +1614211200,49729.9475,52083.2225,46706.2525,47074.9725,33670.3999574096,46420.5377079589,8523.78390018434,42975.1706066424,41151.8729835769 +1614297600,47064.12,48465.585,44135.8775,46329.3875,33968.8251487982,46414.0496657394,8561.52923010136,43436.5918544085,41631.8713016871 +1614384000,46334.9375,48363.0775,45046.42,46167.6375,34262.7242710379,46396.5101277559,8599.07538274496,43839.8079246597,42088.1864855626 +1614470400,46143.98,46671.86,43022.665,45238.64,34541.8764339298,46314.0933078522,8635.65653270181,44183.6225008758,42517.6008417836 +1614556800,45247.535,49832.155,45039.19,49638.7375,34874.6977821974,46550.7404024266,8676.59424223046,44513.6335675288,42937.3960153032 +1614643200,49636.5,50254.1925,47067.8375,48502.02,35191.9273184892,46689.6318508885,8716.3561740918,44819.6091223772,43342.512036888 +1614729600,48489.2475,52664.005,48167.45,50383.17,35530.7999224122,46952.5366975939,8757.9565582861,45119.4278728679,43739.7709118229 +1614816000,50387.995,51810,47500.75,48356.735,35841.8554826333,47052.4870770226,8797.49220417645,45394.0716064791,44120.6881334516 +1614902400,48354.1025,49485.035,46280.6975,48754.165,36157.6258674532,47173.6119592958,8837.38517382796,45649.0655490581,44486.7154946486 +1614988800,48769.7,49235.55,47092.015,48902.95,36475.092461427,47296.7056797715,8877.38686190266,45886.9756460101,44838.2986251801 +1615075200,48918.635,51471.6825,48918.6075,50977.285,36815.0119847869,47558.6881212429,8919.41963994043,46126.706452105,45183.1712329432 +1615161600,50978.235,52429.915,49328.4025,52408.405,37168.3898427575,47903.8893946834,8962.83929057073,46378.2343950951,45526.0058524264 +1615248000,52414.055,54932.065,51867.7275,54923.065,37549.0858058459,48403.5120361764,9008.72624163825,46659.0319319345,45875.1771894456 +1615334400,54923.3825,57395.7575,53033.75,55858.515,37937.0875653113,48934.1567275989,9055.50133751942,46969.568589591,46232.3604238934 +1615420800,55887.4925,58134.7725,54280.01,57804.9625,38348.4066838418,49565.5778034331,9104.17307714649,47318.7133727387,46602.8758624261 +1615507200,57844.1125,58080.98,55037.8,57241.355,38749.3792654801,50111.9371330894,9152.23351369411,47691.7301822475,46982.0624324244 +1615593600,57245.175,61769.97,56083.99,61173.205,39197.103899174,50899.2745898901,9204.17154785801,48115.1514893936,47382.5987408004 +1615680000,61182.42,61675.9225,58973.2475,58997.37,39615.7406322586,51475.6943929218,9253.88536073862,48557.5701874794,47792.940435741 +1615766400,58976.94,60584.4475,54579.2,55628.8325,39988.4586340099,51771.3134154708,9300.1863720433,48982.6731107451,48197.983704455 +1615852800,55619.235,56945.6175,53045.1725,56917.675,40374.4991494837,52137.6297627913,9347.72794384592,49400.9973197733,48601.5165174856 +1615939200,56927.0775,58986.6325,54039.74,58917.345,40783.3837079032,52620.2076929999,9397.21853178759,49827.4150774933,49009.6947660124 +1616025600,58935.775,60070.81,57015.995,57640.2625,41174.0377746898,52977.5335648891,9445.38466160412,50245.7649940102,49415.7594539149 +1616112000,57643.065,59455.7075,56255.4975,58090,41566.1441909786,53341.4372664748,9493.95172256338,50657.748911936,49820.0552058903 +1616198400,58047.6425,59911.25,57766.6975,58117.48,41954.7223096399,53681.3944381688,9542.49773008091,51061.1716446809,50221.309461336 +1616284800,58098.9625,58690.7725,55520.0975,57378.6275,42329.1494463245,53944.5622875625,9590.2575944447,51447.6764926739,50615.4754551693 +1616371200,57389.9675,58433.005,53740.7925,54095.6,42656.058333823,53955.313102914,9634.69198173684,51788.5409831503,50989.2697374634 +1616457600,54109.8675,55860.74,52986.0075,54364.5825,42980.7036536091,53984.4447657691,9679.35055914339,52091.2361837691,51344.0285976685 +1616544000,54344.6,57215.575,51675.0525,52289.62,43273.5663316069,53863.8076890018,9721.89289479614,52341.9756258809,51672.1951915293 +1616630400,52280.7175,53241.0025,50372.0775,51324.1225,43547.6149783045,53683.0337215108,9763.42879773671,52539.4575000496,51971.1452632699 +1616716800,51313.0725,55117.2475,51259.3725,55069.4325,43859.9884388363,53781.7171366039,9808.66256982683,52723.7949517491,52256.3773550032 +1616803200,55078.1075,56654.62,53976.0875,55853.0675,44175.6267191389,53929.1551832078,9854.6335659077,52902.4993870138,52530.9399374461 +1616889600,55847.195,56571.5875,54695.105,55786.5525,44485.9999623045,54061.3641213935,9900.49225532953,53074.449733504,52794.4521715444 +1616976000,55787.1175,58463.2875,54900.1275,57610.7275,44814.750332062,54314.0066547267,9948.12642588242,53255.1266175729,53053.7471087325 +1617062400,57617.5475,59387.785,57022.6,58774.2275,45154.9972993341,54631.4837269159,9996.87468323369,53451.4789972148,53312.5978555988 +1617148800,58779.575,59804.0425,56820.2625,58793.155,45491.600097551,54927.7101374518,10045.593167371,53659.1936650773,53570.1361609642 +1617235200,58787.5975,59482.135,57932.2,58728.87,45820.9112412977,55198.2754627907,10094.1988281863,53873.9046114611,53825.2583182012 +1617321600,58733.845,60070.765,58466.72,59004.0675,46148.9767700026,55469.1705048186,10143.0307195841,54094.894220568,54078.2455685419 +1617408000,58990.5175,59818.0025,56942.5025,57091.5725,46445.9671611641,55584.6525522804,10189.9044110448,54302.6057935991,54321.1019566867 +1617494400,57084.6675,58499.385,56478.295,58210.9525,46749.166067866,55771.591730186,10237.8488989114,54507.2747944082,54557.9988523674 +1617580800,58211.5525,59267.465,56811.98,59121.7175,47055.9530424641,56010.0525951885,10286.6548316905,54715.5447204283,54791.9876733847 +1617667200,59127.0725,59470.1625,57331.6075,58022.615,47343.8233764623,56153.3061339801,10334.3146861537,54915.475191039,55018.2815462134 +1617753600,58026.6,58656.4725,55437.9825,55940.0875,47598.776275029,56138.1293008141,10379.8477494318,55088.8136018823,55228.8159644926 +1617840000,55937.9125,58155.705,55702.8225,58075.6975,47873.973479867,56276.0447763889,10427.4675574255,55257.2383170879,55432.2004935912 +1617926400,58065.4275,58884.335,57638.99,58108.4575,48141.8015836087,56406.4753193408,10475.0725293022,55420.4477946133,55628.3987205674 +1618012800,58120.65,61207.0475,57881.8525,59776.6,48424.6031032471,56646.3597003265,10524.2954550751,55592.3765091698,55823.580133283 +1618099200,59773.855,60667.6225,59180.2275,59975.28,48702.4430756241,56883.3111668467,10573.667599642,55771.7097152195,56017.8443972099 +1618185600,59980.3525,61207.6625,59387.53,59839.575,48969.0932871177,57093.7370670267,10622.8549621339,55954.4111008169,56210.0234348297 +1618272000,59834.645,63788.2225,59790.0525,63589.9225,49277.406384294,57556.1334377903,10675.7375839832,56170.7248496542,56413.7311922966 +1618358400,63598.0425,64898.555,61305.97,62974.7825,49573.7068665989,57941.8311194004,10727.9532482428,56407.5034638999,56624.895248509 +1618444800,62966.465,63843.0775,62032.6575,63237.2225,49864.1464997343,58318.7553592371,10780.3788016763,56661.3401645572,56843.0752701347 +1618531200,63238.815,63595.2,60061.4025,61438.79,50123.7697980011,58540.8384123505,10830.9564478896,56911.469045114,57060.0594305469 +1618617600,61440.35,62596.0475,59701.0625,60061.09,50361.236623794,58649.0494269574,10880.1080935677,57144.4753703578,57269.9274280263 +1618704000,60073.2525,60429.6,51120.145,56271.87,50551.1428745288,58479.8425668669,10925.4274871372,57328.6240077636,57458.1826201568 +1618790400,56257.9175,57613.09,54244.52,55700.7925,50737.4696286523,58282.030685056,10970.1314665381,57466.0491517593,57623.7951631369 +1618876800,55700.7925,57121.435,53408.7675,56501.88,50939.0598742614,58155.3201370466,11015.5906235532,57570.7725142294,57771.0899633725 +1618963200,56493.93,56818.145,53612.2775,53806.5825,51110.1950415952,57845.7784034369,11058.3133935148,57624.3869631384,57890.8900389418 +1619049600,53811.6575,55475.2325,50447.9375,51704.1075,51253.3338067048,57408.616261827,11098.894385807,57617.3157493345,57977.141166898 +1619136000,51700.0375,52133.46,47449.9875,51187.5525,51383.0655678214,56965.8029623241,11138.919130352,57555.9146597861,58030.4194529703 +1619222400,51187.1675,51231.98,48735.405,50107.2925,51498.2542021409,56477.616413565,11177.8253762286,57441.0091215292,58049.247825077 +1619308800,50111.84,50590.7025,47012.0525,49123.22,51605.5830031392,55954.1328637377,11215.7102742999,57274.5722543928,58032.7681218635 +1619395200,49123.6625,54410.9625,48817.06,54059.8475,51775.4917741747,55819.2982463426,11258.4861048808,57109.8557472992,58002.6867191449 +1619481600,54044.9225,55517.7875,53331.4425,55080.8275,51957.5932476731,55766.7341382907,11302.2385800748,56956.8046090194,57964.1291959192 +1619568000,55081.3225,56487.7225,53857.0025,54895.465,52136.3364666751,55704.7174838001,11345.7623055729,56813.0711352736,57917.2618503716 +1619654400,54890.7475,55232.535,52382.2825,53590.8525,52300.3986841556,55554.2532603141,11387.9400441865,56666.9677114317,57858.0416166896 +1619740800,53588.74,58036.4525,53075.905,57789.0575,52518.7926868017,55713.3259007828,11434.2671840842,56556.4699943885,57803.5960322625 +1619827200,57791.435,58544.5525,57066.835,57859.9475,52741.8314942045,55866.121729523,11480.6188476814,56476.8328046113,57753.9924390221 +1619913600,57870.175,57974.3025,56085.4775,56625.7675,52942.7573935944,55920.1930689203,11525.6920211737,56412.6035481207,57704.3458546808 +1620000000,56617.0825,58988.98,56507.07,57209.99,53148.8688780302,56012.0003958673,11571.3034844237,56366.6559525236,57657.0536036386 +1620086400,57214.2275,57243.595,53085.2875,53239.4225,53301.0122119297,55814.6492010875,11612.9051717268,56301.8211639469,57597.1001125445 +1620172800,53225.2725,57982.8375,52946.1525,57511.91,53502.6161914105,55935.4596739033,11658.7309995179,56258.9431100808,57541.9224168994 +1620259200,57513.26,58426.74,55270,56439.795,53686.1976281499,55971.3580987314,11703.4406688205,56225.2311613447,57487.2742153657 +1620345600,56437.5075,58732.45,55300.0825,57384.81,53877.7691817111,56071.9671463238,11749.0492080921,56207.5209259033,57436.8854993941 +1620432000,57386.145,59551.37,56988.975,58969.925,54078.4718339918,56278.242845808,11796.1947993807,56216.8311646954,57396.5702347022 +1620518400,58964.3875,59295.8725,56280.6075,58303.4025,54264.7854742445,56422.3930527221,11842.627860383,56242.528488547,57363.1071983795 +1620604800,58324.56,59594.7475,53501.0775,55879.4175,54415.8201237727,56383.7442291036,11886.5944419254,56260.5304304161,57326.8864974998 +1620691200,55872.7375,56959.09,54512.495,56759.9075,54573.0599316412,56410.5194086411,11931.3962132124,56279.6574447336,57291.6043594126 +1620777600,56760.32,58011.03,48496.25,49459.7575,54630.0555395212,55915.7664318736,11968.8647428254,56236.4367558688,57229.7467857772 +1620864000,49450.7875,51680.7675,45425,49685.1225,54679.334907287,55472.2712189761,12006.5208693443,56144.2450592284,57144.6579654116 +1620950400,49693.9575,51564.18,48887.87,49890.035,54722.0674993314,55074.9294566401,12044.343985579,56014.3337702296,57039.4082434998 +1621036800,49895.6275,50746.59,46550.8825,46756.4075,54719.8400304023,54482.8197635664,12079.0007074587,55827.4245678729,56904.2757726548 +1621123200,46763.9825,49806.77,43779.675,46456.4725,54704.7038511164,53911.5069703196,12113.3233710579,55592.646644665,56741.178968599 +1621209600,46453.9,46645.2125,42098.05,43577.1775,54644.7633316679,53175.9127526583,12144.7370621903,55295.6264017799,56542.2383429387 +1621296000,43570.15,45851.655,42233.88,42879.025,54566.9834237028,52442.9836243083,12175.4223502829,54943.9323076931,56308.6163224512 +1621382400,42891.2675,43585.1975,29641.5,36752.975,54396.5349035297,51326.1739026671,12199.9607188046,54497.3407166441,56021.0101886317 +1621468800,36769.6325,42697.5575,34997.25,40612.6375,54272.739640594,50563.587858634,12228.3280970982,54009.9043290233,55699.6711578506 +1621555200,40609.395,42286.12,33513.86,37335.305,54106.3918627975,49622.0029780333,12253.395045809,53464.7473726532,55336.3046743745 +1621641600,37328.5525,38870.15,35259.9525,37485.48,53934.8501974146,48758.1292114,12278.5869031107,52878.1152210493,54936.4233666465 +1621728000,37477.6875,38301.9675,31100.325,34730.7875,53727.6530445975,47759.6675809962,12301.00330804,52238.6194898487,54494.2394445444 +1621814400,34737.5725,39967.605,34420.1475,38853.5125,53569.4370282357,47125.7303528489,12327.5134844198,51596.8015820815,54030.5880423373 +1621900800,38858.4525,39892.5775,36489.3825,38384.4825,53400.675288453,46503.53116768,12353.5289106656,50954.5669492739,53547.2741041728 +1621987200,38376.97,40889.7,37840.425,39294.965,53240.9010880884,45990.4277674252,12380.4273938745,50325.4123257258,53051.2327913259 +1622073600,39295.2675,40425.205,37187.995,38536.2775,53065.7182505487,45459.8437706556,12406.5415435642,49705.8987226745,52542.5544122478 +1622160000,38560.21,38900.745,34668.8075,35685.1975,52848.6509759393,44764.0876214996,12429.7830862308,49075.0253712,52013.4678516713 +1622246400,35687.235,37323.2525,33650.915,34619.3575,52617.1576982013,44041.9890239523,12451.9372836834,48431.0462865422,51463.681365892 +1622332800,34636.9375,36507.8075,33397.8725,35676.71,52393.8783842852,43446.5511780025,12475.1250290162,47790.9928189195,50901.0239612313 +1622419200,35670.66,37531.36,34194.55,37308.4825,52194.9137347806,43009.64544163,12499.9187945281,47173.8082772234,50334.8767658126 +1622505600,37279.855,37923.395,35701.03,36685.2475,51992.7328640693,42559.4768487461,12524.0655644303,46575.3854788441,49765.3209165804 +1622592000,36685.9975,38239.8175,35926.55,37580.4475,51813.6075757047,42205.0711556605,12549.0819988376,46005.3097778491,49198.1775643592 +1622678400,37578.315,39484.6825,37168.5425,39229.3325,51664.874646354,41993.2590439351,12575.719712868,45477.737315744,48641.6099389629 +1622764800,39239.695,39272.9225,35581.8525,36864.8875,51486.4355344962,41628.2232218653,12599.9701563006,44969.2525680334,48087.8917909194 +1622851200,36858.225,37925.9125,34831.93,35536.965,51294.956611627,41194.6494385682,12622.8705825666,44469.3872704189,47533.8572308882 +1622937600,35536.7,36487.52,35254.77,35803.195,51105.6379305551,40810.8874614428,12646.0139504647,43983.2358116152,46982.6307127471 +1623024000,35802.6825,36807.27,33330.3475,33584.455,50885.4954092745,40296.5123441965,12666.9190092419,43493.388810051,46427.6764819947 +1623110400,33569.8925,34070.955,31011.84,33412.1675,50659.1587736679,39806.4869125203,12687.6311834684,43003.2467417669,45870.7565423135 +1623196800,33409.7075,37547.8775,32417.75,37401.73,50473.562403286,39635.3170959578,12712.3058804605,42551.587832371,45329.2068313671 +1623283200,37413.4225,38426.9825,35812.015,36685.765,50278.1915658195,39425.3689350531,12736.2411185617,42129.3037930314,44801.0618662911 +1623369600,36704.15,37679.9875,35955.0525,37336.5825,50086.7262645421,39276.6897945276,12760.8022394829,41740.4628701581,44289.6340153756 +1623456000,37336.5875,37451.13,34650.365,35546.655,49872.9658278525,39011.1871284465,12783.5517646324,41367.0232439534,43788.6739427854 +1623542400,35554.6275,39396.4125,34789.5325,39026.525,49697.975484569,39012.2788731658,12809.7528985504,41039.5650005273,43312.3243754364 +1623628800,39026.76,41063.925,38750.87,40534.765,49536.2286430695,39120.6489415466,12837.4337085118,40765.8043484325,42865.9871969454 +1623715200,40534.46,41346.485,39500.6125,40174.73,49361.7935960453,39195.6780891823,12864.7274208007,40535.4743745209,42447.4365295117 +1623801600,40165.33,40497.1525,38094.855,38349.0475,49157.9199063338,39135.4151986207,12890.1711110876,40327.0829896146,42048.9961191766 +1623888000,38352.3575,39561.115,37373.78,38078.7175,48944.2220477181,39060.1997993871,12915.3194992377,40136.2048297717,41669.4398886595 +1623974400,38084.62,38208.0925,35147.245,35828.5925,48699.2472319059,38830.1750406441,12938.1962414807,39941.9329681508,41300.0984284894 +1624060800,35835.41,36452.9525,34824.45,35496.7275,48447.246646415,38592.9013265809,12960.7188075481,39743.6796826224,40940.2447577444 +1624147200,35490.5575,36126.265,33346.765,35592.295,48197.0769999881,38379.3191421102,12983.3143020935,39544.6909235047,40590.7919840228 +1624233600,35593.3025,35749.11,31253.715,31628.705,47894.8656557032,37898.8126184059,13001.929966342,39312.5530763034,40237.2077740481 +1624320000,31613.265,33318.1675,28754.4,32531.0825,47611.5789849687,37516.7393306898,13021.4279834398,39062.9513862557,39884.5862668603 +1624406400,32533.8975,34902.905,31877.5875,33676.2075,47348.2336405255,37243.3715214369,13042.0498329272,38811.0394164568,39538.5015242642 +1624492800,33690.8925,35292.6925,32315.595,34666.66,47095.2034595081,37059.9620316201,13063.6399668588,38567.9667265597,39203.4449061131 +1624579200,34673.2125,35406.58,31288.2575,31594.5075,46802.9610368089,36670.9327518882,13082.1412905274,38307.7093522742,38868.1427060376 +1624665600,31589.3075,32712.1025,30144.49,32275.4475,46523.521611715,36358.063538226,13101.3039967426,38041.4507135772,38536.4534226979 +1624752000,32275.5875,34742.985,32014.125,34690.9775,46276.2920805225,36239.4008950826,13122.8592497101,37793.4382728946,38218.4441485253 +1624838400,34706.3675,35308.1725,33875.2425,34488.3475,46030.0018132278,36114.76148273,13144.1906748444,37560.8291255547,37913.387456531 +1624924800,34494.635,36650.9475,34247.8275,35907.5775,45806.6219965983,36100.0141940814,13166.9177698761,37355.1718508531,37626.6934585266 +1625011200,35899.955,36095.705,34049.59,35041.1075,45578.6431627847,36024.6415592679,13188.7570854646,37165.9750675298,37354.6114828795 +1625097600,35068.0775,35086.5175,32711.0625,33534.25,45331.9521736814,35847.3762963429,13209.0701414473,36978.9293319954,37091.2362921681 +1625184000,33519.6675,33979.1325,32706.545,33809.2275,45090.493285093,35702.3015265062,13229.6374558611,36797.6473164789,36837.8605711679 +1625270400,33806.4,34946.3375,33331.0525,34684.7125,44857.1369628983,35629.8698698609,13251.0583249605,36630.2425409087,36597.89702067 +1625356800,34682.1675,35961.4025,34393.62,35293.315,44623.2843876701,35605.914003454,13273.0654395439,36480.9628244142,36373.4097072917 +1625443200,35283.9775,35287.76,33120.04,33697.2525,44367.350589431,35470.0560970997,13293.45706421,36334.0873522802,36157.9033201913 +1625529600,33704.8575,35107.0525,33473.995,34232.385,44116.8720023615,35381.9590700978,13314.3626090972,36195.0856147156,35953.4488882746 +1625616000,34225.53,35075.04,33800.6575,33882.7525,43858.8896676457,35275.24603301,13334.8982066904,36060.7406743325,35758.5584944415 +1625702400,33876.09,33941.29,32106.4,32883.2225,43587.8721569472,35104.9825742684,13354.4153649823,35922.7475317746,35569.3804170816 +1625788800,32882.375,34110.12,32277.8175,33818.1725,43330.3744798484,35013.3878508199,13374.8464966362,35791.0283687419,35389.6739969446 +1625875200,33824.505,34260.8775,33014.06,33519.4025,43071.1371014575,34907.0464584257,13394.9589360625,35663.0266370011,35218.1842961964 +1625961600,33518.1,34614.3225,33334.2325,34251.9575,42823.1757205148,34860.4174389759,13415.7826821984,35545.5224948852,35057.6266236025 +1626048000,34265.07,34670.7275,32668.2225,33103.185,42564.5430315061,34735.3382042844,13435.4386967818,35427.7395671177,34903.3397132883 +1626134400,33092.655,33338.255,32199.885,32724.8375,42300.3909618284,34592.2314166672,13454.6973423899,35307.4747705402,34753.9442825066 +1626220800,32733.18,33113.145,31586.635,32819.0775,42038.4739790908,34466.018896361,13474.0308498092,35187.0225035326,34609.9444735005 +1626307200,32818.685,33186.2225,31117.86,31856.78,41768.3249426061,34280.2941185539,13492.3842912408,35059.1384683002,34467.7914041135 +1626393600,31878.485,32256.475,31028.84,31394.39,41494.9483560735,34074.8764000236,13510.2577556829,34922.2486689375,34326.1187514806 +1626480000,31389.82,31946.51,31177.1675,31527.1125,41219.9345437451,33893.527392504,13528.2458860561,34780.2806428301,34185.9218623332 +1626566400,31519.79,32442.1125,31120.5,31784.15,40948.2681710722,33743.38259431,13546.4726846812,34637.5841092141,34048.5753305799 +1626652800,31789.0925,31888.68,30414.8975,30830.1625,40663.4115906352,33536.0205334909,13563.7288190143,34487.2748351808,33910.7529393783 +1626739200,30831.7525,31059.4425,29292.725,29792.0175,40367.1326138001,33269.5236126938,13579.9312348449,34323.0275177578,33769.0952752358 +1626825600,29794.42,32873.705,29501.505,32135.375,40101.6677167491,33188.7952825335,13598.4570955635,34168.9911108567,33633.3125499433 +1626912000,32136.545,32608.6425,31721.8925,32291.6375,39837.1593907974,33124.9358827478,13617.1204733271,34026.0375781751,33504.0080969942 +1626998400,32290.7725,33657.71,32003.775,33654.6525,39597.0842064189,33162.6409396428,13637.1260594057,33905.220535994,33386.266527228 +1627084800,33655.2825,34527.68,33425.55,34289.215,39372.3393520708,33242.8301156262,13657.7452226067,33809.1450383032,33281.9456289395 +1627171200,34291.6475,35446.245,33881.76,35428.2675,39172.4731230987,33398.388839356,13679.4810360201,33744.1015417286,33194.5996502758 +1627257600,35430.06,40570.17,35263.77,37268.7025,39005.4769447381,33673.8765095993,13703.0326490579,33721.0601548388,33130.0651590752 +1627344000,37263.5325,39538.9575,36401.5625,39484.85,38876.8700232974,34087.4997166781,13728.7733623149,33751.9307231942,33095.0151278152 +1627430400,39470.8,40925.1625,38799.6525,40026.4275,38759.3674987194,34510.230668799,13755.0290899573,33831.569076326,33089.1201727744 +1627516800,40026.5025,40642.9475,39251.695,40029.9225,38645.7362280626,34903.1205419122,13781.2620931595,33950.669982521,33109.9368661402 +1627603200,40032.8975,42319.4675,38342.1175,42228.505,38567.7728606325,35424.5390301645,13809.6639824697,34120.212945908,33163.4179316888 +1627689600,42234.57,42406.4825,41051.2775,41493.865,38485.3107749651,35856.5516828803,13837.3040464125,34323.4376783765,33243.8099391405 +1627776000,41497.9925,42604.7975,39425.6425,39867.6725,38383.5818036805,36142.0619608222,13863.2929145058,34538.5572350965,33342.3802610232 +1627862400,39872.8,40451.5925,38684.4075,39156.295,38273.3397955889,36356.614090273,13888.5455918183,34755.4532190825,33454.5247084725 +1627948800,39153.2425,39789.0575,37619.825,38180.29,38148.3022731426,36486.4227496482,13912.7986077641,34963.4983270651,33574.9799919855 +1628035200,38180.1375,39965.75,37497.5125,39728.1325,38034.1117044964,36717.1665975721,13938.5727841268,35175.8441114309,33708.4297076353 +1628121600,39734.64,41421.1325,37316.515,40889.9125,37934.4059175429,37014.1812966303,13965.4811551728,35399.9356388745,33857.652280548 +1628208000,40889.615,43390.41,39888.4,42839.7175,37861.0163273005,37428.8410728918,13994.309357163,35648.6086318848,34028.1061452069 +1628294400,42863.7275,44746.2375,42415.8175,44624.2,37811.4485247512,37941.0043860491,14024.8904144018,35930.7812458319,34224.0811571545 +1628380800,44626.305,45363.41,43262.64,43842.615,37748.1705921242,38361.0791141656,14054.6606004243,36231.3177652926,34439.7158579777 +1628467200,43835.855,46502.635,42818.5,46291.175,37720.1618284779,38925.5407655841,14086.8457199708,36565.5312123393,34681.7708565084 +1628553600,46285.605,46723.825,44650.37,45599.3,37689.4198762585,39400.5767819023,14118.3079337707,36918.5800737688,34944.4730040739 +1628640000,45600.155,46770.0225,45361.235,45553.7625,37662.1349731122,39838.5585442825,14149.693270618,37283.6789737872,35224.9027932346 +1628726400,45553.4275,46219.2,43778.62,44424.67,37627.9786083833,40164.996469265,14179.9199797846,37645.7744211137,35516.2301902892 +1628812800,44415.9,47920.395,44254.8975,47838.4075,37633.6469828323,40711.1873760053,14213.5248053921,38031.7796264276,35829.319739408 +1628899200,47838.43,48178.0075,46030.8225,47115.0775,37636.2193463682,41167.0141966305,14246.3739029594,38427.8652414641,36158.4073174521 +1628985600,47119.12,47400.905,45521.2425,47022.2825,37641.2962367037,41583.7902941203,14279.0975567442,38828.0176650978,36500.5395568067 +1629072000,47021.725,48067.1475,45672.5575,45917.8125,37638.1015490711,41892.2845881156,14310.6858299093,39218.5087350574,36849.1445660188 +1629158400,45916.9025,47173.3075,44412.1,44680.955,37630.2514424244,42090.7812429626,14341.0076795914,39586.9834863842,37197.6848477364 +1629244800,44666.2,46026.9725,44224.0825,44714.75,37635.7210266697,42277.554487472,14371.3329968865,39934.4524002451,37544.9773380721 +1629331200,44722.4525,47081.7475,43948.2675,46764.05,37677.3347076388,42596.9017819488,14403.6740700018,40279.3519085014,37897.5553916953 +1629417600,46764.96,49409.025,46650.9,49343.1725,37769.6672230274,43077.0991421383,14438.5578641963,40641.4518811238,38263.3776700159 +1629504000,49345.1575,49814.37,48283.575,48872.535,37861.5282328022,43489.6163855757,14472.9369430521,41010.50370848,38638.1593845333 +1629590400,48873.46,49541.385,48078.0475,49288.8975,37966.0291698211,43902.4073331272,14507.6973963306,41385.6837493894,39021.295787198 +1629676800,49291.6275,50526.825,49033.21,49530.47,38084.8795782101,44303.0110071515,14542.6643319343,41764.750410106,39411.5419419854 +1629763200,49512.7875,49876.0275,47602.265,47713.01,38188.2322923388,44545.7336287375,14575.7817939369,42128.0261412618,39799.9564244702 +1629849600,47688.3725,49265.45,47120.11,49000.2575,38317.8511070035,44862.8051921656,14610.1513865111,42486.2983258743,40190.0892190602 +1629936000,49002.3075,49367.03,46299.31,46858.64,38427.5307572637,45004.8680660334,14642.3484611809,42818.8432293285,40572.2336217761 +1630022400,46850.485,49186.165,46370.1425,49084.0325,38574.8783584981,45295.2216665387,14676.7352346525,43146.5857295151,40954.0294658763 +1630108800,49085.14,49315.5225,48346.87,48925.0275,38716.5054844438,45553.5900677006,14710.9289246762,43466.1695297481,41333.4641701844 +1630195200,48928.4425,49659.25,47799.8225,48800.0725,38862.7395640177,45784.6736335766,14744.9637197415,43775.1983201292,41708.8337703945 +1630281600,48794.5675,48902.95,46864.1375,46995.615,38986.5426116907,45870.8680470241,14777.1629536301,44057.2730523932,42072.2522544597 +1630368000,46986.4875,48259.9,46710.0425,47140.64,39113.6803311667,45961.2500025289,14809.4748334061,44315.9881771376,42423.9110408075 +1630454400,47124.365,49126.2375,46536.1875,48852.315,39255.6405630716,46167.0350707455,14843.4633988845,44568.0460436594,42769.9457945472 +1630540800,48850.72,50391.7725,48619.1425,49282.96,39404.5789623852,46388.8255959275,14877.8479884058,44816.1708874993,43111.1542067785 +1630627200,49285.4725,51042.5625,48354.035,50022.6475,39563.4708941463,46647.4798596921,14912.9367563692,45065.3095051939,43449.4514031603 +1630713600,50026.1,50558.65,49391.555,49945.5725,39725.250792289,46882.2370234239,14947.913539388,45312.4621111851,43783.5163444733 +1630800000,49951.6675,51898.5725,49504.4575,51791.6375,39914.8215911538,47231.6865559867,14984.6985231959,45571.8030355069,44119.4186150877 +1630886400,51791.6625,52803.0075,51018.3175,52698.0575,40115.2464791231,47620.7810656553,15022.351755556,45846.7650076236,44459.1564340197 +1630972800,52701.2175,52935.0525,42582.695,46878.23,40238.934559428,47567.926521799,15054.1568457976,46081.8903612901,44779.1434243839 +1631059200,46892.055,47376.9625,44430.98,46077.8625,40349.7483398871,47461.8642483319,15085.1310901864,46275.2909350546,45076.8281087798 +1631145600,46063.6675,47403.8325,45520.355,46392.3625,40465.0112765013,47385.7374609955,15116.3884083041,46435.4118027489,45354.1702222538 +1631232000,46385.2775,47033.715,44139.39,44853.1875,40559.6419786259,47205.4713767181,15146.0777978527,46553.4637916824,45606.0396926694 +1631318400,44852.78,45994.2475,44747.26,45164.76,40658.2497510785,47060.214203242,15176.0486211038,46638.5790495577,45834.8277665881 +1631404800,45166.2275,46486.7825,44758.965,46038.8925,40773.2557596009,46987.5168558781,15206.8622601801,46703.4184253832,46044.9339244658 +1631491200,46040.8925,46892.955,43409.975,44961.89,40876.8180280758,46843.3333936997,15236.5698493148,46741.7060929512,46233.086094527 +1631577600,44965.6,47270.7525,44691.12,47130.095,41007.2435756471,46863.7449917668,15268.412526442,46776.5625165285,46408.6281370104 +1631664000,47117.5275,48469.2325,46720.3525,48150.2275,41151.7184523526,46955.3163991713,15301.2419177562,46817.1135495608,46575.8216305647 +1631750400,48158.4975,48497.6975,47031.79,47765.91,41287.363630542,47013.0141885978,15333.6548272386,46858.6766031771,46733.2937422088 +1631836800,47768.935,48176.875,46741.36,47291.0575,41409.7368081445,47032.8052212637,15365.5612800477,46896.6079552948,46879.4831878822 +1631923200,47298.785,48817.1475,47057.62,48315.1775,41545.5010846833,47124.0840638666,15398.4583645123,46940.0768913297,47018.664581521 +1632009600,48307.6125,48396.255,46855.7225,47249.3475,41666.6386278392,47133.0002745959,15430.2584735992,46978.5119376453,47146.8833129497 +1632096000,47252.6175,47335.07,42490.9925,43011.9325,41735.0255952829,46839.6640079045,15457.7961740102,46975.8420137943,47248.5856048005 +1632182400,43003.595,43640.8625,39585.5525,40685.64,41768.6268550404,46401.6225763278,15482.9837969454,46919.2682950678,47316.8572003331 +1632268800,40718.395,44034.7425,40582.81,43575.315,41838.9466183091,46200.446920331,15511.0313403895,46843.8180080342,47365.1949356727 +1632355200,43577.5275,45002.47,43104.98,44897.02,41930.374493562,46107.6694151728,15540.3704788049,46764.9162000446,47400.1022665661 +1632441600,44894.0825,45167.6775,40705.64,42844.64,42001.9875197043,45875.4080404263,15567.6312169783,46666.1146411613,47414.8389144751 +1632528000,42842.045,43004.0525,41686.88,42712.155,42075.6241554051,45650.2487156515,15594.732464097,46550.6505615765,47410.5639248993 +1632614400,42705.0675,43945.3325,40803.7225,43194.81,42160.6210354217,45475.4713847911,15622.2885386767,46426.6489720183,47390.7325325423 +1632700800,43171.7475,44356.915,42120.7775,42177.77,42234.6575382074,45240.7420705,15648.8016825872,46287.9035640615,47352.9016660366 +1632787200,42167.305,42770.0125,40887.545,41038.115,42296.4876126744,44941.6004395964,15674.150517582,46128.3759478061,47294.4409163525 +1632873600,41023.8325,42605.2275,40759.145,41533.695,42369.394272532,44699.0268364513,15699.9688340497,45957.4142451644,47219.196537464 +1632960000,41527.9675,44106.4025,41420.145,43821.91,42467.269263672,44636.5939447035,15728.0459402494,45798.304785927,47137.5206356957 +1633046400,43822.7725,48492.67,43294.705,48166.92,42616.5803329183,44887.8814075421,15760.4330968329,45687.8830226844,47066.6764653134 +1633132800,48172.96,48354.265,47465.3125,47670.6225,42758.5238532496,45085.9560153567,15792.2924116447,45614.1803664878,47004.1364348327 +1633219200,47659.6375,49260.6875,47128.77,48235.595,42910.0234975219,45310.1462960593,15824.6839896964,45576.2073550496,46951.5641563967 +1633305600,48232.78,49510.07,46909.795,49241.84,43069.4952186032,45590.0029778635,15858.0478685502,45576.6557820655,46912.1105236965 +1633392000,49253.8525,51909.185,49072.5725,51501.91,43251.9934317852,46010.8106009729,15893.6349034752,45628.2470155175,46893.3437866659 +1633478400,51501.8725,55781.7775,50405.2625,55340.09,43481.7346695656,46674.8656807514,15933.0184688703,45754.6470472374,46908.0699814279 +1633564800,55353.0225,55359.77,53358.5925,53798.51,43690.1778519629,47181.9243713965,15970.823591239,45928.1723027803,46947.5643455597 +1633651200,53810.2225,56136.42,53649.3575,53957.7325,43902.3763905993,47664.2241948827,16008.7499374089,46140.343388352,47010.1731126889 +1633737600,53961.75,55503.505,53687.4225,54966.9725,44128.3102788428,48184.0314491132,16047.6460486619,46391.1984891507,47097.5057467984 +1633824000,54971.6475,56533.9,53336.705,54696.93,44348.6366394959,48647.6174541855,16086.2337138462,46669.3755342135,47206.1105712714 +1633910400,54677.15,57881.68,54444.5175,57493.035,44601.6650435939,49277.2314042911,16127.5745000402,46991.7969303663,47344.327696723 +1633996800,57487.2875,57684.5575,53928.4425,56007.4425,44835.3135581313,49756.2856457745,16167.3907873461,47334.9879129946,47503.5073961838 +1634083200,56004.3125,57775.755,54247.0725,57376.32,45087.6988821811,50298.6772180044,16208.5340169351,47704.1326362661,47686.4355050042 +1634169600,57379.6475,58537.7825,56823.96,57356.9225,45338.152328459,50801.0808264033,16249.616802315,48091.2704065031,47890.3287949715 +1634256000,57359.2725,62910.11,56880.4025,61668.5875,45642.3868842392,51574.6264243496,16294.9633612966,48527.1374259365,48128.9168273184 +1634342400,61688.45,62367.02,60143.855,60871.4575,45936.1370289853,52236.3718430014,16339.4687868843,48992.4345896472,48395.3385449262 +1634428800,60874.1125,61705.8575,58928.515,61532.1675,46235.1577601672,52898.0435608896,16384.589434628,49483.6329476277,48688.7163552395 +1634515200,61527.5475,62679.65,59681.7175,62048.745,46539.5877982013,53549.3875194393,16430.1807875778,49996.3593681765,49007.6012033421 +1634601600,62026.64,64486.28,61328.75,64280.3625,46870.1713678995,54313.2148357871,16477.954681481,50541.6560977015,49357.0473938354 +1634688000,64292.1875,66998.105,63535.1775,66023.1025,47223.1125867993,55146.7208392484,16527.4208391965,51124.0997035842,49739.7179450041 +1634774400,66029.0125,66648.9725,59854.505,62210.005,47526.9277055839,55649.4831134017,16573.0305913608,51699.1053558342,50136.9435742449 +1634860800,62204.89,63752.7,59996.985,60693.4425,47809.9223220679,56008.5105055084,16617.0806618528,52249.9107992251,50540.259741948 +1634947200,60689.78,61736.1975,59635.73,61316.555,48099.8195869804,56386.3353898854,16661.708871572,52781.4320369372,50949.9786181489 +1635033600,61301.285,61480.9075,59515.2225,60875.2975,48381.5712819025,56705.8582559779,16705.8519702316,53288.6789169778,51362.3422899841 +1635120000,60862.76,63715.95,60655.5,63087.9,48687.2324218476,57160.1299160076,16752.1600711058,53790.697879607,51783.9240973073 +1635206400,63089.0325,63292.3475,59835.3175,60319.11,48954.2968893026,57384.9850931302,16795.6575620056,54260.1405720684,52201.8925283853 +1635292800,60333.04,61488.525,58110.1525,58473.77,49195.1672789526,57462.4844494329,16837.2692267986,54682.7723686258,52608.0079142338 +1635379200,58482.7425,62500.085,57381.72,60600.135,49457.4058512356,57685.8213972889,16880.962321193,55081.6216265987,53009.7742000648 +1635465600,60601.56,62968.385,60187.07,62279.4025,49730.8447216327,58012.79100932,16926.2883823876,55471.9741064138,53412.3853708708 +1635552000,62274.69,62373.345,60705.6625,61899.5925,49992.8948084427,58289.4522779541,16971.1899853179,55848.6785086994,53812.8149471342 +1635638400,61898.1475,62444.16,60013,61357.63,50239.8749637267,58507.8441724235,17015.5056597859,56206.2131254352,54207.6896778996 +1635724800,61359.0625,62497.5,59484.82,60947.0975,50474.4447088153,58681.4694326138,17059.3672112464,56541.3371967879,54594.4404137235 +1635811200,60951.91,64311.5,60669.21,63266.1025,50729.9639332852,59007.8021263946,17105.5002788817,56875.1744718896,54981.0546298907 +1635897600,63269.015,63558.8625,60252.19,62937.0925,50972.9480837288,59287.4877399255,17151.258801542,57202.2229657161,55364.8415342358 +1635984000,62937.955,63129.99,60705.5325,61450.845,51190.2681659699,59441.4748075738,17195.4877606653,57508.0109106981,55738.9797373423 +1636070400,61443.3825,62984.2525,60781.9675,61016.1575,51398.5927155486,59553.560210553,17239.2385668686,57789.9067821967,56101.2352574436 +1636156800,61008.6225,61599.7475,60121.1775,61543.7625,51610.4861102381,59695.22216359,17283.4724558543,58054.2709649029,56453.2428165674 +1636243200,61539.35,63317.475,61397.2175,63312.7675,51840.1588729587,59952.717866551,17329.4283661389,58317.2192313382,56801.2247228666 +1636329600,63313.0675,67792.0125,63313.0675,67556.4625,52123.6590933455,60493.9499417429,17379.5753230346,58613.4151807191,57160.2345697914 +1636416000,67551.1575,68540.59,66272.5675,66947.1225,52399.8551885888,60953.2846700441,17429.0638443971,58929.1355547008,57525.6779523764 +1636502400,66943.36,68997.75,62821.195,64936.2625,52648.2994697969,61236.7917392936,17476.4953020633,59240.805791191,57888.0342700941 +1636588800,64929.27,65606.06,64129.965,64822.07,52891.1082263817,61491.9906822784,17523.7653934498,59545.4625429393,58245.7664149051 +1636675200,64805.79,65481.26,62442.585,64153.3275,53117.2921501401,61681.4237732194,17570.3206137877,59835.9345783121,58595.3912945344 +1636761600,64147.49,64984.84,63404.665,64406.96,53339.3870001947,61875.4265572611,17617.0825812608,60114.4185139274,58937.2357282915 +1636848000,64403.79,65507.465,63607.715,65502.47,53567.8921243301,62133.598332348,17664.8916247417,60390.102936498,59274.8072968855 +1636934400,65502.4725,66354.41,63376.5025,63617.4125,53767.5450500928,62239.2157432253,17710.7708832589,60644.8051615287,59600.0760206371 +1637020800,63617.945,63620.4875,58611.3025,60127.2875,53921.5189180668,62088.8893763049,17753.1197749887,60849.8724524675,59899.6799321771 +1637107200,60114.9425,60847.795,58455.4,60348.1,54073.1512402202,61964.9805534776,17795.6468458013,61014.2416682382,60175.5036228759 +1637193600,60364.3125,60974.0625,56514.1925,56912.3075,54181.6644736299,61605.3329253905,17834.7011425472,61114.0064813517,60415.5528733862 +1637280000,56907.94,58399.6675,55174.75,58067.5975,54303.2647919485,61353.5180659933,17874.8698953756,61169.7466134409,60626.3255849376 +1637366400,58241.5675,59861.175,57431.205,59739.2175,54444.2558246891,61238.6126756318,17916.6674984194,61203.236929686,60815.8275446829 +1637452800,59734.23,60026.0275,58544.04,58794.32,54567.3212096016,61064.6287162825,17957.4799794537,61209.9646199065,60981.5834676936 +1637539200,58689.245,59300.8225,55637.9325,56312.4125,54660.3677850734,60726.3675083528,17995.7737624933,61173.1613333426,61115.6140150113 +1637625600,56340.57,57868.97,55383.145,57573.43,54769.3566058704,60501.9424398031,18035.2883198547,61111.764856797,61224.872433019 +1637712000,57571.15,57709.94,55923.0375,57180.3325,54874.2125372461,60265.5113223259,18074.3709548745,61027.2683255653,61309.5679139492 +1637798400,57167.12,59422.46,57046.555,58971.925,55000.5904387249,60173.4342677398,18115.2033057231,60939.9859117749,61378.2346281817 +1637884800,58983.1475,59194.04,53539.2575,53871.2875,55058.6848238133,59724.8495061918,18150.9023837947,60807.0723983091,61412.7146525451 +1637971200,53745.595,55333.3925,53648.1175,54775.655,55121.5938945699,59372.5674475162,18187.4687453654,60645.5856435986,61419.1996242711 +1638057600,54760.62,57450.68,53479.41,57322.77,55211.8648146833,59226.6635304696,18226.5416529929,60484.0071286813,61409.6639384883 +1638144000,57319.83,58874.06,56742.4,57838.79,55309.1712212471,59127.8751430091,18266.0907473134,60328.2107904636,61387.4543857944 +1638230400,57838.34,59200.38,55970.35,57014.33,55395.6528970734,58977.4336856868,18304.777210034,60171.3909666421,61350.6190267321 +1638316800,56962.59,59103.77,56530,57213.37,55485.2022883372,58851.8682050715,18343.6237706394,60016.8054486777,61301.292140876 +1638403200,57179.74,57359.86,55848.27,56552.32,55568.6697742791,58688.1871101594,18381.7715505332,59859.6798161758,61238.2257705971 +1638489600,56529.34,57592.54,52023.94,53683.26,55614.3377403184,58331.9380228216,18417.0167576245,59677.0204722199,61151.9918781774 +1638576000,53687.57,53880.95,41631.28,49231.66,55605.9307220738,57684.1831866783,18447.7822729108,59436.4508795293,61028.0754052864 +1638662400,49347.03,49767.39,47965.8,49409.58,55595.9603922037,57095.1996173966,18478.6947080726,59151.8568118095,60870.8201030402 +1638748800,49341.93,50986.65,47196.01,50547.88,55600.9607339051,56629.1635319815,18510.7127652852,58843.344784521,60687.9529622346 +1638835200,50543.04,51935.25,50078.81,50644.37,55607.9824167729,56203.1678707569,18542.7951916525,58518.6568188292,60482.7065405266 +1638921600,50619.87,51196.91,48702.93,50518.96,55615.0230685577,55798.5677993423,18574.7203766846,58182.3837697317,60257.285103233 +1639008000,50535.33,50804.94,47322.31,47658.92,55583.6772660789,55219.190310731,18603.7582072076,57814.762458758,60003.4549492756 +1639094400,47572.78,49791.19,47009.3,47229.01,55543.2157404658,54650.4518694489,18632.3378216033,57420.8127608173,59722.9665796255 +1639180800,47492.5,49493.8,47037.41,49369.71,55528.5912255914,54274.5703770613,18663.0261890193,57027.1143516257,59427.229680406 +1639267200,49418.7,50764.21,48679.56,50112.02,55522.5359739353,53978.2813921897,18694.4250435256,56643.4431792801,59121.4607045692 +1639353600,50020.94,50164.22,45851.79,46718.8,55474.6133651951,53461.553862779,18722.4047390662,56242.004534642,58794.8535322216 +1639440000,46805.64,48684.88,46318.52,48378.82,55447.4503944927,53099.7665160421,18752.0138729403,55843.7695454906,58456.6819809205 +1639526400,48404.61,49468.49,46604.75,48895.13,55431.4380929165,52800.481853457,18782.1089317307,55456.0761822566,58111.156066948 +1639612800,48910.61,49460.07,47531.2,47656.12,55411.0860586802,52434.3078463452,18810.9369088035,55069.6958985047,57755.5270402222 +1639699200,47692.79,48002.84,45549.31,46216.71,55373.6202272387,51991.7412495815,18838.2989887192,54675.2926984929,57386.5612460083 +1639785600,46118.38,47355.62,45552.77,46893.49,55344.13862456,51628.8493802882,18866.3094511843,54283.549228054,57009.3416644299 +1639872000,46860.38,48256.69,46456.81,46724.12,55313.5120605269,51279.7323348432,18894.1228478718,53895.9162539899,56625.3549659931 +1639958400,46589.44,47498.07,45593.54,46921.46,55282.8626721338,50969.5119245387,18922.1055008854,53516.7218889127,56237.3717735662 +1640044800,46925.73,49335.04,46663.84,48948.51,55274.9639964562,50825.657663472,18952.0840341218,53165.2712582286,55854.8517348923 +1640131200,48920.62,49598.23,48462.51,48625.01,55262.0660947102,50669.0162770125,18981.7096523778,52836.8867602247,55477.5532260861 +1640217600,48493.68,51399.57,48047.23,50825.37,55271.9610056882,50680.1454842697,19013.5025442017,52549.3389038379,55114.7662590505 +1640304000,50804.48,51816,50485.97,50835.68,55280.7658224275,50691.2163806202,19045.2739873841,52297.9618698261,54766.6659213751 +1640390400,50858.64,51165.55,50230.29,50440.34,55285.9494989854,50673.3590812703,19076.6190000694,52075.0977043267,54431.8251038543 +1640476800,50425.83,51281.06,49451.85,50801.7,55296.8973950452,50682.4943462121,19108.2935015973,51880.7412741685,54111.7454778231 +1640563200,50818.91,52103.63,50477.49,50713.28,55307.2812424618,50684.6856590572,19139.8481000911,51710.7536804253,53806.0467971623 +1640649600,50610.33,50647.13,47311.01,47564.01,55282.8315295726,50462.5569784696,19168.2269451925,51535.0589575592,53502.7682031999 +1640736000,47574.12,48144.09,46115.54,46471.03,55250.7936057384,50178.4413836036,19195.4862192375,51346.7393357175,53198.7217939273 +1640822400,46354.91,47924.79,45952.52,47141.1,55226.0276330752,49962.2444096965,19223.3872791717,51155.4538896085,52897.6513915668 +1640908800,47143.37,48583.53,45628.36,46195.56,55181.3799677076,49694.1330359025,19250.3164500085,50955.2081491407,52596.8702638652 +1640995200,46252.09,47953,46242.47,47746.11,55152.9891693492,49555.4733884433,19278.7668125573,50762.7260438821,52303.3449659429 +1641081600,47686.69,47952.91,46669.53,47323.62,55119.9356266757,49396.6107886083,19306.7669536803,50574.6426477235,52015.9715694739 +1641168000,47274.71,47577.04,45702.55,46446.75,55072.423619277,49186.6406550609,19333.8636673016,50384.2236425972,51732.0009079113 +1641254400,46416.36,47504.19,45537.8,45838.87,55013.0928370732,48948.3474263622,19360.3264165562,50188.2743099701,51449.9204930888 +1641340800,45890.21,47013.29,42643.12,43452.83,54920.8631046683,48557.1782795395,19384.380509328,49968.8424522668,51161.6244612527 +1641427200,43482.42,43758.82,42462.88,43115.92,54819.1531197018,48169.8712811778,19408.0742134941,49729.0761757008,50867.4577101411 +1641513600,43032.41,43125.77,40655.39,41543.69,54688.1594295638,47698.2218481296,19430.174538346,49461.0621557719,50563.0930642872 +1641600000,41618.99,42276.26,40563.57,41687,54546.7878066893,47270.3450279389,19452.3958796278,49173.3647774862,50251.0881377049 +1641686400,41666.76,42772.86,41269.13,41865.65,54395.9036395971,46885.6405899593,19474.7734001732,48873.5055419332,49933.9453910385 +1641772800,41883.5,42248.16,39896.66,41837.29,54240.5232054513,46526.3006334226,19497.1002640892,48565.9879038941,49613.192188723 +1641859200,41829.85,43127.26,41297.98,42734.84,54089.6841300756,46256.4256960649,19520.3009557682,48262.5872743851,49293.7361646545 +1641945600,42794.49,44283.76,42472.67,43929.15,53945.9298278347,46090.770967343,19544.6708896495,47975.5209964101,48981.1834363611 +1642032000,43921.14,44443.4,42358.67,42566.66,53776.1041998653,45839.9258924477,19567.6561746753,47692.596069427,48670.9821962796 +1642118400,42530,43469.64,41798.03,43092.97,53605.3080887112,45644.3984635557,19591.1439819628,47420.073822818,48366.0914142791 +1642204800,43062.33,43771.04,42538.93,43111.45,53435.0925586056,45464.1040139954,19614.6267894269,47158.6254029391,48067.280712548 +1642291200,43099.11,43489.16,42644.59,43108.81,53261.4787153671,45296.4549504966,19638.0835157313,46908.5246480683,47775.1515615625 +1642377600,43077.48,43173.41,41589.09,42244.92,53072.6634105325,45079.2476831046,19660.6543100112,46662.453457311,47486.976737 +1642464000,42256.15,42681.19,41300.16,42376.79,52882.2315169439,44886.8876223116,19683.3342292405,46422.9645561892,47204.006233608 +1642550400,42385.36,42582.33,41146.63,41690.96,52677.1490057733,44659.4025314028,19705.3067681318,46185.0323368241,46924.2762466464 +1642636800,41706.74,43489.52,40559.86,40675.73,52458.8130056929,44375.8460135298,19726.243758102,45941.6612429808,46644.7337975324 +1642723200,40760.06,41121.02,35509.5,36462.45,52182.5627384862,43812.573053602,19742.9532817178,45659.496785261,46350.5080343441 +1642809600,36486.55,36798.75,34115.29,35064.16,51884.9904428416,43189.863851769,19758.2500617515,45335.7687741604,46038.6781349404 +1642896000,35141.41,36490.55,34618.08,36292.06,51595.659575821,42698.880412302,19774.7575117452,44991.260252563,45716.5553328761 +1642982400,36172.62,37648.12,32992.55,36706.69,51312.6744564338,42272.3582435368,19791.6624495599,44636.2183620818,45387.7969610954 +1643068800,36616.82,37521.84,35754.82,36974.02,51031.779337623,41895.2242469526,19808.8174131827,44277.8910159566,45055.2182020341 +1643155200,36974.81,38781.63,36282.66,36838.86,50748.2659759889,41535.3138809119,19825.8203046785,43918.7899816902,44719.8893901777 +1643241600,36879.06,37245.35,35526.14,37180.02,50467.5845840995,41225.3054759916,19843.1468364773,43565.1060202137,44384.5989598299 +1643328000,37181.8,38016.6,36159.46,37747.68,50196.8380712317,40977.7692232838,19861.0228243446,43223.8434174193,44052.7534440919 +1643414400,37756.65,38714.12,37309.76,38180.95,49940.9834348928,40778.6925386861,19879.3135439591,42899.4953858514,43726.9492346637 +1643500800,38116.16,38358.67,37403.17,37929.9,49685.2733181483,40575.9164103662,19897.3353522654,42589.6964541132,43406.9549673864 +1643587200,37913.28,38779.34,36651.03,38498.99,49436.6912107852,40428.0814625487,19915.9073501923,42299.464699961,43095.6340904953 +1643673600,38497.02,39288.75,38035.6,38723.35,49192.1797047333,40306.7392303199,19934.6848080323,42029.7791917544,42794.2720385852 +1643760000,38739.08,38883.73,36606.38,36914.92,48924.5893288007,40065.3106383303,19951.6379715415,41763.6948297366,42496.3309553241 +1643846400,36921.39,37390.62,36266.35,37322.6,48668.1390870033,39870.0853852485,19968.9812389491,41506.3976181317,42204.1846005778 +1643932800,37325.51,41780.8,37059.76,41595.79,48466.5675991868,39992.9204796442,19990.5735679694,41295.4944221692,41934.5802847696 +1644019200,41609.07,41969,40946.39,41418.02,48258.4128288771,40094.358600983,20011.9668525052,41123.0455699602,41685.9481815176 +1644105600,41422.08,42701.89,41128.25,42417.63,48061.2759263826,40259.7283051407,20034.33679418,40992.3648917478,41461.2188608618 +1644192000,42419.63,44532.39,41688.55,43869.2,47884.3237611514,40516.6493289165,20058.1336573317,40909.7246482606,41264.6901887178 +1644278400,43879.07,45515.27,42905.98,44133.22,47712.1844672126,40774.0756555159,20082.1703606311,40869.6036035,41095.7035897649 +1644364800,44089.95,44853.82,43170.46,44420.56,47543.8643481686,41033.6312276794,20106.4699474414,40867.2935168957,40953.6405397763 +1644451200,44416.64,45866.71,43219.87,43528.61,47362.2679901976,41211.2230069407,20129.8547454466,40888.3994352254,40833.380100201 +1644537600,43533.39,43976.66,41991.63,42397.41,47169.3717919984,41295.6554121263,20152.0867994147,40918.8080864409,40729.2509276122 +1644624000,42394.52,43042.28,41755.81,42242.26,46977.7533937987,41363.0344194679,20174.14175413,40955.2659001995,40639.6888049006 +1644710400,42239.14,42773.05,41887.56,42073.76,46784.1520982596,41413.6236356222,20196.0064576935,40994.9284942752,40563.1570885763 +1644796800,42074.56,42863.26,41575.24,42550.24,46594.5086544773,41494.5276195465,20218.3250517577,41041.0038061135,40500.6362076042 +1644883200,42560.06,44776.3,42457.81,44573.39,46426.9765142279,41713.6800445337,20242.6412872912,41109.4461081071,40458.8109856783 +1644969600,44574.41,44579.93,43309.36,43888.51,46248.3800899897,41868.4837349165,20266.2494572647,41189.7772404604,40433.4934341126 +1645056000,43894.58,44191.7,40091.38,40546.12,46034.853573804,41774.3583134421,20286.4969954978,41250.3006462443,40410.7537968346 +1645142400,40538.77,40977.97,39436.35,39993.25,45822.2676683127,41647.579601755,20306.172329917,41289.2257935525,40388.3709664184 +1645228800,39996.5,40462.57,39644.95,40104.1,45615.775434924,41537.7152246428,20325.9386936416,41311.0040309756,40366.8177305341 +1645315200,40101.21,40144.23,37994.3,38386.55,45393.1307077686,41313.4163066724,20343.9705108155,41303.6396180553,40339.6189896403 +1645401600,38391.53,39495.65,36810.66,37032.64,45158.035955282,41008.7120385016,20360.6325734667,41260.6592793225,40302.2447109488 +1645488000,37026.12,38450.5,36363.75,38259.84,44943.9448532084,40813.0482189553,20378.5032440879,41199.3584431636,40260.3354518771 +1645574400,38260.84,39282.1,37072.25,37261.73,44727.9197938156,40560.2665407205,20395.359553822,41114.887030777,40210.6659107837 +1645660800,37262.01,39729.11,34329.29,38353.01,44535.8220466859,40403.1547365234,20413.2885742868,41021.517477706,40158.204447895 +1645747200,38351.44,39719.14,38027.76,39232.14,44359.1895143734,40319.8022876338,20432.0774227137,40929.2345203456,40106.706397225 +1645833600,39237.21,40308.98,38599.38,39133.73,44188.5220886244,40235.3780471432,20450.7492591429,40837.7925282219,40055.9126926214 +1645920000,39139.87,39879.78,37017.28,37711.29,43999.804150026,40055.7142791475,20467.9822813082,40735.5362507006,40000.5837228896 +1646006400,37712.31,44236.02,37460.14,43188.92,43881.1431194218,40278.7348454669,20490.6669949103,40672.6198621111,39961.9991148026 +1646092800,43201.82,44977.36,42852.58,44438.27,43784.0568772807,40574.8092077776,20514.5764181196,40653.4122356376,39943.5987981645 +1646179200,44439.96,45352.71,43352.22,43926.92,43686.4433082605,40813.4113660309,20537.9514352726,40665.9089465654,39941.805102242 +1646265600,43925.65,44109.19,41822.22,42466.71,43571.0917912191,40931.0926262141,20559.8452326964,40691.7573392974,39949.698669591 +1646352000,42467.35,42519.83,38585.79,39161.89,43417.8158836002,40805.1613574799,20578.4176201209,40699.797251978,39953.9461041437 +1646438400,39160.35,39616.73,38601.54,39406.8,43270.4435905773,40705.6264498966,20597.2159843066,40695.2339790936,39955.7662253935 +1646524800,39401.93,39701.48,38100.06,38423,43120.4492181288,40543.1498400259,20615.0133485763,40671.8369326053,39951.6434330895 +1646611200,38412.97,39552.59,37166.86,38008.62,42964.1849789261,40362.7428286017,20632.3792245045,40629.5655713228,39940.5337713201 +1646697600,38000.69,39376.12,37869.55,38752.44,42816.2588607882,40248.1219958902,20650.470396367,40578.562050692,39925.8821211806 +1646784000,38753.58,42592.68,38670.18,41964.16,42712.7446324766,40370.2690240778,20671.7501054374,40548.5800811775,39920.1733301519 +1646870400,41952.6,42048.38,38562.48,39438.05,42584.0010978535,40303.9139764982,20690.4864861163,40514.3139495255,39913.1292903078 +1646956800,39433.9,40240.74,38246.21,38735.35,42452.4446703179,40192.264101733,20708.5025806046,40470.7448374948,39902.2365362548 +1647043200,38734.32,39474.46,38668.21,38809.19,42330.4015111372,40093.8173360523,20726.574409998,40420.537223865,39888.1422766955 +1647129600,38803.72,39309.96,37592.35,37790.82,42206.5676445361,39929.8907331164,20743.6114499669,40356.498660297,39867.3262875495 +1647216000,37785.75,39909.2,37572.55,39673.63,42115.2934786494,39911.6501773034,20762.5112882837,40297.9115167175,39847.5487091445 +1647302400,39679.69,39908.84,38139.39,39311.59,42019.7259847966,39868.9380886341,20781.0307940967,40241.1859317257,39827.4287716399 +1647388800,39307.23,41705.33,38846.01,41134.5,41946.9814737738,39959.0203747434,20801.3518136541,40202.2408052121,39813.9553866649 +1647475200,41133.7,41480.98,40512.98,40951.81,41874.4519828282,40029.6868180565,20821.4701458536,40176.6808549873,39805.9244265833 +1647561600,40950.66,42369.16,40139.42,41782.51,41815.9672567635,40154.4522032635,20842.397767406,40169.5349117205,39806.0404391467 +1647648000,41779.98,42403.4,41543.49,42228.16,41768.5639732993,40302.0580512074,20863.7494341997,40181.4523028047,39815.2931970196 +1647734400,42229.39,42319.17,40932.14,41277.41,41709.1689086522,40371.4832863692,20884.1305491536,40200.7309029294,39829.2806135711 +1647820800,41291.68,41576.99,40516.26,41027.61,41644.3380330474,40418.1861728977,20904.2419137438,40223.739383652,39846.6039922841 +1647907200,41017.81,43372.45,40899.99,42382.59,41598.4974900338,40558.011799758,20925.686018781,40261.3309569531,39872.0310657588 +1647993600,42380.32,43037.8,41783.5,42910.55,41564.8568461141,40725.4647053282,20947.635832172,40315.1590123282,39906.7705304582 +1648080000,42906.53,44244.48,42629.48,44008.86,41542.986128515,40959.1757167677,20970.6602897027,40391.3739481339,39954.0469512443 +1648166400,44009.1,45124.29,43605.88,44325.51,41526.2984840137,41198.7902984948,20993.977904647,40488.0848577067,40013.8116143914 +1648252800,44331.57,44810.23,44106.48,44542.83,41515.7373099832,41436.8179591303,21017.4892126773,40602.7002450179,40085.597690679 +1648339200,44545.73,46953.03,44448.72,46856.67,41536.0146930595,41822.601268371,21043.2871979159,40751.0572138257,40176.84969947 +1648425600,46852.57,48222.96,46675.45,47140.78,41558.2091869069,42201.1475044583,21069.3430833409,40928.3466114711,40286.6408518607 +1648512000,47146.63,48128.85,46859.19,47454.07,41583.6641318644,42575.04882284,21095.6857449416,41130.614133962,40414.1633413161 +1648598400,47450.46,47715.01,46558.45,47069.52,41602.4741887134,42894.9638225368,21121.6181689691,41348.3580340048,40555.9758444499 +1648684800,47081.31,47620.79,45228.06,45526.92,41598.8338142832,43082.3056090398,21145.9845612925,41563.6164771333,40704.5025458418 +1648771200,45520.97,46732.31,44245.62,46308.14,41605.4965813184,43311.9194540346,21171.1066005677,41781.7227523025,40861.5618051934 +1648857600,46305.9,47211.05,45655.74,45821.46,41604.5314714406,43490.5477356179,21195.7176537725,41996.0792135958,41023.9972069254 +1648944000,45821.98,47455.7,45562.3,46415.99,41614.0570498416,43698.779766536,21220.8977172991,42210.6372422761,41192.9833603819 +1649030400,46420.72,46891.44,45132.91,46602.28,41629.6594361441,43905.4499708147,21246.2386339037,42425.1167286063,41368.0286373821 +1649116800,46580.72,47193.33,45370.03,45498.32,41634.9031248789,44018.8299425216,21270.4520500424,42628.1340246141,41543.7879797892 +1649203200,45506.57,45531.87,43112.19,43181.76,41616.633739156,43959.2475756863,21292.328424673,42799.940380219,41710.7889713315 +1649289600,43173.92,43904.42,42744.05,43461.88,41610.1430649963,43923.845113071,21314.4626312097,42947.0061357415,41870.2034531585 +1649376000,43458.09,43985.73,42115.73,42281.62,41592.0656719047,43806.9520625115,21335.3963605236,43062.2436409187,42017.6174720493 +1649462400,42267.51,42807.6,42123.63,42767.81,41581.0658570165,43732.9862677584,21356.7946043475,43154.5031371035,42155.3306717426 +1649548800,42774.7,43435.06,41869.98,42155.88,41565.2917417257,43620.7283554737,21377.5605296464,43221.771304471,42281.3369916475 +1649635200,42161.99,42417.74,39219.44,39532.17,41517.1836219558,43329.7060986844,21395.6861951225,43245.2165208187,42386.248092524 +1649721600,39536.79,40693.12,39266.22,40087.3,41480.6446202576,43098.9126849121,21414.3480087841,43237.2052917251,42473.5577324526 +1649808000,40090.95,41556.94,39583.21,41144.7,41462.5996971097,42959.8124602454,21434.0469045661,43212.5253532604,42548.4257973552 +1649894400,41149.44,41499.43,39580.03,39953.82,41434.6512418021,42745.8468925285,21452.5371514849,43164.0507228899,42607.1302991195 +1649980800,39957.1,40862.57,39785.8,40563.6,41420.4595468796,42590.5152669728,21471.6177454603,43101.6908696403,42653.126548816 +1650067200,40565.32,40700.54,40012.57,40389.5,41406.4038120699,42433.8477146154,21490.5054668306,43026.9418103368,42686.6639096209 +1650153600,40384.85,40612.56,39562.29,39687.65,41386.363371368,42238.3742525754,21508.6735995556,42936.5791407174,42706.0246576876 +1650240000,39674.59,41087.55,38556.58,40809.49,41380.0192576082,42136.6667352255,21527.9436445578,42843.8504862952,42716.5774219057 +1650326400,40810.1,41780.46,40585.35,41503.85,41381.9961171354,42091.6230453947,21547.8877032153,42755.9795400429,42721.6533437424 +1650412800,41496.42,42218.37,40899.69,41375.16,41382.0398883673,42040.6254383536,21567.6833647823,42671.7521137841,42721.2129493315 +1650499200,41375.89,43003.88,39777.82,40481.15,41369.7366241755,41929.6224827838,21586.5666775731,42583.521812249,42712.350887224 +1650585600,40486.74,40802.88,39175.31,39719.22,41348.024104229,41772.2867514517,21604.6704219061,42486.1744205991,42692.9394052189 +1650672000,39711.92,39981.3,39301.75,39440.84,41326.3291968292,41606.335128361,21622.4781551804,42379.7615046798,42662.8975208306 +1650758400,39448.61,39933.62,38995.74,39465.69,41305.7559714657,41453.9647028767,21640.292919494,42267.0252026592,42623.3363627804 +1650844800,39460.95,40605.66,38208.88,40440.55,41299.5751527957,41381.8301732326,21659.0632032207,42158.4887046145,42578.8960411507 +1650931200,40444.29,40794.44,37693.25,38123.48,41267.1587011602,41149.9018654087,21675.5013707068,42034.3151345572,42521.4093098399 +1651017600,38117.16,39468.68,37893.12,39252.85,41252.8940308658,41014.8703293225,21693.050695672,41908.1136595595,42456.4673363804 +1651104000,39252.42,40376.47,38864.71,39748.89,41247.9147246402,40924.7582603589,21711.0777484519,41785.6229658509,42386.8224234992 +1651190400,39748.42,39921.99,38156.71,38592.08,41233.3164613335,40758.7189788639,21727.9318372282,41657.2436691078,42308.7689916891 +1651276800,38595.69,38789.62,37596.05,37648.79,41212.6530125661,40537.3552434847,21743.8273126788,41516.9751786995,42219.7545902817 +1651363200,37644.98,38668.42,37403.24,38479.3,41209.6439350979,40390.8635392011,21760.5361039095,41375.317694995,42124.1835513793 +1651449600,38475.51,39169.7,38037.35,38511.75,41206.84636571,40257.1088473524,21777.2606112527,41234.0226146554,42023.0967915062 +1651536000,38507.81,38640.08,37511.38,37725.77,41190.1247956957,40076.9289697511,21793.1836938448,41087.4525428357,41914.3769296343 +1651622400,37728.01,40032.42,37664.88,39680.04,41195.5950889753,40048.6785416957,21811.0420330371,40954.7040141556,41806.4633978996 +1651708800,39678.74,39840.3,35538.6,36541.63,41159.7897559072,39799.0479647204,21825.7491359462,40807.3431581137,41687.8436261059 +1651795200,36540.54,36653.15,35264.49,36010.24,41115.7287227137,39529.36184346,21839.9110123981,40644.6410448924,41557.8691664757 +1651881600,36010.16,36116.92,34779.46,35461.25,41062.3323982853,39239.7949627598,21853.5106348096,40465.978464602,41415.9231209161 +1651968000,35462.2,35497.62,33707.22,34027.56,40988.4767084071,38868.7897697562,21865.6652750206,40263.3359666799,41258.1453730305 +1652054400,34035.88,34225.88,30027.24,30076.35,40863.2529629958,38242.9467605564,21873.8628694055,40008.5600050951,41071.5569264577 +1652140800,30067.43,32645.62,29741.87,31001.31,40748.5502609774,37727.4894062338,21882.9757645967,39721.0928560396,40862.8049093391 +1652227200,31004.06,32150.74,27714.29,28991.23,40606.4846752795,37105.6452970759,21890.0726861031,39391.8394274871,40626.9714370261 +1652313600,28993.17,30092.4,25365.62,28928.01,40462.3718903408,36523.5638707049,21897.0994027946,39030.5086153471,40367.0109258375 +1652400000,28937,30977.75,28679.35,29234,40321.7084000729,36004.6950802368,21904.4246061307,38648.5568634455,40087.1119472331 +1652486400,29237.6,30280.22,28578.66,30040.99,40185.5436235974,35580.200488163,21912.5481993534,38259.9185596785,39793.0741538834 +1652572800,30046.96,31405.52,29444.3,31293.29,40056.6538383668,35275.0595909446,21921.9139853855,37879.9647878384,39491.9390964464 +1652659200,31287.47,31288.29,29061.24,29832.75,39908.700481528,34887.6777605783,21929.8122091105,37497.8143045572,39179.9319728009 +1652745600,29838.75,30745.25,29411.65,30414.61,39765.8219260135,34569.2862491272,21938.2834795414,37122.1902332775,38861.3526669652 +1652832000,30414.26,30667.54,28602.82,28672.03,39599.7187938294,34149.5214632856,21945.0064904125,36740.1183925266,38531.382543684 +1652918400,28667.77,30502.21,28649.15,30283.19,39455.220277629,33874.3172445578,21953.3313803101,36369.9730158003,38198.3203549588 +1653004800,30278.32,30727.4,28695.29,29166.42,39298.9177999594,33539.2106466517,21960.5329690627,36003.185047553,37859.4694986011 +1653091200,29168.29,29611.59,28919.32,29410.96,39149.5662515597,33245.3631054585,21967.9715178366,35644.4439622656,37517.525200464 +1653177600,29400.27,30467.74,29214.78,30264.11,39014.0821364994,33033.1584769862,21976.2544297394,35302.7994615337,37177.2634923617 +1653264000,30260.6,30630.21,28841.88,29075.93,38864.8957813056,32751.484238324,21983.3427862576,34967.9020741692,36835.3393339046 +1653350400,29077.88,29811.31,28631.6,29630.68,38723.607738029,32529.346405506,21990.9779312794,34646.2462484003,36495.2801690775 +1653436800,29627.35,30189.57,29308.91,29511.36,38581.003474564,32314.5271126582,21998.4863235614,34337.2332712857,36157.7610018744 +1653523200,29511.88,29852.83,27877.5,29175.27,38434.6219338143,32091.075810234,22005.6516652519,34038.3873716078,35822.5712679771 +1653609600,29169.81,29363.81,28242.22,28586.94,38286.9211647554,31841.6525605388,22012.2224610023,33745.4033134244,35488.5569798785 +1653696000,28596.1,29231.76,28497.76,29013.09,38152.2841540132,31640.3163954977,22019.2121670195,33463.4584676868,35158.4887918045 +1653782400,29013.88,29554.01,28813.58,29449.54,38025.2366077641,31484.3776426889,22026.6306486397,33196.805817962,34834.9257794556 +1653868800,29451.01,32199.46,29266.54,31719.73,37928.1993805059,31501.129947098,22036.3082942292,32964.6642725124,34527.1095911785 +1653955200,31706.31,32384.54,31195.22,31775.89,37835.0630941891,31520.6872784894,22046.032348066,32763.4069781113,34235.0758430344 +1654041600,31781.64,31952.54,29313.75,29787.13,37717.5555738076,31397.2932340375,22053.7611040432,32572.1053568986,33951.0753270409 +1654128000,29789.19,30865.18,29567.27,30433.5,37605.1802919545,31328.6907444406,22062.1274830751,32396.2356316603,33677.9383665501 +1654214400,30433.56,30669.97,29239.09,29673.24,37482.7621313972,31210.8562977325,22069.7264611533,32228.0096751582,33412.901781974 +1654300800,29678.33,29953.93,29453.43,29845.93,37358.8339783959,31113.7012868506,22077.4902670478,32069.0193063416,33156.9298248633 +1654387200,29839.87,30154.16,29513.87,29899.4,37233.0315560436,31027.2677153576,22085.2997062669,31919.4636336214,32910.4203229832 +1654473600,29902.42,31737.04,29871.06,31351.91,37124.217137256,31050.3756478148,22094.5515427526,31791.5192462782,32678.9847173231 +1654560000,31350.82,31547.6,29192.73,31107.6,37010.3844537242,31054.448858631,22103.5502216568,31680.3483068529,32461.2927446048 +1654646400,31104.91,31303.34,29837.64,30185.45,36876.1795761666,30992.5938019097,22111.6192364177,31575.9660157306,32253.5156305256 +1654732800,30187.24,30669.94,29911.67,30080.69,36741.9671194702,30927.6847852508,22119.5756020477,31477.165415844,32055.1993939801 +1654819200,30078.77,30334.78,28832.05,29061.48,36600.0705620837,30794.8489343187,22126.5064389291,31375.0001149416,31862.4397042012 +1654905600,29059.17,29407.09,28085.65,28387.02,36456.0554007564,30623.4604522416,22132.7569713188,31265.1193642701,31672.9450835174 +1654992000,28395.94,28511.91,26517.39,26565.12,36295.3862876623,30334.589095997,22137.1822678066,31134.0912151087,31480.2734971909 +1655078400,26546.5,26849.82,21920.2,22458.28,36083.251744493,29773.9559708225,22137.5028536109,30951.2954192186,31269.9140561092 +1655164800,22445.38,23297.6,20818.56,22109.15,35867.88890023,29228.377569454,22137.4745459604,30724.4729554942,31042.8466190003 +1655251200,22106.02,22773.55,20076.43,22560.52,35657.269045084,28753.7616317324,22137.8969169507,30467.2929721008,30803.0537416424 +1655337600,22558.72,22960.59,20200,20375.02,35416.3870079107,28157.3655217301,22136.1368505982,30168.4683093628,30544.2698534314 +1655424000,20375.95,21331.2,20220.25,20441.06,35173.2250655006,27608.1213990423,22134.444476218,29838.5371270383,30269.3362767758 +1655510400,20440.54,20749.53,17585.31,18951.09,34916.3930423077,26991.9167137227,22131.2661969814,29472.9866659622,29975.0378044442 +1655596800,18948.38,20790.46,17929.28,20552.98,34680.2956385027,26533.5952882152,22129.6904270548,29095.1405855775,29670.1814656383 +1655683200,20550.63,21039.07,19616.49,20552.75,34443.2822300748,26107.8806617004,22128.1160007526,28710.4434111009,29356.8152897738 +1655769600,20551.51,21703.63,20329.99,20702.57,34207.3608801429,25723.1324031095,22126.6927275077,28324.7306717598,29037.4119410445 +1655856000,20702.41,20866.58,19750.68,19961.51,33957.6897305806,25313.0219904071,22124.530996743,27935.1105501009,28710.8924303351 +1655942400,19964.18,21205.32,19872.81,21096.53,33720.922320563,25012.8934590044,22123.5046346939,27555.4559885126,28383.3809905697 +1656028800,21099.88,21532.73,20720.29,21216.63,33482.0481784653,24742.6766580806,22122.5992058945,27188.3202496442,28056.652267239 +1656115200,21223.24,21589.19,20896.26,21481.56,33246.0877282191,24510.5514327631,22121.9591887009,26836.947674909,27732.8739813495 +1656201600,21478.41,21867.79,20955.81,21029.53,33002.9132569825,24262.7734569545,22120.8685011781,26497.6731476185,27411.3109595459 +1656288000,21026.47,21517.84,20498.95,20711.61,32755.5002067944,24010.0027946287,22119.4614894656,26168.5361734304,27091.7886078598 +1656374400,20721.5,21185.59,20170.21,20253.96,32503.3435952651,23742.6488875414,22117.5989621555,25846.628305376,26773.6118108482 +1656460800,20253.69,20401.48,19827.51,20091.47,32247.8437664468,23482.7591593267,22115.5760634619,25532.0458811785,26457.2540812274 +1656547200,20096.49,20137.35,18608.03,19949.77,31987.2678904441,23231.2821376075,22113.413710355,25224.984554633,26143.2203112875 +1656633600,19960.39,20883.93,18945.86,19248.11,31716.2138812118,22947.7612376025,22110.5529748142,24920.6995583934,25829.8491218379 +1656720000,19254.56,19423.04,18963.36,19224.84,31443.0280211371,22682.7649121946,22107.6718625475,24621.1279259299,25518.179681726 +1656806400,19228.29,19634.97,18758.64,19292.67,31170.292173777,22441.4590566096,22104.861348658,24328.610026782,25209.5003984066 +1656892800,19294.22,20324.27,19032.26,20208.46,30908.4140042826,22282.5149084863,22102.9679707525,24052.3406816835,24908.1809788712 +1656979200,20209.38,20726.41,19284.61,20162.71,30644.0103862436,22131.627883089,22101.0308061458,23791.4316487113,24614.5607590944 +1657065600,20161.75,20629.94,19747.43,20544.2,30386.7802157393,22018.6352815749,22099.4764574036,23548.7127749,24330.5345281193 +1657152000,20543.08,21840.99,20235.26,21621.52,30146.1868088518,21990.3687447173,22098.9992629548,23332.3701727093,24060.4273935298 +1657238400,21617.25,22468.69,21174.43,21589.1,29909.7366585746,21961.8065657013,22098.4901766271,23139.3170426269,23803.9534692455 +1657324800,21583.22,21955.97,21316.78,21582.02,29678.2243874983,21934.7734812155,22097.9745298617,22967.0316303268,23560.8953845728 +1657411200,21580.64,21592.66,20634.71,20843.12,29439.303915259,21857.0699407218,22096.7216759534,22806.9333829442,23328.2400290733 +1657497600,20845.93,20853.02,19867.27,19946.61,29193.0533461061,21721.0840221864,22094.5749922123,22650.4953078586,23102.5960159729 +1657584000,19945.38,20039.76,19227.92,19310.95,28941.9020195832,21549.531464703,22091.7958051688,22492.9256699855,22881.8188750693 +1657670400,19315.26,20338.83,18901.64,20229.58,28707.2278618981,21455.5777478395,22089.9365583046,22343.7285785153,22669.7975284026 +1657756800,20222.12,20891.93,19608.42,20576.56,28483.9930016967,21393.009549836,22088.4255945309,22205.7088262422,22467.8984689424 +1657843200,20575.24,21188.96,20371.87,20828.63,28270.9865409535,21352.8371966497,22087.1678074355,22080.2567914532,22276.9753730394 +1657929600,20825.38,21576.75,20477.83,21196.9,28065.6298108695,21341.737637602,22086.2789589869,21969.4121998936,22098.2066896493 +1658016000,21190.9,21665.08,20750.81,20793.29,27859.9077290297,21302.6993127577,22084.9880314474,21868.0541304861,21929.7099351433 +1658102400,20790.02,22767.53,20761.84,22438.4,27677.5021528265,21383.5381190807,22085.3408799693,21789.5983052784,21777.46043957 +1658188800,22441.38,23795.06,21586.35,23402.53,27511.9654155527,21527.249305895,22086.6559690874,21738.9968281741,21644.2925578186 +1658275200,23399.61,24277.96,22905.61,23223.96,27349.6348825518,21648.0206224291,22087.7914599082,21710.2046031424,21528.412439746 +1658361600,23218.69,23431.68,22345.38,23158.95,27186.4382533477,21755.5680851482,22088.8609106943,21699.0415490347,21428.5423070967 +1658448000,23156.26,23755.2,22512.45,22684.25,27017.8161976507,21821.671362441,22089.4553505515,21698.3746871924,21341.905460021 +1658534400,22690.43,23002.26,21947.3,22459.15,26849.7314192698,21867.0468849669,22089.8244557947,21704.402775521,21266.8538729749 +1658620800,22459.72,23012.75,22268.45,22586.22,26684.0211553367,21918.2373938853,22090.3200599328,21716.9851122836,21203.1657868635 +1658707200,22586.23,22664.93,21255.86,21306.56,26504.4544088455,21874.6983955102,22089.5375494259,21723.7884603574,21145.2831749468 +1658793600,21308.58,21338.2,20709.26,21264.87,26326.5206765866,21831.2910082393,22088.7141966485,21725.4182766967,21092.7735793307 +1658880000,21263.12,23119.04,21047.47,22964.43,26169.8880185704,21911.9474739093,22089.5885162933,21737.4700525602,21051.7964744383 +1658966400,22969.77,24200.17,22565.49,23855.88,26026.3400066341,22050.3159602076,22091.3519917687,21765.6980496123,21024.8924282335 +1659052800,23852.54,24459.8,23438.21,23789.6,25885.8011825959,22174.1176336705,22093.0475322507,21806.4170724664,21010.7161954543 +1659139200,23788.07,24675.03,23523.35,23645.08,25748.1422569548,22278.8202575008,22094.5970903045,21855.8109992469,21007.6933890194 +1659225600,23648.58,24189.32,23244.64,23315.95,25610.1671768132,22352.6428159685,22095.8164960045,21909.0694438879,21013.6442247243 +1659312000,23304.94,23513.82,22856.85,23277.07,25474.4225744014,22418.4432429023,22096.9958662295,21964.7106772039,21027.6364319252 +1659398400,23278.74,23463.1,22661.04,22994.19,25337.4247697327,22459.4247102123,22097.8916299617,22019.3857780875,21047.8652259672 +1659484800,22995.62,23645.97,22696.42,22831.86,25200.6933219889,22485.9345332645,22098.624428162,22071.390097057,21073.1109523724 +1659571200,22826.58,23228.11,22402.03,22621.93,25067.1270661273,22495.614646449,22099.1468994248,22118.9328335147,21102.0589603725 +1659657600,22627.17,23476.23,22589.71,23322.46,24943.1462844676,22554.4692303597,22100.3682621906,22168.4499773834,21136.9305501806 +1659744000,23319.95,23352.8,22921.6,22952.69,24817.6981695281,22582.814455499,22101.2192250671,22215.9668166658,21175.69403281 +1659830400,22957.86,23404.03,22852.87,23181.62,24700.5224085886,22625.4372398126,22102.2979033531,22263.4062950459,21218.7366258065 +1659916800,23179.86,24255.61,23165.41,23820.8,24595.3397285004,22710.5227731243,22104.0136656324,22315.8975757655,21267.9456848682 +1660003200,23816.39,23921.23,22880.85,23159.22,24483.7888875658,22742.4608961074,22105.0671896455,22366.3719615122,21320.1127704526 +1660089600,23157.94,24220.67,22675.92,23961.97,24386.3125914718,22829.2651583273,22106.9211319854,22421.6902984293,21377.8207923115 +1660176000,23960.8,24916.85,23867.14,23954.9,24293.7129519591,22909.3874810296,22108.7661646105,22480.4543766159,21440.3540166382 +1660262400,23954.4,24461.1,23604.07,24413.41,24210.3284758881,23016.4433157951,22111.0671341395,22545.5089352919,21508.7975048774 +1660348800,24417.98,24908.5,24305.43,24452.44,24137.7714111611,23118.65709372,22113.4047741416,22615.5136367801,21582.5376679277 +1660435200,24455.15,25045.61,24160.5,24314.02,24069.2188682238,23203.7426374306,22115.6018809145,22687.7889951357,21660.3229834269 +1660521600,24315.41,25207.71,23784.48,24103.81,24004.384896139,23267.8091401788,22117.5869192224,22759.4903871844,21740.7219636914 +1660608000,24100.88,24249.61,23673.02,23865.17,23944.2989289344,23310.3290923057,22119.3317161218,22828.036760147,21822.3076024613 +1660694400,23862.83,24441.29,23187.31,23341.6,23885.7960382492,23312.5549453663,22120.5520357366,22888.8688333383,21902.6937660336 +1660780800,23343.34,23595.27,23108.12,23196.34,23826.0449272319,23304.2828032731,22121.6261085661,22941.5728118375,21981.1303350276 +1660867200,23192.52,23200.62,20793.1,20836.46,23740.4999504688,23128.623977075,22120.342991405,22966.7337087559,22048.5752984836 +1660953600,20836.46,21368.71,20765.5,21140.87,23658.6327637094,22987.136294118,22119.3650799928,22971.6492117789,22106.8580559002 +1661040000,21144.06,21794.33,21068.11,21495.97,23580.4265120206,22880.995561265,22118.742678795,22962.9362776527,22157.8784824271 +1661126400,21519.23,21532.62,20899.1,21404.35,23500.1083285955,22775.8884094637,22118.0294250764,22942.2946473084,22201.7154012827 +1661212800,21404.18,21675.58,20897.17,21523,23421.3568501766,22686.7082191065,22117.4353443101,22913.0435327105,22239.2620998124 +1661299200,21524.67,21902.85,21151.05,21370.71,23344.2970803471,22593.0358929815,22116.6898094741,22875.6458373562,22270.3365218296 +1661385600,21368.69,21812.1,21315.24,21566.32,23270.4802639801,22519.9545889426,22116.1403171223,22833.560319754,22296.1103003709 +1661472000,21559.81,21873.84,20110.97,20246.01,23183.0241791642,22358.0959511169,22114.2731683642,22776.5682495569,22311.9509249552 +1661558400,20240.68,20377.76,19804.96,20037.31,23091.6663178799,22192.9031603341,22112.1995165097,22706.00122373,22317.8550250527 +1661644800,20038.21,20157.62,19522.36,19550.11,22996.7253456222,22004.7900009076,22109.6415117467,22620.6645247615,22312.805344994 +1661731200,19553.98,20417.94,19548.34,20294.27,22911.2664208099,21883.0357423971,22107.8290344918,22530.3477442306,22300.5624489995 +1661817600,20292.52,20573.94,19549.2,19811.34,22820.0241902008,21735.573111828,22105.5362067625,22432.5398564343,22279.960486717 +1661904000,19821.28,20484.35,19810.12,20053.81,22734.5254522666,21615.8657593491,22103.4877516341,22331.5107217516,22252.7036152521 +1661990400,20050.07,20201.81,19565.74,20127.44,22650.0849832036,21509.9200968715,22101.5148543063,22229.3413817032,22219.7386403022 +1662076800,20130.6,20438.37,19761.55,19954.25,22564.8617838889,21399.1880042733,22099.3710128483,22125.6200499825,22181.0213593883 +1662163200,19953.02,20051.03,19660.86,19835.94,22479.6119515413,21287.9165186857,22097.111190436,22020.4957941352,22136.7402930648 +1662249600,19835.06,20021.38,19594.03,20004.08,22397.4537307551,21196.5334519585,22095.0214961768,21916.5796659853,22088.1706598025 +1662336000,20006.61,20051.5,19638.15,19791.58,22311.8420202894,21096.5293212297,22092.7217270701,21812.7187730332,22035.0580440865 +1662422400,19794.9,20176.77,18667.06,18790.61,22212.9114780327,20932.3947323373,22089.424879918,21701.1480413236,21974.2093315217 +1662508800,18795.9,19460.3,18535.47,19285.24,22118.8670513274,20815.1507930783,22086.6251657655,21588.4749498095,21908.3799224094 +1662595200,19295.25,19452.06,19017.93,19322.2,22028.8750942914,20708.8830401684,22083.8651479381,21476.1884974089,21838.381458383 +1662681600,19323.45,21602.83,19302.29,21370.03,21969.7945489243,20755.9432661921,22083.1524508615,21382.8937870686,21772.5659298439 +1662768000,21373.53,21807.29,21128.5,21655.74,21915.562308459,20819.9905056729,22082.7257198366,21308.499801802,21711.9051459773 +1662854400,21658.13,21861.88,21361.52,21839.13,21866.7429333058,20892.5325241145,22082.4825124828,21251.8837404394,21656.88243361 +1662940800,21834.42,22485.01,21559.45,22403.06,21826.6014323644,21000.051379602,22082.8025788719,21215.2578710825,21609.3557609133 +1663027200,22399.41,22792.25,19886.26,20174.25,21760.3954269972,20941.2711054181,22080.8970691089,21176.1268680174,21560.4506397503 +1663113600,20174.37,20530.59,19623.9,20231.86,21696.4193539795,20890.7754531759,22079.0509799698,21135.7712166467,21510.6865028477 +1663200000,20229.49,20358.97,19499.83,19699.88,21631.0107225466,20806.0079013273,22076.6756021153,21090.1580912077,21458.3154037104 +1663286400,19703.79,19888.51,19322.35,19800.14,21573.0792326241,20734.4105505681,22074.4026960065,21041.4807279206,21404.1353754502 +1663372800,19800.38,20186.28,19755.04,20117,21524.7151551222,20690.4634679611,22072.4484140084,20993.4424228855,21349.7013730044 +1663459200,20117.31,20119.33,19343.39,19420.94,21474.9019527336,20600.099199539,22069.8011329089,20940.3278821421,21292.6120289076 +1663545600,19421.18,19680.56,18249.97,19538.12,21433.8851318225,20524.5078647842,22067.2734880492,20884.5093235553,21233.7512018317 +1663632000,19536.8,19634.56,18725.93,18876.62,21393.5527759047,20407.2117413956,22064.0879214377,20821.2302330635,21170.9937745649 +1663718400,18875.49,19910.47,18152.13,18456.46,21357.0057812818,20268.3578655651,22060.4860451774,20748.7282891242,21103.3213991108 +1663804800,18463.28,19517.69,18365.63,19403.42,21334.1794317253,20206.7918690122,22057.8332153073,20677.4517807255,21034.9835040928 +1663891200,19405.34,19491.02,18536.25,19289.97,21311.4768269274,20141.5327859331,22055.0697649116,20606.8188473817,20965.8663186972 +1663977600,19288.92,19308.2,18811.84,18924.36,21288.3529455444,20054.8948220672,22051.9440464546,20534.1653753457,20894.9164606549 +1664064000,18922.73,19176.25,18635.45,18808.52,21263.9693454014,19966.178266747,22048.705793417,20459.4762887745,20822.1202336011 +1664150400,18807.41,19312.6,18689.95,19227.65,21245.7952540243,19913.6100644114,22045.8892352484,20387.3814619726,20749.4922762801 +1664236800,19229.51,20381.29,18826.44,19081.15,21222.6604559635,19854.3558272039,22042.9292227133,20316.7776942125,20676.739319946 +1664323200,19082.54,19773.28,18478.88,19409.26,21203.5022170385,19822.6740506806,22040.299752364,20250.8473857426,20605.3857645504 +1664409600,19406.77,19641.12,18847.74,19594.92,21186.4668761062,19806.4625912714,22037.8582712941,20190.9368220845,20536.2831831003 +1664496000,19596.28,20177.32,19154.78,19426.02,21167.6261683196,19779.3828110984,22035.250597091,20135.0364592882,20468.8633250377 +1664582400,19423.86,19484.26,19169.03,19315.3,21145.4496889721,19746.3495472238,22032.5349829262,20081.9613487929,20402.8196045635 +1664668800,19313.69,19396.66,18930.01,19057.33,21120.2076115014,19697.3053594757,22029.564521329,20029.4392822659,20337.3102487167 +1664755200,19061.28,19710.87,18972.41,19634.52,21102.6519968145,19692.8363179654,22027.1732952404,19982.8159005286,20274.7168382956 +1664841600,19633.27,20470.34,19500.47,20344.04,21095.4805570522,19739.1887847026,22025.4928453739,19947.5819780619,20217.7071662118 +1664928000,20344.06,20366.35,19745.62,20163.1,21087.1035529403,19769.3626474259,22023.6334217517,19920.4584634717,20165.3384835935 +1665014400,20161.99,20449.26,19863.21,19958.59,21077.0753118933,19782.8317889678,22021.5716706401,19898.4738432686,20116.6416653515 +1665100800,19960.63,20058.21,19331.34,19532.76,21061.9751600475,19765.0317601906,22019.0868268957,19877.225801962,20069.8803525022 +1665187200,19533.12,19625.63,19237.18,19418.17,21045.6289178189,19740.3422526752,22016.4900567249,19855.7768196024,20024.6338399284 +1665273600,19421.01,19570.58,19326.97,19445.94,21029.9469093826,19719.3867958789,22013.9236049103,19834.5880105418,19981.0490639762 +1665360000,19442.08,19525.27,19031.76,19131.94,21009.0938453074,19677.5725236058,22011.0462160678,19811.0819652538,19937.9635723811 +1665446400,19131.19,19263.11,18857.22,19056.5,20985.5830364259,19633.3647829464,22008.0963803011,19785.2205959074,19895.2127341079 +1665532800,19057.97,19232.77,18963.55,19156.58,20960.8875397123,19599.4273968381,22005.2494101091,19758.5102549753,19853.3074652088 +1665619200,19155.81,19503.13,18160.71,19380.96,20938.0552715071,19583.8769584354,22002.6293046181,19733.2720853718,19813.1814403897 +1665705600,19378.24,19946.71,19076.03,19181.61,20911.1105643259,19555.2437268908,21999.8127828802,19707.7399046041,19774.0821060437 +1665792000,19181.89,19225.48,18995,19069.45,20881.1363528513,19520.6650870765,21996.8870919909,19681.2169681655,19735.6462708802 +1665878400,19071.81,19424.05,19067.87,19263.43,20854.1917505809,19502.3551770648,21994.1579928646,19655.7851382982,19698.6951894066 +1665964800,19262.52,19672.82,19160.09,19550.45,20831.7002954404,19505.778550952,21991.7181808889,19633.9520180956,19664.3260281555 +1666051200,19549.83,19699.91,19100.22,19331.81,20808.082935878,19493.3955259572,21989.0625134143,19613.3781766711,19631.6234025776 +1666137600,19329.63,19358.06,19072.51,19125.59,20782.7258989886,19467.2152479919,21986.203606151,19592.2354680692,19599.7903660857 +1666224000,19127.11,19345.26,18907.62,19044.25,20755.5362133861,19437.1087189144,21983.2663429177,19570.1043675625,19568.5660302561 +1666310400,19043.92,19248.36,18660.53,19166.92,20726.8820336002,19417.8767735926,21980.4544866914,19548.411895143,19538.4797893846 +1666396800,19169.34,19251.92,19117.89,19206.4,20696.9219144555,19402.8239254837,21977.6848548951,19527.6090983588,19509.6975796818 +1666483200,19206.9,19689.18,19077.69,19572.38,20669.9319283574,19414.8928718378,21975.283384831,19510.8818682405,19483.5992608092 +1666569600,19573.54,19594.54,19163.48,19332.21,20638.2718119792,19409.0075318554,21972.6445253127,19495.5759621227,19459.148241831 +1666656000,19332.62,20412.72,19234.91,20086.89,20614.7846603421,19457.2589859292,21970.7617772562,19488.0956982165,19439.1466817029 +1666742400,20089.41,21018.53,20061.9,20774.74,20596.3455278051,19551.0368569186,21969.5676623031,19493.0644691883,19425.8893166494 +1666828800,20774.83,20875.13,20192,20292.62,20570.7564453109,19603.8225043602,21967.8933882077,19504.0641841953,19417.0321688519 +1666915200,20292.45,20749.52,20006.33,20599.09,20549.9927619434,19674.6653216829,21966.5267671103,19522.579765056,19413.391877954 +1667001600,20598.95,21077.68,20564.05,20820.06,20532.8842965491,19756.1941431444,21965.3821281615,19549.028744316,19415.3730769348 +1667088000,20819.83,20931.45,20523.21,20628.62,20514.5908379117,19818.2931324871,21964.0474972406,19580.1208601833,19421.7673899255 +1667174400,20628.02,20831.87,20243.83,20495.81,20495.1699709796,19866.5185632267,21962.5816005625,19613.6159482685,19431.6739205557 +1667260800,20493.23,20682.31,20333.65,20480.62,20475.768629451,19910.2301041878,21961.1020016615,19648.6670685442,19444.6992737366 +1667347200,20481.35,20817.63,20058.5,20153.01,20453.3685812076,19927.5110983768,21959.2967923109,19681.8632084986,19459.2919385551 +1667433600,20152.86,20387.15,20041.07,20206.42,20429.7295243463,19947.3637434737,21957.5467101398,19713.708017457,19475.465240845 +1667520000,20208.54,21303.83,20182.5,21150.52,20414.3897864709,20033.0040153254,21956.7409700768,19752.3273135258,19496.5889020894 +1667606400,21152.19,21473.69,21086.04,21300.78,20399.9854814188,20123.2438984543,21956.0860549089,19797.4850212609,19522.7296773685 +1667692800,21300.8,21362.22,20894.77,20914.74,20381.655936206,20179.58233408,21955.0463690778,19844.2942235324,19551.9044792913 +1667779200,20906.7,21069.48,20398.07,20570.4,20360.0694129612,20207.4006086992,21953.6639302581,19889.0807092184,19582.4448445417 +1667865600,20573,20673.19,17228.9,18547.62,20314.2581623099,20089.2579636585,21950.2633166025,19914.3295383997,19606.4807481827 +1667952000,18544.75,18585.85,15563.5,15878.21,20235.685820016,19789.5169363129,21944.200943994,19900.2102825496,19614.394012569 +1668038400,15892.93,18154.54,15731.25,17557.04,20179.0752449257,19630.6099525429,21939.820777525,19868.3383933898,19613.8653067999 +1668124800,17556.68,17645.49,16355.39,16992.47,20115.8283658973,19442.8280069367,21934.8813143361,19817.2565417617,19603.4824229962 +1668211200,16998.57,17047.13,16578.46,16777.14,20049.9928954333,19253.0851997596,21929.7317960373,19748.9509531021,19583.3092663984 +1668297600,16777.98,17002.58,16234.36,16309.05,19977.5104781632,19043.5297297357,21924.1200753253,19663.0195250671,19552.4867862786 +1668384000,16302.19,17149,15791.2,16590.41,19909.2519841743,18868.9174635401,21918.7948688135,19565.7626275592,19513.0993222432 +1668470400,16589.69,17100.32,16511.99,16873.79,19844.2203261774,18726.9049382096,21913.7579072238,19462.4788832042,19467.0939664937 +1668556800,16879.1,16985.7,16344.17,16647.91,19776.0685161148,18578.9227532516,21908.500454687,19353.1770957608,19414.3541423775 +1668643200,16651.97,16746.08,16403.68,16677.06,19709.4979926989,18443.5487797301,21903.2773547467,19240.1212019849,19355.7616818187 +1668729600,16678.18,16977.5,16530.22,16681.04,19642.3483211861,18318.0939768162,21898.0634432339,19124.9885861688,19292.0504918564 +1668816000,16684.05,16799.22,16542.18,16685.13,19576.1219796829,18201.8601309295,21892.8588207992,19009.1781200827,19223.9118248358 +1668902400,16684.22,16732.59,16160.45,16255.15,19505.178712664,18063.2939356203,21887.2301002088,18890.0940772481,19150.3557081244 +1668988800,16253.6,16274.39,15473.78,15760.8,19429.8125161411,17899.4031645638,21881.11343751,18765.0728151119,19070.2537191977 +1669075200,15758.89,16284.5,15598.66,16195.94,19362.1720141212,17778.151209374,21875.4373279759,18640.0095108356,18986.1081152035 +1669161600,16198.75,16675.92,16146.9,16597.42,19302.0863339202,17694.1071451004,21870.1677254201,18519.4634519343,18900.096561031 +1669248000,16592.59,16792.07,16452.03,16587.76,19244.6263712439,17615.3577143803,21864.8937394665,18403.5922696642,18812.6660326799 +1669334400,16587.42,16603.81,16340.38,16507.83,19189.3074268022,17536.524251122,21859.5452165234,18291.8777663504,18723.9655014087 +1669420800,16510.55,16687.82,16395.43,16452.93,19136.279773177,17459.3943640107,21854.1472211034,18184.0740702466,18634.2305885711 +1669507200,16451.83,16591.49,16399.33,16423.94,19087.3350040232,17385.6910584401,21848.7256712917,18080.1690824344,18543.7786316173 +1669593600,16420.78,16478.08,16000.41,16209.05,19035.4243796868,17301.9381297825,21843.0949869865,17978.5120876533,18452.2006833674 +1669680000,16207,16545.54,16097.09,16433.95,18986.4579656685,17240.1550164126,21837.6944658293,17881.527497597,18360.7875906573 +1669766400,16438.2,17244.8,16426.89,17167.82,18947.6327818837,17235.0062334209,21833.0320365701,17795.5693772658,18272.6418393799 +1669852800,17168.27,17296.93,16872.35,16977.74,18907.2731056355,17216.6941064225,21828.1844853525,17717.782521584,18187.1006938723 +1669939200,16977.72,17102.84,16797.56,17094.08,18869.7691330721,17207.9664741221,21823.4579284761,17648.3962649915,18104.7050599804 +1670025600,17092.77,17156.69,16871.05,16894.08,18831.1917459009,17185.6241367668,21818.5364094821,17584.7919788063,18024.7433857239 +1670112000,16895.97,17201.03,16888.78,17113.75,18798.3016084122,17180.5081590387,21813.8391239396,17528.3932989273,17948.1402196698 +1670198400,17109,17430.54,16876.59,16966.51,18764.2406834585,17165.2758395321,21808.9995229392,17477.1373027423,17874.3432626726 +1670284800,16967.05,17110.5,16908.29,17088.31,18732.1987187743,17159.7974360537,21804.2863596377,17431.6081686561,17803.8525485456 +1670371200,17090.1,17134.93,16701.15,16838.69,18696.1423853794,17136.9411129717,21799.3286799558,17389.0261559189,17735.7105237475 +1670457600,16840.04,17296.99,16737.43,17229.24,18665.8116449773,17143.5109177945,21794.7658773935,17352.6130280726,17671.4496437996 +1670544000,17228.56,17353.8,17067.41,17130.84,18633.9883928689,17142.6090059783,21790.1093872389,17320.7391224352,17610.6109984956 +1670630400,17131.85,17229.96,17100.46,17130.07,18602.3693960628,17141.7164836023,21785.4567773782,17292.868477123,17553.1304512939 +1670716800,17130.32,17267.94,17077,17089.92,18570.7682809514,17138.0296267102,21780.7687267211,17268.1851241291,17498.7879276528 +1670803200,17089.14,17242.48,16873.53,17210.86,18540.9636447308,17143.2136690437,21776.2061038251,17247.3828031067,17447.9785360725 +1670889600,17213.08,18041,17092.27,17772.5,18518.2197170945,17188.0060658445,21772.2087808521,17234.8084360354,17402.7146571292 +1670976000,17774.66,18376.59,17664.15,17804.11,18496.4677832269,17231.8601439194,21768.247008433,17229.3850910972,17362.8150855952 +1671062400,17806.08,17940.77,17277.88,17360.37,18469.7768800761,17241.0074337669,21763.8461589273,17226.0556880128,17326.2987097523 +1671148800,17360.36,17513.47,16546.38,16633.41,18432.0072906558,17197.7588456289,21758.7239022511,17218.1933483894,17290.2705655086 +1671235200,16634.35,16798.29,16587.81,16786.54,18394.4867895561,17168.4884216593,21753.7596455291,17207.9935428206,17255.4034560695 +1671321600,16786.93,16861.56,16672.38,16745.81,18353.2654767938,17138.4023087871,21748.7596800854,17195.6068004645,17221.5765254484 +1671408000,16744.57,16818.22,16270.67,16440.54,18308.7854595852,17088.7286961408,21743.4599233293,17178.8889846742,17187.676287399 +1671494400,16438.69,17043.67,16399.4,16902.24,18271.3149396646,17075.4544912749,21738.6264217896,17162.7438363639,17155.5805016341 +1671580800,16900.14,16923.14,16731.17,16825.25,18234.7718443323,17057.6450167906,21733.720878791,17146.5438278669,17124.9662127843 +1671667200,16824.47,16866.54,16563.79,16819.09,18202.9372213816,17040.6647481191,21728.8140833354,17130.3854797377,17095.7998040821 +1671753600,16818.25,16936.17,16742.61,16779.05,18171.3329960739,17022.0430952558,21723.8722106883,17114.0549543862,17067.9171089218 +1671840000,16780.26,16858.53,16777.58,16840.65,18141.7667546688,17009.1315936071,21718.9967738258,17098.256470056,17041.5468925804 +1671926400,16840.57,16852.3,16714.32,16828.91,18112.286745289,16996.3034790656,21714.1144833443,17082.9307753825,17016.6158056001 +1672012800,16829.53,16930.6,16796.77,16914.61,18084.3185832281,16990.4885637396,21709.3226307375,17068.8673817206,16993.4192614675 +1672099200,16917.32,16964.08,16590.79,16697.6,18055.2715071391,16969.6408508304,21704.3188983239,17054.0880492698,16971.0778875906 +1672185600,16697.2,16764.81,16460.01,16538.67,18024.674448508,16938.9644855411,21699.1614850481,17037.4735748975,16949.0031764835 +1672272000,16539.03,16649.8,16485.28,16629.82,17996.395275893,16916.959681394,21694.1002256423,17020.2809432018,16927.6000239222 +1672358400,16629.8,16658.72,16332.92,16597.22,17967.7018776459,16894.2007146448,21689.0114714009,17002.4794741884,16906.769048715 +1672444800,16596.97,16629.01,16467.08,16528.89,17936.6911467566,16868.198016539,21683.8595767397,16983.7403141921,16886.2822321769 +1672531200,16530.33,16621.81,16491.36,16613.48,17907.2326712552,16850.0672707912,21678.7972808972,16965.1229790639,16866.5071123007 +1672617600,16613.59,16781.17,16549.51,16668.94,17878.9823439809,16837.1746904417,21673.7954108594,16947.2462478322,16847.6672867617 +1672704000,16666.94,16768.58,16598.88,16670.73,17850.5182163418,16825.3272113962,21668.8003218634,16930.1488182799,16829.7611369717 +1672790400,16670.41,16983.62,16650.05,16849.16,17823.4880112455,16827.023621554,21663.9883655207,16915.3827977471,16813.4506987861 +1672876800,16848.84,16873.96,16750.9,16825.82,17796.140818537,16826.9379481624,21659.1579106738,16902.4606853813,16798.5737524917 +1672963200,16825.98,17032.24,16673.14,16950.52,17769.7672296894,16835.7344785033,21654.4567797706,16892.2452469229,16785.5354986563 +1673049600,16951.53,16977.59,16899.87,16944.73,17743.2528638622,16843.4927443486,21649.7545617342,16884.2948201519,16774.2069753887 +1673136000,16946.8,17164.44,16913.17,17124.86,17719.4123167052,16863.5203742873,21645.2368812369,16879.833704456,16765.1658158079 +1673222400,17126.45,17397.21,17106.94,17179.7,17696.3954575965,16886.0259374286,21640.7784637858,16878.7558548897,16758.4587719973 +1673308800,17179.19,17492.41,17149.74,17443.89,17676.5791277394,16925.734520346,21636.5882664445,16882.7545593517,16754.9103715687 +1673395200,17442.9,17992.04,17311.01,17941.69,17661.8213749357,16998.0499016566,21632.8992589748,16895.1984832607,16756.1452869013 +1673481600,17946.85,19109.16,17907.18,18852.7,17657.977378482,17130.0632937247,21630.1234922029,16922.3580842939,16765.1923886988 +1673568000,18855.18,19994.7,18720.22,19932.48,17668.7788358142,17329.538405345,21628.4285552731,16970.7237688502,16785.4308426383 +1673654400,19934.34,21367.25,19900.36,20959.43,17693.5271466677,17587.9129109609,21627.7606233059,17044.9951094573,16819.7107407982 +1673740800,20962.42,21057.31,20550.57,20884.18,17718.3940427474,17822.5401325459,21627.0182281773,17139.2862130762,16866.4246047559 +1673827200,20877.28,21465.41,20626.97,21189.86,17747.4815357061,18062.224867838,21626.5817669129,17251.8747887223,16925.4931760004 +1673913600,21189.6,21615.85,20857.94,21140.12,17776.1828458663,18281.3084444057,21626.0960807146,17378.1132314075,16995.4551134969 +1674000000,21141.05,21645.96,20384.36,20676.07,17799.596839196,18451.7667947062,21625.1475692658,17510.4783963994,17073.3676372688 +1674086400,20673.54,21194.29,20649.06,21085.41,17828.08991439,18639.2286633026,21624.6086922031,17650.2783346539,17159.8063190834 +1674172800,21083.73,22752.89,20871.18,22679.14,17876.2236176328,18926.788241084,21625.6615422658,17808.7636460712,17259.738187945 +1674259200,22676.08,23380.23,22442.38,22785.95,17925.3897345535,19201.4821225817,21626.8199808692,17982.1745164517,17372.0419702317 +1674345600,22787.22,23083.93,22306.21,22717.7,17973.9557124976,19451.7653698978,21627.9091216923,18165.775405518,17494.9839317419 +1674432000,22715.43,23171.41,22514.87,22921.29,18024.9534483024,19698.7250070244,21629.2004405263,18357.932326885,17627.9641196563 +1674518400,22921.4,23161.74,22466.49,22638,18071.8636468851,19907.9416470743,21630.2076317511,18553.0180969008,17768.5570877571 +1674604800,22636.48,23821.58,22328.42,23056.8,18123.710681615,20132.0763626646,21631.6319496952,18752.4473555225,17917.166154038 +1674691200,23068.83,23286.54,22860.96,23011.11,18175.4055575103,20337.0050425716,21633.0092284361,18953.3309672418,18072.376027907 +1674777600,23017.09,23501.87,22532.21,23080.06,18228.0902328443,20532.254804175,21634.4539721666,19154.2705288887,18233.2997392953 +1674864000,23080.26,23190.27,22891.61,23031.1,18279.8491769233,20710.1217942065,21635.8483915139,19353.0958018108,18398.6588934424 +1674950400,23032.78,23955.86,22981.3,23750.97,18339.953786783,20926.568382579,21637.9601409723,19554.6859687372,18570.1703603307 +1675036800,23747.5,23802.62,22505.55,22832.84,18387.8895140808,21062.2561776211,21639.1531158278,19748.8710914149,18743.1962498443 +1675123200,22835.22,23313.21,22726.7,23132.21,18438.639002163,21209.5948188886,21640.6437923231,19937.8734511056,18918.084910546 +1675209600,23134.83,23808.19,22770.86,23729.85,18496.5061043964,21388.9857647241,21642.7296676978,20126.1445694939,19096.2743905533 +1675296000,23730.77,24264.14,23376.85,23491.99,18549.8295253299,21538.6769236551,21644.5759797442,20310.1303073962,19275.9129197318 +1675382400,23503.23,23719.33,23214.88,23437.07,18601.927507716,21673.8039267004,21646.3656159813,20488.5252241188,19455.9915344279 +1675468800,23430.62,23584.32,23264.96,23332.69,18653.7922359256,21791.8828990017,21648.049251849,20659.8761081098,19635.398620462 +1675555200,23330.84,23428.75,22761.44,22938.34,18700.6769290207,21873.4873433648,21649.3374854795,20820.5415929568,19812.0246048269 +1675641600,22939.02,23154.83,22631.11,22764.17,18745.9018670626,21936.8858457905,21650.4505406104,20969.5217338246,19984.7812435083 +1675728000,22762.97,23344.44,22749.69,23250.93,18798.4368178186,22030.4190822104,21652.0484684165,21111.8084743048,20155.1832901047 +1675814400,23250.06,23445.5,22679.71,22966.38,18848.4471071096,22097.0404765699,21653.3607045021,21244.898722766,20321.7129141885 +1675900800,22966.96,23030.64,21696.5,21797.75,18884.7581206371,22075.7370775832,21653.5048635969,21359.1700639403,20479.6574246382 +1675987200,21797.02,21937.83,21463.12,21635.15,18920.2303081572,22044.3762323946,21653.4865379966,21455.5657865854,20628.5362970255 +1676073600,21633.76,21906.05,21610.5,21864.96,18959.0590189397,22031.6054432028,21653.6976743053,21538.4087402943,20769.4259487964 +1676160000,21865.3,22088.75,21640.38,21787.3,18997.0654257519,22014.2158610457,21653.831063628,21608.7144525749,20902.1803516591 +1676246400,21787.57,21900.01,21370.29,21789.63,19037.4649599482,21998.2299123464,21653.9666460594,21668.1182627422,21026.9986791494 +1676332800,21790.36,22325.35,21543.63,22211.03,19086.7689472906,22013.3769535207,21654.5228212842,21721.6825467226,21145.6756660625 +1676419200,22209.55,24374.94,22054.17,24330.81,19166.777116991,22178.3310856396,21657.1948416434,21788.3046177492,21266.2902064559 +1676505600,24335.35,25262.85,23511.67,23519.85,19242.2921120832,22273.81996657,21659.0545271604,21858.0827320985,21385.1596721996 +1676592000,23519.6,25017.98,23354.04,24578.37,19334.636486129,22437.8570900013,21661.9691883524,21939.0047156035,21505.9808233048 +1676678400,24576.19,24870.82,24434.94,24638.27,19425.1766765505,22594.4817667847,21664.9407440312,22028.9129246363,21628.3576637772 +1676764800,24637.8,25191.11,24198.25,24288.51,19512.4881942574,22715.0621466233,21667.5601305162,22122.4131960717,21750.3750000019 +1676851200,24283.39,25118.22,23857.23,24841.34,19607.0811586654,22866.4099141371,21670.7288504109,22222.8394118678,21873.6902691242 +1676937600,24843.1,25259.72,24159.75,24449.26,19696.9492537922,22979.0766695303,21673.5029517329,22324.7059451936,21996.2468369927 +1677024000,24448.47,24468.75,23590.24,24186.54,19782.5758207696,23065.0235175075,21676.0119822324,22424.6056561403,22116.6542981769 +1677110400,24187.82,24598.44,23622.71,23943.19,19864.5977492295,23127.5311227199,21678.2755456757,22519.919974496,22233.7217275904 +1677196800,23945.29,24130.06,22759.88,23190.5,19937.3605033356,23132.013226968,21679.7853591822,22604.1311521397,22344.4486584628 +1677283200,23191.08,23219.1,22747.36,23164.72,20009.5786442898,23134.3412844573,21681.2679263835,22678.2570356782,22448.8586977733 +1677369600,23164.52,23681.32,23064.16,23558.98,20086.6329940339,23164.5669304119,21683.1426448104,22746.8533216914,22548.5834896646 +1677456000,23559.27,23889.05,23118.81,23492.91,20162.8874665678,23187.9382835405,21684.9495268435,22809.7363045621,22643.3953054636 +1677542400,23491.06,23597.72,23037.29,23136.03,20235.0738251073,23184.2434687651,21686.398293851,22864.2902629383,22732.0061508426 +1677628800,23142.91,23987.86,23034.79,23638.25,20313.3264306034,23216.5595063093,21688.3470337092,22915.8619711853,22816.505163596 +1677715200,23634.19,23797.66,23201.7,23467.3,20387.7949395413,23234.4071332716,21690.1231504809,22963.0565669833,22896.2773011984 +1677801600,23468.8,23478.5,21997.01,22394,20447.6849543495,23174.5872262819,21690.8259051357,22996.9637629675,22967.3701355773 +1677888000,22393.97,22665.46,22163.98,22349.12,20506.6834132146,23115.8307370229,21691.4831497087,23019.2584461356,23030.0836712635 +1677974400,22348.79,22654.3,22205.83,22428.98,20566.387146367,23066.940924481,21692.2194707636,23032.4972629204,23085.1951013024 +1678060800,22428.86,22598.04,22268.77,22417.1,20625.504967667,23020.6854583841,21692.9431956118,23038.0687587202,23133.0978100159 +1678147200,22415.57,22552.12,21927.51,22201.83,20681.3610570914,22962.3995926182,21693.4512710952,23035.423303819,23173.4108984909 +1678233600,22203.58,22282.92,21588.56,21701.47,20730.3119021997,22872.6470334539,21693.4592770398,23021.71522593,23204.7379334416 +1678320000,21699.33,21842.13,19858.83,20346.9,20760.8735494508,22692.8651793511,21692.1148645897,22987.3146227228,23222.609407289 +1678406400,20349.67,20350.45,19559.36,20222.68,20788.3904732639,22517.0381999905,21690.6477724532,22935.1140097606,23227.6327906772 +1678492800,20222.45,21214.12,19970.53,20726.52,20822.2365205255,22389.589695633,21689.685181795,22873.0763277425,23222.784154943 +1678579200,20718.5,22461.4,20521.97,22243.34,20874.6678430048,22379.1796897636,21690.2379539182,22816.594605907,23214.64911215 +1678665600,22248.46,24654.18,21944.36,24218.48,20951.6973117917,22510.100488896,21692.7621651741,22782.2465731524,23210.996494463 +1678752000,24225.5,26534.12,24055.05,24758.48,21034.7636309751,22670.1394127785,21695.822995318,22771.0728087968,23213.4981734842 +1678838400,24759.19,25289.44,23932.29,24376.05,21112.7827757579,22791.5655747187,21698.4989492219,22775.7548789801,23220.1772740811 +1678924800,24373.6,25222.15,24217.9,25051.83,21198.6622836561,22952.450462935,21701.8469340385,22799.2828645728,23233.2053287634 +1679011200,25052.31,27826.18,24948.39,27454.54,21314.3238978942,23272.9077350173,21707.5904555541,22858.8826294875,23261.0666383738 +1679097600,27457.67,27777.85,26665.21,26976.15,21422.8452425863,23536.503317541,21712.8506154049,22943.5075196016,23300.5882690553 +1679184000,26984.87,28473.58,26898.89,28051.94,21544.5000219525,23857.9106351006,21719.1795983443,23057.2887128243,23354.6920541122 +1679270400,28068.32,28569.81,27227.59,27806.91,21662.4917114798,24138.9991282351,21725.2576230437,23191.9546879111,23421.0085437199 +1679356800,27803.43,28518.96,27404.26,28190.61,21784.6490117915,24427.3914751255,21731.7126676736,23345.9552103816,23499.6978924712 +1679443200,28185.77,28919.3,26670.82,27319.63,21894.9698529287,24633.2600746418,21737.2916761585,23507.0013850927,23586.1218876333 +1679529600,27318.69,28820.41,27187.2,28342.19,22017.114427439,24897.260502985,21743.8860442564,23681.291518999,23683.1580116894 +1679616000,28344.44,28662.2,27032.26,27493.31,22128.8800116555,25082.0464636273,21749.6263018738,23857.6322864833,23786.3319298214 +1679702400,27494.34,27816.82,27186.67,27492.9,22241.5206602648,25253.6502358969,21755.3604190389,24034.1321252572,23894.7306188167 +1679788800,27491.6,28228.18,27446.93,28001,22361.0843861853,25449.2057004456,21761.5961011621,24213.6294295868,24009.4192320379 +1679875200,27995.81,28047.64,26527.13,27140.89,22468.9311814791,25569.6192398469,21766.966818823,24386.6055794087,24126.1818581918 +1679961600,27140.74,27513.85,26634.82,27274.78,22577.8648488327,25690.9920293398,21772.4658508671,24553.8789475692,24244.9068338069 +1680048000,27276.35,28639.76,27259.27,28349.29,22699.6756366139,25880.2088161332,21779.0321895492,24724.3035215693,24369.0366265392 +1680134400,28360.29,29182.1,27701.63,28012.29,22815.7202741299,26031.9696628279,21785.2555096422,24892.9340061814,24496.3703395068 +1680220800,28017.76,28650.35,27524.59,28475.84,22936.9485061309,26205.9235602627,21791.9354272968,25062.6380147635,24627.9052098502 +1680307200,28476.44,28816.28,28236.32,28469.31,23057.2996367304,26367.0306724547,21798.6021560943,25231.7017030975,24762.7626654998 +1680393600,28469.51,28538.1,27875.95,28189.84,23173.3343918988,26496.7776487914,21804.9832043524,25396.3611463091,24899.095588536 +1680480000,28187.21,28514.75,27231.58,27811.63,23283.6826088078,26590.3684124114,21810.9802747178,25552.7042905546,25034.8354687804 +1680566400,27809.95,28443.67,27631.76,28177.64,23397.7848043954,26703.3498888624,21817.3367840423,25704.018211368,25170.9022943836 +1680652800,28176.04,28786.04,27819.1,28180.65,23511.0369537751,26808.5036313112,21823.6899521928,25849.9125881624,25306.765806836 +1680739200,28179.83,28195.75,27709.94,28048.62,23622.0640263155,26896.7747119512,21829.9049578002,25988.9457720023,25441.4316509292 +1680825600,28054.16,28118.84,27792.58,27928.24,23730.6492130347,26970.1940763895,21835.9935702332,26120.0917565695,25574.0385321405 +1680912000,27928.86,28173.63,27887.55,27961.12,23838.290073122,27040.7278620243,21842.10893134,26243.8995328006,25704.3849151983 +1680998400,27959.95,28547.59,27820.74,28336.98,23949.40655349,27132.9946685031,21848.5934475998,26363.8491621982,25833.5901260675 +1681084800,28343.16,29795.87,28175.97,29655.48,24075.666977409,27312.5443557192,21856.3878875898,26490.9858942094,25966.2423058202 +1681171200,29655.9,30578.14,29612.84,30232.31,24207.4259455716,27520.3723266609,21864.7504559233,26627.9228712395,26103.7257198952 +1681257600,30233.95,30506.38,29676.96,29905.89,24333.334932775,27690.1727004226,21872.7787754342,26768.9168133916,26243.8777658475 +1681344000,29908.39,30628.71,29880.12,30407.47,24463.7026303392,27883.5890402999,21881.2998597534,26916.3655570153,26387.8363996728 +1681430400,30409.77,31046.25,29997.74,30495.03,24593.0448658181,28069.4705602608,21889.899856976,27068.606881489,26535.0649920859 +1681516800,30495.41,30622.66,30242.09,30324.64,24718.2766264032,28229.9927890598,21898.3211495662,27222.0019508715,26684.0860997586 +1681603200,30323.78,30566.66,30152.03,30325.58,24841.1956260699,28379.1560066057,21906.7349727913,27375.0282598959,26834.1881193347 +1681689600,30324.12,30336.63,29256.77,29450.35,24950.7691627497,28455.4032473964,21914.2665609913,27518.8621788189,26981.4072031617 +1681776000,29451.47,30490.7,29116.73,30394.56,25069.34040254,28593.4317956879,21922.7333342516,27662.052653584,27128.9981338706 +1681862400,30392.64,30424.14,28598.8,28821.81,25165.1961291499,28609.68768215,21929.6214116813,27789.8799036588,27270.4328010814 +1681948800,28819.72,29100.47,28000.58,28248.1,25250.2335148367,28583.9499882889,21935.9298166843,27899.003363577,27403.5340474269 +1682035200,28250.35,28368.88,27144.01,27263.11,25318.7798929478,28489.9330266049,21941.2485037148,27983.2810603208,27524.7881862362 +1682121600,27263.69,27897.05,27144.59,27822.84,25389.856614834,28442.4495614781,21947.1207181573,28051.2285481845,27636.8583173015 +1682208000,27823.46,27823.49,27343.58,27596.46,25454.0695080887,28382.2322990604,21952.7610506663,28103.1969420916,27739.2472199925 +1682294400,27596.46,28003.12,26972.79,27522,25514.4664408299,28321.0012432041,21958.3214105471,28140.9265459479,27832.1102014527 +1682380800,27522.43,28404.25,27197.57,28306.95,25583.6363018493,28320.0010802732,21964.6599174829,28173.401562987,27918.8707120025 +1682467200,28308.65,30039.06,27248.05,28430.87,25652.8090933781,28327.8926939966,21971.115818451,28202.3442000333,28000.1879340824 +1682553600,28431.79,29895.35,28393.18,29484.15,25734.1192843494,28410.1947137713,21978.6168745606,28237.2359178015,28080.1950855436 +1682640000,29484.73,29607.75,28912.16,29337.1,25812.3323074226,28476.1715312153,21985.9636260157,28275.4490478244,28158.1461220026 +1682726400,29338.13,29469.7,29053.94,29250.74,25886.4745305001,28531.305063435,21993.2168201166,28315.3177690906,28233.5953779946 +1682812800,29252.33,29972.89,29109.83,29248.47,25957.0734697376,28582.3526308618,22000.4605062062,28356.1842510003,28306.4620754811 +1682899200,29250.13,29347.7,27665.95,28084.93,26012.472303772,28546.946249437,22006.5352751967,28387.4597931722,28372.2967726979 +1682985600,28086.08,28916.22,27890.1,28698.86,26075.1551144457,28557.759420898,22013.2169303112,28415.8818600895,28433.7671228545 +1683072000,28698.78,29280.29,28140.32,29044.22,26141.4589679644,28592.3855270363,22020.2367238138,28444.6962479185,28492.3162487439 +1683158400,29046.46,29387.66,28691.3,28870.25,26205.324489476,28612.1638300402,22027.0758160759,28472.0803749376,28547.314467066 +1683244800,28872.99,29715.39,28822.95,29554.64,26276.6340355496,28679.2489779346,22034.5913790227,28503.9674887765,28601.4404524388 +1683331200,29552.32,29870.31,28413.5,28962.11,26340.1445595376,28699.3829336818,22041.5078530624,28534.1612398182,28652.3264096938 +1683417600,28961.42,29241.35,28552.88,28594.28,26398.5025621526,28691.9017409738,22048.0501780885,28559.521063212,28698.6666296229 +1683504000,28596.43,28813.39,27380.29,27810.71,26446.5558858415,28629.1787988446,22053.80365047,28573.9110675428,28737.7136339465 +1683590400,27808.47,28003.3,27441.75,27695.74,26492.259982431,28562.7369280931,22059.4365918492,28578.1580216378,28769.5059106523 +1683676800,27649.6,28334.24,26821.23,27620.45,26538.0386818533,28495.6652503733,22064.988739303,28573.3728079594,28794.2559141372 +1683763200,27621.53,27647.44,26734.25,26993.22,26574.9047055016,28388.7216850746,22069.9091134573,28555.7760387211,28810.1003469518 +1683849600,26989.42,27104.83,25823.6,26809.46,26608.6584111576,28276.3103508849,22074.6411080517,28526.2028855978,28817.0426352423 +1683936000,26811.45,27072.19,26705.9,26788.7,26642.7440616062,28170.4227289171,22079.3476512935,28486.8530627562,28815.7350650143 +1684022400,26794.1,27205.8,26595.63,26930.75,26678.9131860177,28082.1832264121,22084.1913190246,28441.0282220301,28807.4204326338 +1684108800,26931.05,27673.93,26736.44,27175.18,26718.5729546533,28017.6230311265,22089.2741911142,28392.3856249649,28793.6489432192 +1684195200,27171.37,27304.3,26867.56,27041.17,26757.1320268128,27948.1194212816,22094.2181920882,28340.68690704,28774.4305070008 +1684281600,27042.18,27509.15,26563.97,27409.77,26800.2547144263,27909.7998841976,22099.5252692825,28290.1073231295,28751.6927584661 +1684368000,27413.52,27487.25,26373.38,26829.1,26835.561277994,27832.8760171846,22104.2473036261,28235.865943211,28723.6280141816 +1684454400,26830.41,27190.04,26646.51,26895.42,26872.6089548277,27766.1482021354,22109.0308377293,28179.6542610107,28691.0456211983 +1684540800,26894.17,27163.75,26843.35,27116.5,26913.624072847,27719.9064539526,22114.0303234558,28124.2187459695,28655.2875899786 +1684627200,27118.52,27283.01,26679.01,26753.31,26949.0054009008,27651.1044320719,22118.6622067031,28066.7613169662,28615.3874508004 +1684713600,26753.38,27102.41,26535.85,26858.63,26983.9743132862,27594.6963591969,22123.3946175396,28009.0476480683,28572.2457754249 +1684800000,26858.37,27508.18,26812.44,27228.43,27022.0421676373,27568.625638622,22128.4915139359,27954.8189200595,28527.6975575377 +1684886400,27226.84,27231.1,26070.54,26329.53,27046.6759526158,27480.4272132169,22132.6858546831,27896.1552513231,28478.6361130825 +1684972800,26329.56,26622.08,25873.34,26482.89,27070.1283621102,27409.4228381337,22137.0291232739,27835.6758897343,28426.2095762054 +1685059200,26484.94,26943.58,26342.33,26718.79,27092.6697607823,27360.2638168622,22141.6035794239,27776.2648991501,28371.7928638179 +1685145600,26720.12,26914.15,26566.94,26874.67,27117.6130293211,27325.6994065788,22146.3290998905,27719.5939831338,28316.3493289174 +1685232000,26876.21,28264.89,26789.2,28082.01,27155.8258646675,27379.5333491557,22152.2553175018,27676.1043535403,28264.7349043959 +1685318400,28082.01,28462.73,27544.2,27751.78,27190.0695967636,27406.0297449491,22157.8459148311,27640.980045372,28215.5718919273 +1685404800,27751.3,28056.81,27571.2,27707.09,27224.2859347899,27427.4591161937,22163.3863117258,27612.6551146534,28168.6687535318 +1685491200,27705.22,27842.37,26849.81,27219.57,27252.0803701981,27412.661636374,22168.4344343124,27585.9543424654,28122.1694512195 +1685577600,27223.41,27354.2,26619.38,26825.56,27276.1789355888,27370.8719324424,22173.0841349971,27557.4144551404,28074.7273503739 +1685664000,26824.03,27305.16,26509.53,27252.22,27306.5334404708,27362.4263264,22178.1551731677,27531.2966326094,28028.2129554383 +1685750400,27252.19,27339.43,26929.04,27075.63,27335.4870739604,27342.0122569674,22183.0448399234,27505.8706260314,27982.0561866526 +1685836800,27074.82,27469.71,26963,27123.99,27365.9576148334,27326.4935034762,22187.9779077073,27481.6516311361,27936.583559218 +1685923200,27120.98,27134.94,25392.86,25732.88,27378.4286014985,27213.0606115106,22191.5171581425,27446.6092079365,27886.6553968852 +1686009600,25734.58,27364.77,25350.48,27238.18,27408.9442517142,27214.8486014307,22196.5557750619,27415.9783219171,27838.5235097703 +1686096000,27242.36,27392.77,26137.44,26351.68,27428.389612226,27153.4085405247,22200.7042747494,27381.5779946335,27788.8692556718 +1686182400,26350.6,26826.33,26224.33,26512.76,27450.0274143838,27107.8073853345,22205.0094557403,27345.7664615983,27738.6178648241 +1686268800,26511.1,26786.7,26287.48,26488.23,27470.6782958655,27063.7060681319,22209.2858475224,27308.8914689905,27687.9172395536 +1686355200,26488.73,26537.44,25399.63,25858.78,27484.1597343184,26977.9398216645,22212.9295232662,27266.0189179648,27634.6200541683 +1686441600,25858.78,26215.28,25658,25940.01,27499.8911265128,26904.0603138215,22216.6506616379,27219.2850676482,27579.4550918446 +1686528000,25939.77,26108.74,25625.8,25912.41,27514.4921375381,26833.4749663266,22220.3405288067,27169.5399703797,27522.6852519183 +1686614400,25910.95,26428.18,25721.55,25936.28,27528.4883583934,26769.6129198107,22224.0505439351,27117.9539326722,27464.751506684 +1686700800,25936.51,26086.45,24824,25130.06,27531.7318004391,26652.9100751001,22226.9519203242,27058.3297519501,27402.9270755116 +1686787200,25128.85,25747.2,24770.53,25582.77,27540.2916966038,26576.7378518715,22230.3023882046,26996.5216661546,27339.4857885296 +1686873600,25581,26509.64,25170.56,26336.15,27557.9915218833,26559.6128866588,22234.4016898408,26939.9639962346,27277.6496660335 +1686960000,26336.15,26804.75,26179,26515.09,27577.2522547832,26556.4437620364,22238.6755534259,26889.7616110549,27218.1914690063 +1687046400,26516.97,26698.05,26260.37,26342.29,27590.4252742761,26541.2003667589,22242.7726254573,26843.7278330024,27160.4810055087 +1687132800,26341.04,27051.86,26266.18,26844.45,27604.3315163989,26562.7855772325,22247.3669663522,26805.8625242984,27106.4839052752 +1687219200,26844.29,28417.53,26652.1,28317.58,27630.0035794306,26687.6912747215,22253.4275016116,26787.7795081102,27061.6513068497 +1687305600,28317.8,30787.73,28279.49,30002.77,27670.9908956549,26923.6575024686,22261.1644892904,26800.695558282,27031.7370609419 +1687392000,30003.41,30501.31,29569.14,29898.58,27707.8430680814,27135.4115203233,22268.7897284274,26838.1018936618,27015.1922603343 +1687478400,29897.34,31441.74,29819.41,30705.83,27752.6381962174,27389.5527489172,22277.213317479,26902.3112567272,27013.9910610676 +1687564800,30703.32,30817.31,30271.37,30548.39,27791.2279812719,27614.3977592397,22285.4713073788,26986.6551134963,27026.2388838159 +1687651200,30547.68,31050.07,30287.33,30473.14,27824.0236408048,27817.882104124,22293.645922426,27086.1837785266,27050.4618197333 +1687737600,30473.86,30662.42,29928.15,30274.34,27854.0602188026,27992.7319799021,22301.6138928389,27195.6258654933,27084.7994966939 +1687824000,30274.11,31018.01,30233.26,30700.05,27887.4854279078,28185.4379979049,22309.9989392729,27315.957686189,27129.8698496563 +1687910400,30700.99,30720.21,29846.05,30083.26,27913.401226083,28320.5243520705,22317.7598073806,27438.8761565167,27182.2609693915 +1687996800,30083.03,30834.25,30046.42,30453.02,27943.5901446697,28472.3147001826,22325.8820974829,27566.0565211999,27242.5488883258 +1688083200,30453.04,31280.48,29452.19,30477.68,27974.9082395507,28615.0559513766,22334.020898929,27695.8568433629,27309.9276463407 +1688169600,30477.43,30658.91,30330.75,30594.48,28006.2977912114,28755.9507127299,22342.2681883344,27827.700195161,27383.9809791391 +1688256000,30593.98,30797.49,30181.35,30625.3,28039.2006235603,28889.0103882951,22350.5380144627,27960.3510068198,27463.9781250562 +1688342400,30626.82,31391.7,30587,31160.43,28078.228523419,29050.6892990606,22359.3338607887,28097.145438324,27551.1324266639 +1688428800,31163.68,31331.68,30635.73,30776.54,28111.5893274857,29173.5347918237,22367.7376473297,28232.8476019118,27643.0565559079 +1688515200,30776.21,30875.89,30196.99,30507.27,28142.1318245281,29268.4696310741,22375.8642027809,28364.1502856365,27737.980990735 +1688601600,30506.27,31552.28,29865.33,29911.02,28163.714426416,29314.2061577927,22383.3873452376,28485.5440510516,27833.0405622291 +1688688000,29908.33,30450.83,29721.72,30352.3,28188.8041363795,29388.0973405647,22391.3435530108,28601.5511787562,27929.5312068596 +1688774400,30351.86,30389.7,30066.7,30299.25,28213.3552039346,29452.9528911461,22399.2388518389,28711.6653149132,28026.7665409721 +1688860800,30299.25,30453.27,30080.24,30174.62,28235.5196786701,29504.3209217352,22407.0018366539,28814.90203954,28123.8454216277 +1688947200,30175.34,31042.51,29965.03,30423.95,28260.9531228417,29569.7798210579,22415.0060033525,28913.7437223062,28221.3560944863 +1689033600,30422.95,30809.56,30320.36,30631.36,28289.3555041252,29645.3427536561,22423.2092579705,29009.9081914185,28319.6768577353 +1689120000,30633.89,30982,30227.25,30396.78,28314.7986566441,29698.8298129698,22431.1701164046,29101.0109404278,28417.4817065608 +1689206400,30395.64,31829,30258.46,31482.21,28352.7855989019,29825.7702358815,22440.2067261653,29196.545166796,28518.5440583482 +1689292800,31483.23,31644.47,29940.08,30333.56,28375.9374552877,29861.9145464868,22448.0874950224,29284.9694710393,28617.8676788797 +1689379200,30332.66,30403.97,30267.04,30299.26,28398.2392076285,29893.0446539262,22455.9261503596,29366.4835895103,28715.0958017627 +1689465600,30300.6,30457.63,30078.23,30250.49,28419.1195660634,29918.4874976498,22463.7082872931,29441.1864907352,28809.8552647568 +1689552000,30248.97,30342.59,29678.15,30154.32,28437.3544831444,29935.273978627,22471.386637821,29508.8087154684,28901.6349599802 +1689638400,30152.07,30243.7,29522.25,29868.81,28449.8639810798,29930.5430941994,22478.7722674302,29567.5529966193,28989.2634870916 +1689724800,29863.81,30201.29,29770.34,29921.83,28460.4475601362,29929.9228989821,22486.2034586547,29618.9439930141,29072.9631042296 +1689811200,29920.35,30419.8,29571.85,29813.01,28469.1914739323,29921.601076777,22493.5185840279,29662.9005285866,29152.340855231 +1689897600,29813.51,30063.87,29738.7,29917.77,28480.040049703,29921.3283819754,22500.9309989188,29701.2664344016,29227.8600538516 +1689984000,29917.56,30003.12,29645.97,29792.96,28489.2168213507,29912.1911622087,22508.2114021977,29733.6223680195,29299.0922706397 +1690070400,29792.83,30351.55,29749.59,30092.75,28503.1205273002,29925.0432816818,22515.7838487237,29763.3458541707,29367.2651016788 +1690156800,30091.5,30102.82,28874,29189.1,28507.1757325653,29872.6590777442,22522.4465255701,29782.8348742419,29428.968790644 +1690243200,29188.72,29378.38,29065.48,29236.54,28513.3518722839,29827.3803282446,22529.1499147282,29794.1457254652,29484.6995074171 +1690329600,29235.78,29690.93,29111.01,29358.33,28523.3294379654,29793.9934781118,22535.9682070139,29799.6835390733,29535.2145577171 +1690416000,29358,29572.18,29087.68,29225.73,28532.1832417589,29753.5446681713,22542.6473032827,29799.2777632172,29580.265905126 +1690502400,29224.23,29535.39,29129.53,29328.09,28546.1349212473,29723.2609429734,22549.4219279106,29794.8706368168,29620.534510291 +1690588800,29327.86,29412.87,29267.84,29369.53,28562.093236863,29698.0824892569,22556.2311626467,29787.567974112,29656.4314455489 +1690675200,29369.79,29456.1,29053.2,29288.27,28577.9936347983,29668.9121692774,22562.9524685574,29777.243838827,29687.885990867 +1690761600,29288.05,29524.5,29122.39,29240.57,28591.9304971123,29638.4229126879,22569.6194399263,29764.1108619178,29714.9769469098 +1690848000,29237.8,29722.98,28612,29705.37,28611.3875364533,29643.1881846349,22576.7438139198,29752.7986868209,29739.7282376204 +1690934400,29706.04,30033.5,28930.67,29169.38,28623.104898282,29609.4626718284,22583.3259394295,29738.4487616191,29760.2212733001 +1691020800,29170.04,29408.19,28952.98,29185.84,28633.1044719776,29579.3093475356,22589.9179270654,29721.8660522528,29776.8028787787 +1691107200,29185.76,29315.12,28788.03,29086.35,28641.063000263,29544.2206611694,22596.4040018408,29702.7297401202,29789.3673010246 +1691193600,29085.76,29117.94,28960.97,29054.56,28647.3717345991,29509.3667742281,22602.8518615652,29681.3832153481,29798.0886029606 +1691280000,29054.38,29168.51,28969.03,29053.48,28654.636156121,29476.9169015979,22609.2922054315,29658.3935686013,29803.2565303136 +1691366400,29053.25,29251,28669.11,29190.55,28664.5265212642,29456.5333984834,22615.8629706904,29635.4358159908,29805.6713054728 +1691452800,29192.57,30226.5,29122.34,29774.15,28682.7456437882,29479.1412450959,22623.0098452231,29617.7478399974,29807.7617329399 +1691539200,29775.65,30129.27,29365.49,29573.89,28700.1615673565,29485.885430719,22629.9496435512,29602.816970391,29808.7912576158 +1691625600,29573.92,29712.95,29317.25,29433.51,28714.8227821973,29482.157364559,22636.7423569538,29589.0698701538,29808.3160795088 +1691712000,29434.01,29537.54,29223.42,29407.86,28729.1523016525,29476.8689022632,22643.5026793666,29576.1937481815,29806.36906751 +1691798400,29407.86,29473.73,29361.72,29422.34,28744.4543551718,29472.9875526976,22650.2707091494,29564.270658471,29803.1373961619 +1691884800,29422.42,29451.93,29264.29,29289.76,28758.4035978689,29459.9454749636,22656.8996130658,29552.0885710193,29798.2418366854 +1691971200,29288.97,29667.77,29090.49,29419.22,28776.345250012,29457.0466488732,22663.6511522479,29540.9178684353,29792.331224462 +1692057600,29419,29467.16,29064.65,29176.89,28793.1173642157,29437.1051895321,22670.154007003,29528.5809091919,29784.599076996 +1692144000,29176.63,29232.71,28701.67,28707.5,28805.9230588315,29385.1721289366,22676.1817276219,29511.3333743029,29773.4569181078 +1692230400,28705.2,28758.96,25253.44,26635.04,28793.4450438919,29189.4186165621,22680.1342742646,29472.2791660772,29751.4105615354 +1692316800,26631.58,26824.09,25618.28,26053.12,28774.4705710059,28966.1778989299,22683.5018824206,29410.591878169,29717.272886547 +1692403200,26054.35,26267.78,25800.8,26097.91,28757.2489732943,28762.0155207886,22686.9108469284,29331.2050398255,29672.3700010265 +1692489600,26096.9,26295.77,25987.68,26196.16,28741.3746168355,28579.3787575746,22690.4145012662,29238.7925748936,29618.1577941773 +1692576000,26195.97,26251.06,25820.83,26129.39,28724.3710204397,28404.9893529612,22693.8479939872,29135.8857233678,29555.380361787 +1692662400,26129.39,26138.6,25361.73,26046.38,28705.8262515647,28237.1043047108,22697.195181033,29024.5172429649,29484.6895513753 +1692748800,26049.11,26809.42,25811.22,26434.24,28691.7497804166,28108.7770086263,22700.9262678607,28910.5031642461,29408.4898092331 +1692835200,26432.81,26572.6,25869.43,26172.62,28674.5273644848,27970.9619811375,22704.3924266523,28793.036561264,29326.5493284688 +1692921600,26173.37,26295.76,25773,26056.55,28655.6136806347,27834.694757648,22707.7392398623,28672.7416726643,29239.2273280464 +1693008000,26057.07,26126.94,25987.59,26016.25,28637.0722176319,27705.25844998,22711.0424758455,28550.811515851,29147.158935739 +1693094400,26016.25,26175.94,25971.85,26097.39,28619.2526570981,27590.8108955488,22714.4234244971,28429.2915293169,29051.4017936308 +1693180800,26096.39,26237.7,25866.55,26115.16,28601.3966347119,27485.7745437303,22717.8187392594,28309.3131125058,28952.6982453404 +1693267200,26114.91,28167.47,25924.34,27731.92,28604.1867313381,27503.2950974204,22722.8248465108,28205.6165926737,28857.776882708 +1693353600,27729.96,27770.58,27016.74,27309.12,28601.2294801375,27489.4737770061,22727.4038297086,28112.5564662417,28765.0779658756 +1693440000,27309.87,27567.37,25680.15,25941.91,28580.8000163171,27379.318689625,22730.6132109739,28017.2320977299,28669.5996184987 +1693526400,25940.2,26142.32,25328.92,25804.3,28559.5803521539,27267.2093704743,22733.6819973671,27919.6794102434,28571.4190583791 +1693612800,25804.98,25982.82,25744.1,25869.38,28538.1215726247,27167.7123295534,22736.8126961091,27821.6994241665,28471.3825570806 +1693699200,25870.88,26122.75,25811.1,25972.31,28516.8164540454,27082.623979707,22740.0430350418,27725.1047193692,28370.4143734819 +1693785600,25972.81,26088.32,25640.45,25816.11,28492.4660819778,26992.4739256822,22743.1141978161,27629.1343996852,28268.3851521471 +1693872000,25820.11,25880.96,25570.22,25787.15,28466.207573513,26906.6793598435,22746.1533804952,27534.2570428821,28165.6610370237 +1693958400,25787.07,26023.2,25393.3,25760.61,28440.7332489951,26825.1025147699,22749.1630311499,27440.8696153341,28062.5888036853 +1694044800,25760.83,26451.56,25611.45,26256.68,28422.2125484893,26784.6423846517,22752.664956065,27353.8036480729,27961.4605812988 +1694131200,26260.72,26439.6,25655.53,25909.39,28400.4578800565,26722.3422039779,22755.8166483248,27269.6887154774,27861.1815053316 +1694217600,25909.16,25934.72,25801.79,25899.53,28379.0297362814,26663.7746983448,22758.9553496369,27188.6434860721,27762.0208258205 +1694304000,25900.53,26031.15,25589.13,25839.44,28356.3440056718,26605.0988220568,22762.0309230535,27110.3048249366,27664.0309939521 +1694390400,25837.44,25887.9,24915.5,25163.39,28325.7368000939,26502.4784560135,22764.4284536304,27029.0257691746,27564.9295404972 +1694476800,25162.38,26547.45,25135.46,25842,28304.0889353835,26455.4658138746,22767.5011185875,26951.896726463,27467.7478388135 +1694563200,25842.09,26612.65,25775.61,26230.44,28288.5776492483,26439.4485494758,22770.9585364863,26882.2065860917,27374.1565085777 +1694649600,26231.34,26855.02,26144.21,26535.32,28274.613036938,26446.2726482087,22774.7168964075,26821.8744236356,27285.3550218944 +1694736000,26535,26892.09,26229.46,26611.11,28262.8119776992,26458.0057174108,22778.5471731284,26770.417722162,27201.5576702132 +1694822400,26611.45,26773.2,26466.96,26571.3,28249.9875195932,26466.0699676755,22782.3338791484,26726.3634608519,27122.5050896676 +1694908800,26571.02,26620.42,26418.76,26538.19,28236.6760207783,26471.2034481696,22786.0837472871,26688.4937270619,27047.967352093 +1694995200,26536.71,27442.36,26403.46,26770.2,28226.5556478614,26492.4859256887,22790.0615116413,26658.0449869875,26978.7181976352 +1695081600,26769.08,27497.13,26685.03,27225.68,28221.1054269378,26544.674441938,22794.4900583986,26637.9021583655,26916.2894946043 +1695168000,27227.53,27398.65,26820.42,27132.76,28213.5403769629,26586.534181096,22798.8214118124,26625.6087649878,26859.9861958257 +1695254400,27131.44,27164.37,26376.48,26572.29,28197.9026874035,26585.5202849086,22802.5888643388,26615.034179932,26807.3836175241 +1695340800,26573.54,26735.44,26490.49,26587.3,28181.6537368465,26585.6469644512,22806.3675414885,26606.0948143808,26758.4224331506 +1695427200,26586.55,26678.15,26521.75,26588.1,28162.2891508527,26585.8215707254,22810.1432447101,26598.5849227134,26712.9809484307 +1695513600,26587.6,26735.03,26153.72,26262.39,28135.6797144411,26562.7998164918,22813.5899875293,26589.5002865571,26669.7015304679 +1695600000,26252.14,26441.74,26000.2,26303.22,28107.3631564552,26544.3230094013,22817.0740540053,26579.5516224215,26628.7179722469 +1695686400,26303.72,26396.7,26097.08,26218.84,28075.61316328,26521.1552344285,22820.4703964971,26568.248690698,26589.6711928868 +1695772800,26219.08,26836.8,26107.62,26367.38,28041.8341599605,26510.2095631501,22824.011651243,26557.213417423,26553.1049001067 +1695859200,26367.62,27314.69,26336.07,27031.49,28011.6886721413,26547.314135462,22828.2124215858,26552.2348035084,26521.4541445762 +1695945600,27036.19,27240.9,26685.93,26916.78,27976.7790790443,26573.6125957886,22832.2944707383,26551.2903457368,26493.9873314665 +1696032000,26915.92,27099.06,26891.54,26969.98,27942.2508696001,26601.8258989782,22836.4255595326,26554.1328149561,26470.653345157 +1696118400,26968.53,28077.13,26963.24,27995.39,27919.5313682026,26701.0193394038,22841.5762990076,26568.9305894338,26455.0611495688 +1696204800,27998.64,28597.22,27317.08,27510.99,27891.3586202084,26758.6727881467,22846.2382682365,26589.2484420238,26444.7821541703 +1696291200,27511.48,27675.08,27173.87,27430.79,27862.6020506234,26806.5138731489,22850.8155107921,26613.2386591196,26439.1005668737 +1696377600,27429.79,27836.42,27217.61,27797.44,27838.8057196876,26877.0476732502,22855.7542488505,26643.2123023246,26439.0315262312 +1696464000,27797.03,28128.85,27365.54,27415.44,27810.0009327972,26915.3702643315,22860.3066650695,26674.5470458752,26442.6555505405 +1696550400,27416.24,28292.95,27184.63,27945.74,27788.7813365542,26988.711647707,22865.3839906699,26711.3149815727,26451.6475175106 +1696636800,27941.24,28032.39,27857.73,27971.96,27767.342701259,27058.6989463071,22870.4824252369,26752.4615685837,26465.6160800579 +1696723200,27972.46,28103.54,27718.43,27932.56,27745.498682902,27120.9000924949,22875.5364323134,26796.5141256376,26483.9365723388 +1696809600,27931.31,27996.38,27288.66,27598.69,27719.4975359302,27154.909023043,22880.2520557313,26839.6903521681,26504.9090040157 +1696896000,27601.19,27734.64,27302.7,27399.9,27691.1911539593,27172.3474012703,22884.7644979758,26880.053893374,26527.4780109125 +1696982400,27402.4,27478.38,26541.83,26876.35,27656.3667506687,27151.2784023147,22888.749719671,26913.2285758528,26549.4455455225 +1697068800,26873.79,26940.39,26555.68,26765.6,27621.668043163,27123.825938811,22892.6203890675,26939.2448602854,26570.3615685595 +1697155200,26762.74,27126.81,26677.91,26868.36,27589.3846021837,27105.6419561986,22896.5897901348,26960.0354286023,26590.6245499783 +1697241600,26868.36,26985.16,26809.25,26858.75,27557.9358669852,27088.0682668859,22900.5456334507,26976.2640447543,26610.1772052829 +1697328000,26859.25,27299.12,26818.04,27174.56,27529.9502896851,27094.2247203778,22904.8128337326,26991.3293911461,26630.1986809874 +1697414400,27171.56,30027,27126.96,28519.76,27519.1870000885,27195.6938589198,22910.4188289575,27016.9364025893,26655.6533652908 +1697500800,28520.76,28623.63,28090.8,28410.66,27507.2993773061,27282.1747545211,22915.9103010637,27050.0514337939,26685.571187414 +1697587200,28410.33,28988.64,28160.9,28330.4,27494.1901379759,27356.7870872898,22921.3161584118,27088.3631431622,26719.1566099994 +1697673600,28328.84,28927.49,28139.52,28736.56,27486.3055966329,27454.9988754073,22927.1221309779,27134.1300652453,26757.5047453466 +1697760000,28736.88,30239,28601.49,29685.66,27490.9026990622,27613.7766102884,22933.8698936727,27193.8394048434,26803.6499045105 +1697846400,29683.91,30359.58,29479.89,29923.51,27498.1714043132,27778.1826833375,22940.8483901571,27266.5590195435,26857.6530835552 +1697932800,29921.03,30246.43,29677.53,30004.11,27509.1421280745,27936.6234673065,22947.90039077,27350.0501878358,26918.9465977766 +1698019200,30005.36,34406.25,29906.47,33082.5,27559.3189498024,28302.9052887947,22958.018832731,27468.2931501305,26998.3040027776 +1698105600,33083.03,35194.81,32858.64,33927.73,27620.7137014246,28703.2784861855,22968.9710548271,27621.410701213,27097.0815824953 +1698192000,33931.07,35143.57,33700.75,34499.56,27689.9747443839,29115.8559231391,22980.4832604906,27806.8389077143,27215.4145320349 +1698278400,34497.31,34836.26,33739.77,34164.73,27755.7931319228,29475.2331413036,22991.6496761237,28014.3512833455,27349.9289001902 +1698364800,34160.14,34250.92,33388.4,33915.05,27818.7255775027,29791.2578643504,23002.5556612101,28236.0797831186,27497.7980481359 +1698451200,33914.02,34500.18,33876.05,34093.13,27884.3481151635,30097.4637267811,23013.6285537849,28469.1264229121,27658.0005811755 +1698537600,34092.6,34764.88,33952.85,34538.5,27955.8052846521,30413.5752473578,23025.1350510648,28713.3198704089,27830.5647362351 +1698624000,34541.25,34890.1,34093.25,34496.72,28027.3355190576,30704.2121656547,23036.5883468025,28964.2115228797,28013.6300521177 +1698710400,34495.65,34728.52,34067.72,34660.4,28101.3258194303,30985.8123317113,23048.1936265485,29219.8598023455,28206.2304716167 +1698796800,34661.82,35623.42,34103.12,35442.2,28186.7664291526,31303.0165596068,23060.5678730891,29483.969761531,28409.7802646283 +1698883200,35442.2,35971.45,34328.68,34939.68,28265.7913279403,31561.8730830045,23072.4280462819,29748.4137430359,28620.6821500301 +1698969600,34942.43,34945.85,34129.75,34737.62,28342.2088329706,31787.9217178586,23084.0746403556,30009.0997131702,28836.7515610786 +1699056000,34740.63,35277.07,34617.56,35091.58,28423.3033176247,32023.0750421697,23096.063002083,30267.5003333523,29058.0698469577 +1699142400,35091.88,35406.78,34498.53,35051.1,28503.8059027983,32238.6088759139,23107.9989790994,30521.43707085,29283.2021018554 +1699228800,35047.72,35293.56,34771.24,35045.77,28584.3546546221,32438.4216936542,23119.917717666,30769.4601194394,29510.9537553984 +1699315200,35054.27,35921.03,34534.67,35433.57,28670.0238905184,32651.615378016,23132.2117382244,31013.8263685941,29741.706483188 +1699401600,35430.43,36115.15,35105.04,35633.63,28758.2963530387,32863.8742109875,23144.6932254059,31254.8011873479,29975.0892168669 +1699488000,35631.88,37980.5,35553.71,36698.15,28859.7341464332,33136.7967172243,23158.2250738295,31500.1052473341,30214.0169519162 +1699574400,36703.63,37532.2,36341.89,37314.13,28970.0034426737,33434.1379445268,23172.3584099182,31752.1753322267,30459.4420851469 +1699660800,37321.88,37415.68,36670.88,37142.98,29078.2434269661,33698.1321183202,23186.306758069,32006.1531314267,30709.2390748573 +1699747200,37137.21,37231.65,36744.3,37067.98,29185.7763114012,33937.9967968444,23200.1662996826,32258.8564595904,30961.8096820755 +1699833600,37067.6,37432.62,36364,36489.44,29286.1105561137,34119.6076959669,23213.4343862204,32503.3254052351,31213.7795732528 +1699920000,36485.95,36752.82,34801.41,35551.12,29374.6328117031,34221.5022771665,23225.7524017938,32730.7950928201,31460.7049521778 +1700006400,35551.63,37965.5,35368.04,37881.01,29492.1321221738,34481.9848491742,23240.3842944338,32962.4545416469,31710.8805885679 +1700092800,37881.01,37949.44,35521.08,36161.56,29587.7772458172,34601.5364632991,23253.2848698375,33180.6940219138,31956.5922678715 +1700179200,36167.06,36841.5,35869.3,36627.85,29690.3926550294,34745.7688031956,23266.6381118245,33390.0373553038,32199.0525006415 +1700265600,36628.39,36852.04,36214.97,36588,29793.4785751081,34876.8982218828,23279.9382353918,33589.9077001813,32437.4716551446 +1700352000,36589.81,37526.88,36412.73,37390.02,29907.4877871957,35055.7814144083,23294.0258213751,33787.190138182,32674.3216371681 +1700438400,37394.49,37768.77,36692.75,37471.79,30023.5281953879,35227.7521214083,23308.1809818659,33981.3449541242,32909.1502384253 +1700524800,37469.32,37660.14,35758.75,35760.5,30119.495645689,35265.6729425016,23320.613448083,34156.4546189624,33134.7802303912 +1700611200,35762.61,37869,35647.25,37420.85,30237.7497609822,35419.0777459855,23334.6912045498,34328.7355442342,33357.4116263653 +1700697600,37423.1,37642.92,36884.68,37296.49,30356.880452638,35552.7113409067,23348.6307439723,34496.1249069441,33575.9890418163 +1700784000,37301.74,38433.48,37262.19,37726.56,30484.4936269912,35707.4451829322,23362.9857504162,34661.7608349776,33791.655819057 +1700870400,37730.62,37905.32,37607.98,37799.05,30616.9937558607,35856.3249349748,23377.3987991688,34825.1490060943,34004.1187567183 +1700956800,37799.76,37821.79,37149.46,37458.92,30745.7264491904,35970.3971315765,23391.4578701225,34982.3351823405,34211.5635113111 +1701043200,37460.23,37566.25,36723.53,37249.68,30871.1756570963,36061.456070956,23405.2939980122,35131.2513751902,34412.8432302203 +1701129600,37251.19,38396.41,36887.14,37831.24,31003.2653196553,36187.4287166369,23419.6969446488,35277.1040270618,34609.9181366558 +1701216000,37831.99,38439.5,37584.71,37857.71,31135.238991702,36306.3187962922,23434.1119391001,35419.4043002052,34802.501488995 +1701302400,37859.7,38152.52,37500.25,37723.24,31264.9296182877,36407.1747877063,23448.3782859251,35556.3894564643,34989.7401319676 +1701388800,37728.57,38975.85,37623.49,38694.14,31405.8049710376,36569.9602292763,23463.599741237,35696.210898467,35175.0478223407 +1701475200,38694.89,39710.75,38653.53,39467.01,31556.2895710351,36776.1712917106,23479.5776371704,35843.8382696865,35360.8075394334 +1701561600,39462.38,40179.6,39287.25,39972.23,31712.5524733883,37003.6657132767,23496.0439952064,36000.978802071,35548.1872225071 +1701648000,39976.73,42391.49,39851.65,41974.74,31893.0429203779,37357.5051676294,23514.493230524,36181.8984717698,35743.9035812109 +1701734400,41963.13,44610.75,41268.78,44088.05,32098.8080950165,37836.58316438,23535.0339867582,36399.0860350047,35954.4891728714 +1701820800,44091.78,44286.64,43391.88,43775.94,32299.2403561718,38259.3446563043,23555.2426225831,36641.5352066136,36176.705906364 +1701907200,43775.28,44058.41,42860.63,43288.41,32491.2874519977,38617.311895271,23574.9443292626,36898.4563789067,36406.8846485942 +1701993600,43287.3,44720.5,43092.82,44184.59,32696.1054835851,39013.5889438897,23595.5211168614,37172.8097587045,36646.8634454635 +1702080000,44190.12,44370.4,43605.04,43723.46,32896.946909804,39348.8360370616,23615.6169656603,37455.1463830287,36893.1614698896 +1702166400,43721.88,44048.4,43588.67,43794.17,33097.9752629176,39665.2534657977,23635.763347916,37742.2212883621,37144.5783645336 +1702252800,43796.42,43815.8,40132,41248.85,33266.0684624245,39777.9733531415,23653.3483539266,38008.7089983421,37390.1176312718 +1702339200,41246.13,42143.64,40660.73,41476.57,33436.0980557516,39898.8789111805,23671.1431599119,38257.9246813857,37630.2117201007 +1702425600,41487.15,43449.38,40603.69,42888.41,33623.17205168,40111.6727638218,23690.3297885573,38502.9814237774,37869.7484471908 +1702512000,42894.37,43425.31,41442.44,43034.72,33811.0610623004,40319.7343174097,23709.6433379005,38743.7630047341,38108.4231512617 +1702598400,43037.97,43093.65,41681.25,41944.05,33984.1061989399,40435.3525805202,23727.8486733472,38969.517390485,38341.2891431767 +1702684800,41945.04,42691.6,41651.87,42260.7,34159.6184084247,40565.2802174171,23746.3519776465,39183.6948150571,38569.1566961566 +1702771200,42253.93,42382.46,41253,41362.47,34323.5534312244,40622.0239274111,23763.9400101946,39378.7315042396,38788.1983352895 +1702857600,41360.25,42742.3,40511.23,42654.53,34502.724418005,40766.6970500023,23782.8004828123,39567.5047800622,39003.2164979237 +1702944000,42660.68,43467.39,41811,42276.81,34676.2095435725,40874.1863996717,23801.2650072279,39746.2280148523,39212.3149298059 +1703030400,42274.84,44319.72,42216.67,43664.69,34866.2070270338,41072.8135402772,23821.0967638524,39927.1360293378,39420.4483642135 +1703116800,43666.78,44244.23,43323.1,43876.91,35055.9355781437,41272.4082162028,23841.1206019946,40110.1121254692,39627.7142813105 +1703203200,43876.49,44426.69,43443.23,44012.68,35245.2652890192,41467.4598724104,23861.260001764,40294.3815280102,39833.9164522354 +1703289600,44019.91,44031.96,43331.59,43752.61,35429.6685082611,41630.1161168403,23881.119638873,40475.8737202354,40037.3845454292 +1703376000,43752.37,43962.69,42673.54,43028.98,35603.8212230133,41729.6867940383,23900.2369716945,40647.2565766166,40234.8500387859 +1703462400,43023.73,43821.05,42768.84,43606.44,35784.1499196913,41863.2734781331,23919.9117570144,40813.8330121897,40428.2582653727 +1703548800,43605.19,43615.78,41623.19,42528.16,35949.7169713585,41910.5998849688,23938.4903380243,40965.6937835443,40613.1519362691 +1703635200,42530.08,43681,42138.42,43473.63,36125.5674426745,42021.8558612708,23957.9943327052,41112.3086679036,40793.1271462789 +1703721600,43469.82,43806.91,42312.07,42599.41,36289.0558190218,42062.9659774187,23976.6060282604,41245.7829527644,40964.6211440243 +1703808000,42610.91,43143.98,41302.65,42093.09,36445.8933863022,42065.1101955692,23994.6936290216,41362.9157323299,41125.7954202165 +1703894400,42088.53,42608.73,41546,42159.51,36603.5030107663,42071.8295430109,24012.8294851254,41466.1661117241,41277.1695819202 +1703980800,42158.86,42882.6,41988.7,42278.29,36761.457810643,42086.525331332,24031.0658249156,41558.1298220723,41419.4537912171 +1704067200,42279.67,44202.58,42202.84,44190.9,36942.2740869568,42236.314037267,24051.1935181557,41656.5471215319,41560.1061653906 +1704153600,44192.15,45920.31,44162.58,44977.2,37131.9329813857,42431.409410532,24072.0861621897,41766.2202985328,41701.703598135 +1704240000,44980.8,45524.41,40490.92,42861.49,37293.2833808158,42462.0224073065,24090.8456099771,41865.915707017,41835.6415046753 +1704326400,42861.77,44797.48,42665.25,44203.8,37469.6248343683,42586.0015710555,24110.9264981728,41968.1445875136,41967.1342852009 +1704412800,44204.84,44405.84,42460.75,44185.37,37643.3117956748,42699.8440967482,24130.9689368783,42071.4146659977,42095.823683724 +1704499200,44187.17,44254.69,43445.13,43992.36,37811.8290000137,42791.844959252,24150.7986628159,42172.9800621909,42220.7332275433 +1704585600,43987.95,44498.48,43635.2,43942.3,37978.1247205853,42873.7339756689,24170.5586104531,42271.8322694519,42341.5235612364 +1704672000,43941.36,47285.4,43215.74,46981.38,38180.3542335182,43166.1148865326,24193.333064424,42393.8698839752,42469.5652053093 +1704758400,46985.65,47910.75,44662.39,46122.45,38368.9946384664,43376.5458604222,24215.2272196472,42526.5016969625,42600.514538572 +1704844800,46113.12,47691.28,44305.95,46666.23,38563.8842366633,43610.704509801,24237.6424286697,42671.4035279117,42735.6833025599 +1704931200,46672.16,48975.07,45588.91,46346.52,38753.2023069488,43805.4389684767,24259.7160579353,42822.3833348147,42872.9949925713 +1705017600,46343.09,46511.55,41482.49,42790.03,38895.9688499096,43733.1624876544,24278.2168288955,42946.3133005382,42998.3185671136 +1705104000,42795.05,43244,42441.95,42839.31,39038.2542845014,43669.5383576855,24296.7483300131,43047.34428905,43112.3861440107 +1705190400,42831.56,43063.53,41704.18,41715.61,39164.2192722239,43530.4583713385,24314.1394206957,43118.9490185339,43211.48059463 +1705276800,41709.56,43335.73,41690,42502.39,39298.8405238115,43457.2807983291,24332.2986736465,43172.5275528628,43299.4718923325 +1705363200,42496.25,43572.88,42048.78,43139.79,39440.3899041714,43434.6819063466,24351.0761800855,43216.3230959686,43379.3787965802 +1705449600,43142.01,43188.12,42184.55,42750.82,39576.1991450347,43386.0048378022,24369.4465890921,43248.3291170494,43450.1180645008 +1705536000,42751.45,42889.31,40632.26,41294.55,39692.4442631351,43237.135761235,24386.3447087171,43257.7702424632,43506.7027477052 +1705622400,41290.84,42165.96,40276.87,41644.74,39811.6486876519,43123.7895477669,24403.5755888534,43251.5931301096,43551.4450651899 +1705708800,41646.21,41861.04,41091.14,41691.92,39928.8203547508,43021.8695380742,24420.8363703615,43233.0283006714,43585.361109969 +1705795200,41687.89,41978.4,41507.07,41586.94,40041.4228839734,42919.7317192645,24437.9751059772,43203.5251769454,43608.8468663971 +1705881600,41583.43,41684.05,39419.06,39540.57,40124.8349244981,42679.2040848038,24453.0536227207,43147.5879209192,43614.9728000346 +1705968000,39537.32,40148.12,38524,39882.07,40208.1360793767,42480.1049884653,24468.4580405319,43073.3392995748,43606.4813832943 +1706054400,39877.07,40533.39,39455.06,40090.15,40288.9482147806,42309.9887680531,24484.0548267415,42986.4667512096,43585.4332796361 +1706140800,40090.67,40288.89,39536.05,39945.87,40365.1017509722,42141.7115614245,24499.4919910574,42888.7123452454,43552.4307527523 +1706227200,39945.37,42220.44,39825.09,41817,40461.1352524897,42118.5986978684,24516.7818896675,42799.0260437629,43515.6807613749 +1706313600,41818.32,42196.32,41396.21,42126.46,40556.2845974641,42119.1582628027,24534.3634925707,42719.4278134836,43476.8093176054 +1706400000,42126.96,42819.52,41630.18,42032.37,40644.96191472,42112.9807024238,24551.8336019097,42648.0036658302,43435.7882753285 +1706486400,42032.89,43324.19,41807.54,43297.42,40745.0782327253,42197.2887072121,24570.5493021157,42594.8577375997,43397.7324964467 +1706572800,43296.75,43862.55,42697.05,42950.2,40835.5726402372,42250.8806886733,24588.8996500349,42554.206931143,43361.222370195 +1706659200,42948.43,43736.06,42283.47,42562.95,40913.3205164026,42273.0936809705,24606.845044257,42520.8394806641,43324.8019856393 +1706745600,42559.54,43265.55,41866.89,43078.25,40994.5964106432,42330.4044464433,24625.2870001498,42498.2070685853,43290.5471649326 +1706832000,43082.67,43515.88,42541.55,43187.89,41075.4970444275,42391.439989846,24643.820008689,42485.5497319474,43258.8171703288 +1706918400,43188.38,43355.33,42881.92,42997.87,41153.5455396252,42434.6054811502,24662.144796717,42479.565539914,43228.7995826426 +1707004800,42996.41,43099.28,42235.95,42578.24,41225.2322866782,42444.8293395849,24680.0323281906,42475.4954176369,43198.8775190793 +1707091200,42578.8,43516,42244.23,42668.42,41296.1198647859,42460.7444502263,24697.9920368766,42473.8147507086,43169.4963971712 +1707177600,42668.08,43366.37,42535.34,43093.45,41370.2769645159,42505.7802259128,24716.3581668594,42477.788671251,43142.3262088324 +1707264000,43089.79,44383.75,42769.04,44337.8,41458.6394813703,42636.1827988451,24735.9483261193,42497.1373031236,43121.9805914212 +1707350400,44337.91,45598.4,44329.18,45303.45,41557.249927828,42826.0380125541,24756.4830369116,42537.3150986961,43111.6026898706 +1707436800,45303.36,48202.38,45252.43,47149.6,41676.8982080024,43133.7877515962,24778.8404524045,42610.2410199825,43117.3557820997 +1707523200,47147.53,48177.36,46895.88,47776.32,41804.0374760854,43464.2416902905,24801.8012669433,42714.8959220872,43140.2132901619 +1707609600,47776.07,48576.25,47593.3,48311.33,41936.4950513493,43809.2558630393,24825.2733143048,42849.3742655746,43180.6549576418 +1707696000,48317.79,50329.73,47694.17,49942.38,42087.1970536721,44245.8096485853,24850.3503766484,43021.3255524328,43243.192292885 +1707782400,49940.41,50386.91,48303.7,49744.44,42233.6751345247,44637.2003724028,24875.2047774871,43220.9078574559,43324.9629933237 +1707868800,49744.16,52086.45,49268.53,51829.17,42404.1397518145,45149.122436321,24902.1157698539,43459.5185612034,43431.8954988984 +1707955200,51830.68,52829.25,51333.17,51929.1,42573.0440713941,45631.7190388426,24929.0996648137,43729.0386981795,43561.8240038912 +1708041600,51926.83,52590.6,51604.47,52160.74,42742.1809799729,46096.4526318455,24956.2878895941,44023.6602679226,43713.17738332 +1708128000,52163.49,52193.01,50500.14,51666.81,42901.8439969922,46492.9488614353,24982.9558269715,44332.1157199049,43881.6972317161 +1708214400,51665.83,52409.03,51191.62,52127.48,43065.6171932735,46894.0129591752,25010.0570744796,44653.268031397,44067.0272255244 +1708300800,52135.18,52484.65,51683.7,51769.54,43224.6043316858,47241.051391575,25036.7738946135,44978.9953480832,44265.6865543306 +1708387200,51766.56,52971.7,50695.43,52247.41,43389.1658763931,47597.4023724947,25063.9411486514,45309.8017128875,44477.5962806722 +1708473600,52246.66,52357.7,50578.75,51855.14,43548.6820045879,47900.4667549597,25090.6896341463,45638.5357508987,44699.3482464452 +1708560000,51858.34,52065,50904.71,51272.95,43699.8590478364,48140.5190177926,25116.8301519897,45957.6901985578,44927.0697106805 +1708646400,51273.1,51507.27,50428.75,50741.61,43840.1435690555,48325.6638297146,25142.4140781096,46261.6112999414,45157.3866905795 +1708732800,50740.35,51691.3,50584.06,51579.29,43992.1674342241,48557.2558845419,25168.808805574,46557.6142821601,45392.3720792209 +1708819200,51579.03,51956.38,51291,51725.45,44143.4897442914,48782.7669134338,25195.3231073686,46845.8077485048,45631.293519086 +1708905600,51731.94,54897.25,50907.81,54496.22,44327.6275873465,49189.4486498181,25224.5772896793,47149.0376435548,45883.3773275315 +1708992000,54497.93,57592.85,54463.4,57054.17,44541.1555553591,49749.2569630063,25256.3561362941,47484.1293478491,46156.2119882895 +1709078400,57055.32,64005.2,56528.97,62472.68,44821.4612513963,50654.9060853564,25293.5131259669,47889.3783189768,46467.4647036727 +1709164800,62473.97,63630.25,60257.6,61165.98,45084.9966027141,51403.0809152017,25329.3284011687,48337.5456429225,46807.7591619304 +1709251200,61161.73,63177.55,60722.36,62415.76,45359.188062067,52186.9598382613,25366.3557056646,48827.9512256483,47178.0605870866 +1709337600,62409.26,62473.5,61628.92,62020.87,45626.3818832103,52886.9343719503,25402.9517814642,49345.4526670844,47572.9280814256 +1709424000,62020.1,63253,61385,63148.92,45904.9885051023,53617.3791783982,25440.637571077,49890.523651054,47993.0416393556 +1709510400,63146.76,68465.5,62288.5,68285.06,46245.8759047097,54661.4199388423,25483.4136864064,50497.9644604395,48454.0637855876 +1709596800,68288.08,69156.65,59173.92,63792.77,46528.4484957585,55311.3864725898,25521.6619659014,51112.6304556229,48933.8111912652 +1709683200,63798.34,67653.84,62833.75,66103.55,46837.1583733498,56079.5691698435,25562.1791540071,51747.9030169906,49437.6062536993 +1709769600,66102.85,68042.77,65621.41,66885.68,47151.622246325,56848.74463158,25603.4367725673,52401.3979497264,49964.4554117101 +1709856000,66884.48,70055.5,65914.27,68227.79,47479.4751701641,57658.7013878025,25645.9931695527,53075.8371564282,50515.4771650824 +1709942400,68229.29,68644.2,67966.86,68401.77,47805.4533372884,58423.3895249252,25688.6807806118,53763.1806755973,51087.192441904 +1710028800,68402.03,69960.25,68179.76,69012.3,48133.3259559241,59177.10473588,25731.9353287456,54460.4764166269,51677.9883673459 +1710115200,69008.98,72831.6,67104.88,72066.5,48494.2177517778,60094.5677074901,25778.1960219643,55186.3345942963,52295.5451357791 +1710201600,72064.52,72960.41,68564.05,71413.66,48841.7173641803,60900.2570232273,25823.7587290698,55923.7723217548,52932.7900501618 +1710288000,71414.81,73660.87,71247.35,73084.11,49203.763107738,61767.4997238098,25870.9437329015,56678.8020887322,53591.9508166088 +1710374400,73086.44,73757.39,68523.59,71364.95,49540.1299331835,62450.6431195892,25916.3652078229,57426.9159176908,54262.1828448614 +1710460800,71368.47,72435.74,65548.68,69507.92,49853.4784335179,62952.9777974776,25959.8872643583,58146.819263874,54933.0011528678 +1710547200,69507.19,70047.25,64805.91,65263.96,50113.6474376468,63117.4727606173,25999.1286743935,58800.6027769579,55585.7962983555 +1710633600,65253.21,68871.86,64543.75,68376.06,50411.6149654001,63491.777293627,26041.4380439433,59421.2416530654,56231.3877176245 +1710720000,68375.97,68918.5,66587.51,67608.76,50701.0289102251,63784.8227864882,26082.9390948882,60002.6143725324,56865.0524237104 +1710806400,67604.6,68117.6,61544.88,61935.42,50920.141958813,63653.1828963749,26118.7344159848,60497.612796333,57463.9874404858 +1710892800,61937.22,68164.33,60794.84,67877.2,51216.4494502998,63953.8470628942,26160.4263058163,60968.6379504985,58051.3217271554 +1710979200,67871.75,68250.39,64562.35,65511.65,51480.323800361,64064.730970368,26199.714791637,61395.4190523095,58616.8906994263 +1711065600,65508.25,66652.23,62248.87,63814.92,51719.6015793469,64046.9495065741,26237.2700267158,61767.4437790029,59154.0018542802 +1711152000,63815.64,65999.77,63034.65,64017.09,51960.9113064702,64044.8241165871,26274.9896141132,62092.9526054012,59663.8099621633 +1711238400,64017.07,67703.6,63810.89,67216.71,52242.7876804508,64270.5979243238,26315.866060888,62405.0392033983,60158.7939339309 +1711324800,67225.2,71170.76,66406.06,69890.57,52556.2478235074,64670.6257126925,26359.3712934357,62726.5003924823,60648.4422325921 +1711411200,69889.43,71539.17,69242.62,69993.63,52869.799349023,65049.5154302669,26402.9359858024,63053.7859457754,61131.7486526056 +1711497600,69997.5,71725.44,68337.28,69440.32,53172.3848272554,65362.0514744924,26445.9047550774,63378.2506233885,61605.3378500333 +1711584000,69439.09,71581.57,68858,70780.6,53490.012225824,65747.7419999326,26490.1687672726,63709.176058684,62073.3088937598 +1711670400,70775.32,70918.77,69063.41,69896.46,53792.9488314187,66043.0464006992,26533.5058556153,64034.9127660369,62531.0335086964 +1711756800,69904.44,70340.66,69598.41,69640.22,54091.5856238527,66299.0920500245,26576.543844487,64351.3497155046,62976.6867567064 +1711843200,69635.97,71389.7,69608.47,71320.68,54410.6643279536,66656.5270505331,26621.2166448189,64671.9274751589,63415.9579759484 +1711929600,71316.8,71322.4,68082.04,69688.23,54709.277013551,66872.3226825283,26664.2149961967,64979.028411376,63841.566387447 +1712016000,69686.99,69701.98,64457.83,65471.44,54955.0860474112,66772.6083078464,26702.9603506271,65235.9342056533,64237.1426497534 +1712102400,65473.65,66929.77,64534.8,65983.36,55205.8661980787,66716.4298694467,26742.1781253182,65453.7494667565,64605.6795691254 +1712188800,65979.89,69420.97,65084.51,68523.16,55488.7397034695,66845.03233376,26783.8924955425,65659.4782857062,64957.6754480768 +1712275200,68520.02,68759.5,65990.63,67847.25,55760.8110771083,66916.3698619704,26824.8903855091,65847.6421600567,65290.6550116772 +1712361600,67849.25,69686.27,67459.47,68906.37,56046.2731184156,67058.0174259352,26866.904774388,66028.8847157919,65608.9772187321 +1712448000,68906.04,70286,68853.06,69359.11,56335.9780174946,67221.8084485309,26909.329234056,66206.780194894,65914.3958988514 +1712534400,69353.84,72756.63,69065.21,71640.13,56651.4200703407,67536.3031425857,26953.988720259,66400.1030428369,66215.4685939437 +1712620800,71640.85,71749.59,68229.55,69144.23,56932.0768125095,67650.7548544392,26996.1116974038,66582.8701924351,66502.002657152 +1712707200,69134.67,71187.68,67501.02,70641.06,57226.7097837393,67863.6038041881,27039.6870623241,66768.3130087089,66779.804644079 +1712793600,70655.43,71321.94,69583.77,70046.53,57512.4638552351,68018.9837823311,27082.6253392143,66949.2144037583,67046.3228199503 +1712880000,70047.28,71248.19,65140.33,67141.2,57763.0549638375,67956.503417592,27122.6200482681,67099.6999286891,67290.5387850495 +1712966400,67138.11,68213.52,61054.5,64031.79,57970.9053167882,67677.1435903047,27159.4703737261,67196.981638066,67501.6845258522 +1713052800,64015.99,65873.5,62291.93,65754.76,58199.0736453651,67540.3089502619,27198.0041306688,67264.5467361906,67688.2808880339 +1713139200,65745.64,66903.88,62333.5,63446.65,58396.8210379964,67248.9236347909,27234.1949851217,67287.127153249,67842.9944453 \ No newline at end of file diff --git a/lib/indicator/test/ta/indicator/indicator_test.clj b/lib/indicator/test/ta/indicator/indicator_test.clj index a106a7fd..b4bca6f2 100644 --- a/lib/indicator/test/ta/indicator/indicator_test.clj +++ b/lib/indicator/test/ta/indicator/indicator_test.clj @@ -1,8 +1,8 @@ (ns ta.indicator.indicator-test (:require [clojure.test :refer :all] - [ta.indicator.util.fuzzy :refer [all-fuzzy= nthrest-fuzzy=]] + [ta.indicator.util.fuzzy :refer [all-fuzzy= nthrest-fuzzy= fuzzy=]] [ta.indicator.util.ta4j :as ta4j] - [ta.indicator.util.data :refer [ds]] + [ta.indicator.util.data :refer [ds ind-100-export-ds]] [ta.indicator :as ind])) ;; TESTS @@ -48,11 +48,79 @@ (ta4j/close ds :HMA 4) (ind/hma 4 (:close ds))))) +(deftest lma-test + (is (nthrest-fuzzy= + 0.00000001 + 100 + (:lma ind-100-export-ds) + (ind/lma 100 (:close ind-100-export-ds))))) + +(deftest chebyshev1-test + (is (nthrest-fuzzy= + 0.00000001 + 110 + (vec (:chebyshev1 ind-100-export-ds)) + (ind/chebyshev1 100 (:close ind-100-export-ds))))) + +(deftest chebyshev2-test + (is (all-fuzzy= + 0.0001 + (vec (:chebyshev2 ind-100-export-ds)) + (ind/chebyshev2 100 (:close ind-100-export-ds))))) + +(deftest ehlers-gaussian-test + (is (nthrest-fuzzy= + 0.00000001 + 150 + (vec (:ehlers-gaussian ind-100-export-ds)) + (ind/ehlers-gaussian 100 (:close ind-100-export-ds))))) + +(deftest ehlers-supersmoother-test + (is (nthrest-fuzzy= + 0.00000001 + 250 + (vec (:ehlers-supersmoother ind-100-export-ds)) + (ind/ehlers-supersmoother 100 (:close ind-100-export-ds))))) + +; + (comment (ta4j/close ds :HMA 4) (ind/hma 4 (:close ds)) - + (defn print-diff [l1 l2 tol] + (doseq [i (range (count l1))] + (let [v1 (nth l1 i) + v2 (nth l2 i)] + (if (not (fuzzy= tol v1 v2)) + (println "!= at index:" i ", v1:" v1 "v2:" v2))))) + + + (print-diff (drop 10 (:lma ind-100-export-ds)) + (ind/lma 100 (drop 10 (:close ind-100-export-ds))) + 0.00000001) + + (print-diff (:chebyshev1 ind-100-export-ds) + (ind/chebyshev1 100 (:close ind-100-export-ds)) + 0.00000001) + + (print-diff (:chebyshev2 ind-100-export-ds) + (ind/chebyshev2 100 (:close ind-100-export-ds)) + 0.0001) + + (print-diff (:ehlers-supersmoother ind-100-export-ds) + (ind/ehlers-supersmoother 100 (:close ind-100-export-ds)) + 0.00000001) + + (print-diff (:ehlers-gaussian ind-100-export-ds) + (ind/ehlers-gaussian 100 (:close ind-100-export-ds)) + 0.00000001) + + + (vec (:lma ind-100-export-ds)) + (vec (ind/lma 100 (:close ind-100-export-ds))) + (ind/ehlers-supersmoother 100 (:close ind-100-export-ds)) + (ind/ehlers-gaussian 100 (:close ind-100-export-ds)) ; ) \ No newline at end of file diff --git a/lib/indicator/test/ta/indicator/util/data.clj b/lib/indicator/test/ta/indicator/util/data.clj index abacc66c..416f67a3 100644 --- a/lib/indicator/test/ta/indicator/util/data.clj +++ b/lib/indicator/test/ta/indicator/util/data.clj @@ -20,3 +20,11 @@ {:date (t/instant "2019-11-14T00:00:00.000Z") :open 101.0 :high 110.0 :low 88.022 :close 89.0 :volume 9000} {:date (t/instant "2019-11-15T00:00:00.000Z") :open 100.0 :high 120.0 :low 90.011 :close 110.0 :volume 11000}])) + +(defn get-csv-ds [csv-name] + (tc/dataset (str "test/ta/indicator/csv/" csv-name) {:key-fn keyword})) + +; indicator length = 100 +(def ind-100-export-ds (get-csv-ds "INDEX_BTCUSD_1D_len_100.csv")) + +(def compress-ds (get-csv-ds "compress.csv"))