diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6620230 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +**/*.nb binary +**/*.times binary +**/*.pdf merge=theirs \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index e532c38..ef5165b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,39 +1,83 @@ -install: - # Silent install from conda docs - # https://conda.io/docs/user-guide/install/macos.html#install-macos-silent - # adapted using - # https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html - - # Needed to check if conda already installed - - export PATH="$HOME/miniconda/bin:$PATH" - - # If not yet installed, obtain Miniconda - # and tectonic - # From tectonic docs - # https://tectonic-typesetting.github.io/en-US/install.html#the-anaconda-method - - if ! command -v conda > /dev/null; then - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; - bash miniconda.sh -b -p $HOME/miniconda -u; - conda config --add channels conda-forge; - conda config --set always_yes yes; - conda update --all; - conda install tectonic; - fi - - conda info -a -cache: - directories: - - $HOME/miniconda -script: # Change working directory each time so including files will work. Change back so the pdfs can be found for deployment. This way, building multiple files goes well. - - cd ./documentation/src/ - - tectonic ./documentation.tex --print - - cd ../../ -deploy: - provider: releases - api_key: - secure: rQIugDrSWmIXr7oIIxhcpvPIAql6YYc0+4+yIyHi2iJ3jYuOT7EI/a1q81tKMvPOXs/U+vyLIhyyzstK4KXkRj0wTS+e518PE9VZyysVRkmzX8fQkScjne4ITTXOeAsxpTU9gm7QnS+evtalt5izIbsBl/6lJY0HnrVwtd7PmMB2v9IQhF+FuoZRVJF+MWBUrENNPPP6p4PLXbbZgFUaYDvQuIyZvn5EGSlSnVlUmgggkUJJtjs+H+j0M7Ju+wk1jVhO3e4VQa8lO9NN3m8U2aYz99zgT2yLZQ/gBa1OeKsVfJuhajOfnigUuGhsZD2PXPHZdLlxPI2SuxsSUmFnJesxVaTHTROz+e8d+xL90iyCq/l1p8BUiap1ZNalkbYK637TiPnxLKVKhzDDH0Sf+OjY92HK0cpBSKBCvlH+JYX4EY/DqIBubFCctc5Qd/PqcYZqyKCepadnKB+nXWpmp4n9Sr2/wA4EDdrMsRIlNHOi0cfiGleo9abJ/ZiDVUekW0Bgic3rCIZlN8S05huXuWxWJTBJvMtA1w2XyRCejapVo4EH1w8uxTClwiT4V++bMOpQK9QYd2L9vIMXy7J4h+iFhGO9vkP09ACEo40SS77+zFq79aEYTOIcqjP5uB3RhV8tKAfv4MTuL9x50yPzobr0hzTVxengQPYAmEldQj4= - file: - - ./documentation/src/documentation.pdf - skip_cleanup: true - on: - tags: true - branch: master +jobs: + include: + - stage: core-haskell + # config from https://docs.haskellstack.org/en/stable/travis_ci/#running-tests + # haddock coverage is also shown in the build log + + # Use new container infrastructure to enable caching + sudo: false + + # Do not choose a language; we provide our own build tools. + language: generic + + # Caching so the next build will be fast too. +# cache: +# directories: +# - $HOME/.stack + + # Ensure necessary system libraries are present + addons: + apt: + packages: + - libgmp-dev + + before_install: + - cd ./SolArduino-core/haskell/solarduino-haskell + # Download and unpack the stack executable + - mkdir -p ~/.local/bin + - export PATH=$HOME/.local/bin:$PATH + - travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' + + install: + # Build dependencies + - stack --no-terminal --install-ghc test --only-dependencies + + script: + # Build the package, its tests, and its docs and run the tests + - stack --no-terminal test --haddock --no-haddock-deps --coverage + + # Upload to coveralls using Stack HPC Coveralls (SHC) + after_success: + - travis_retry curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.4.0/shc-linux-x64-8.0.1.tar.bz2 | tar -xj + - ./shc solarduino-haskell solarduino-haskell-test + - stage: documentation + language: generic + install: + # Silent install from conda docs + # https://conda.io/docs/user-guide/install/macos.html#install-macos-silent + # adapted using + # https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html + + # Needed to check if conda already installed + - export PATH="$HOME/miniconda/bin:$PATH" + + # If not yet installed, obtain Miniconda + # and tectonic + # From tectonic docs + # https://tectonic-typesetting.github.io/en-US/install.html#the-anaconda-method + - if ! command -v conda > /dev/null; then + wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; + bash miniconda.sh -b -p $HOME/miniconda -u; + conda config --add channels conda-forge; + conda config --set always_yes yes; + conda update --all; + conda install tectonic; + fi + - conda info -a + cache: + directories: + - $HOME/miniconda + script: # Change working directory each time so including files will work. Change back so the pdfs can be found for deployment. This way, building multiple files goes well. + - cd ./documentation/src/ + - tectonic ./documentation.tex --print + - cd ../../ + deploy: + provider: releases + api_key: + secure: rQIugDrSWmIXr7oIIxhcpvPIAql6YYc0+4+yIyHi2iJ3jYuOT7EI/a1q81tKMvPOXs/U+vyLIhyyzstK4KXkRj0wTS+e518PE9VZyysVRkmzX8fQkScjne4ITTXOeAsxpTU9gm7QnS+evtalt5izIbsBl/6lJY0HnrVwtd7PmMB2v9IQhF+FuoZRVJF+MWBUrENNPPP6p4PLXbbZgFUaYDvQuIyZvn5EGSlSnVlUmgggkUJJtjs+H+j0M7Ju+wk1jVhO3e4VQa8lO9NN3m8U2aYz99zgT2yLZQ/gBa1OeKsVfJuhajOfnigUuGhsZD2PXPHZdLlxPI2SuxsSUmFnJesxVaTHTROz+e8d+xL90iyCq/l1p8BUiap1ZNalkbYK637TiPnxLKVKhzDDH0Sf+OjY92HK0cpBSKBCvlH+JYX4EY/DqIBubFCctc5Qd/PqcYZqyKCepadnKB+nXWpmp4n9Sr2/wA4EDdrMsRIlNHOi0cfiGleo9abJ/ZiDVUekW0Bgic3rCIZlN8S05huXuWxWJTBJvMtA1w2XyRCejapVo4EH1w8uxTClwiT4V++bMOpQK9QYd2L9vIMXy7J4h+iFhGO9vkP09ACEo40SS77+zFq79aEYTOIcqjP5uB3RhV8tKAfv4MTuL9x50yPzobr0hzTVxengQPYAmEldQj4= + file: + - ./documentation/src/documentation.pdf + skip_cleanup: true + on: + tags: true + branch: master diff --git a/README.md b/README.md index 63347b1..559b7b1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # [Link to website](https://phpirates.github.io/SolArduino/) -Documentation: [![Build Status](https://api.travis-ci.org/PHPirates/SolArduino.svg)](https://travis-ci.org/PHPirates/SolArduino) + +Core 'best angle' calculations (Haskell): [![Coverage Status](https://coveralls.io/repos/github/PHPirates/SolArduino/badge.svg?branch=master)](https://coveralls.io/github/PHPirates/SolArduino?branch=master) diff --git a/SolArduino-core/Mathematica/demonstration.pdf b/SolArduino-core/Mathematica/demonstration.pdf new file mode 100644 index 0000000..5011fe4 Binary files /dev/null and b/SolArduino-core/Mathematica/demonstration.pdf differ diff --git a/SolArduino-core/Mathematica/realdata.nb b/SolArduino-core/Mathematica/realdata.nb index 8b2f408..2924a65 100644 --- a/SolArduino-core/Mathematica/realdata.nb +++ b/SolArduino-core/Mathematica/realdata.nb @@ -10,10 +10,10 @@ NotebookFileLineBreakTest NotebookFileLineBreakTest NotebookDataPosition[ 158, 7] -NotebookDataLength[ 48634, 1031] -NotebookOptionsPosition[ 48188, 1012] -NotebookOutlinePosition[ 48530, 1027] -CellTagsIndexPosition[ 48487, 1024] +NotebookDataLength[ 49326, 1044] +NotebookOptionsPosition[ 48605, 1025] +NotebookOutlinePosition[ 48947, 1040] +CellTagsIndexPosition[ 48904, 1037] WindowFrame->Normal*) (* Beginning of Notebook Content *) @@ -214,7 +214,8 @@ Documentation\\\\Mathematica\\\\data17_23.csv\>\"", "]"}]}], ";"}], 3.6805898404778385`*^9, 3.6805898732783995`*^9}, {3.6805933772018414`*^9, 3.6805934321937127`*^9}, {3.680763998307108*^9, 3.680764022006867*^9}, { 3.680935017347929*^9, 3.680935063675138*^9}, {3.6809350955363197`*^9, - 3.6809352146378307`*^9}}], + 3.6809352146378307`*^9}},ExpressionUUID->"7a6e9e07-914a-47f8-a92d-\ +4236bb146c58"], Cell[BoxData[ TemplateBox[{GraphicsBox[{{}, {{{}, {}, { @@ -415,8 +416,9 @@ Sg== 0.4731986666666667], FrameTicks -> None, PlotRangePadding -> None, ImageSize -> Dynamic[{ - Automatic, 1.35 CurrentValue["FontCapHeight"]/ - AbsoluteCurrentValue[Magnification]}]], + Automatic, + 1.35 (CurrentValue["FontCapHeight"]/AbsoluteCurrentValue[ + Magnification])}]], "RGBColor[0.368417, 0.506779, 0.709798]"], Appearance -> None, BaseStyle -> {}, BaselinePosition -> Baseline, DefaultBaseStyle -> {}, ButtonFunction :> @@ -460,8 +462,9 @@ Sg== 0.587148, 0.40736066666666665`, 0.09470066666666668], FrameTicks -> None, PlotRangePadding -> None, ImageSize -> Dynamic[{ - Automatic, 1.35 CurrentValue["FontCapHeight"]/ - AbsoluteCurrentValue[Magnification]}]], + Automatic, + 1.35 (CurrentValue["FontCapHeight"]/AbsoluteCurrentValue[ + Magnification])}]], "RGBColor[0.880722, 0.611041, 0.142051]"], Appearance -> None, BaseStyle -> {}, BaselinePosition -> Baseline, DefaultBaseStyle -> {}, ButtonFunction :> @@ -505,8 +508,9 @@ Sg== 0.37345400000000006`, 0.461046, 0.12992333333333334`], FrameTicks -> None, PlotRangePadding -> None, ImageSize -> Dynamic[{ - Automatic, 1.35 CurrentValue["FontCapHeight"]/ - AbsoluteCurrentValue[Magnification]}]], + Automatic, + 1.35 (CurrentValue["FontCapHeight"]/AbsoluteCurrentValue[ + Magnification])}]], "RGBColor[0.560181, 0.691569, 0.194885]"], Appearance -> None, BaseStyle -> {}, BaselinePosition -> Baseline, DefaultBaseStyle -> {}, ButtonFunction :> @@ -551,8 +555,9 @@ Sg== 0.13945266666666667`], FrameTicks -> None, PlotRangePadding -> None, ImageSize -> Dynamic[{ - Automatic, 1.35 CurrentValue["FontCapHeight"]/ - AbsoluteCurrentValue[Magnification]}]], + Automatic, + 1.35 (CurrentValue["FontCapHeight"]/AbsoluteCurrentValue[ + Magnification])}]], "RGBColor[0.922526, 0.385626, 0.209179]"], Appearance -> None, BaseStyle -> {}, BaselinePosition -> Baseline, DefaultBaseStyle -> {}, ButtonFunction :> @@ -622,7 +627,8 @@ Sg== 3.680583676015376*^9, 3.680583736847559*^9, 3.6805838098134108`*^9, 3.6805839251211615`*^9, {3.6805895003680706`*^9, 3.680589516193618*^9}, 3.6805898762683077`*^9, 3.68059341816064*^9, 3.6809352397996964`*^9, - 3.6809370898214664`*^9}] + 3.6809370898214664`*^9},ExpressionUUID->"a499410e-f4a8-4db8-8a13-\ +f13bb5217385"] }, Open ]], Cell[BoxData[ @@ -713,7 +719,8 @@ hR0sy9jDFnawrPz7B/4Cco4= Scaled[0.02]}, { Scaled[0.02], Scaled[0.05]}}, - Ticks->{Automatic, Automatic}]], "Input"], + Ticks->{Automatic, Automatic}]], "Input",ExpressionUUID->"36730ec5-2a52-\ +4983-ba5d-d2cc17e57ae0"], Cell[BoxData[{ RowBox[{ @@ -937,7 +944,9 @@ Cell[BoxData[{ RowBox[{"\"\<17-08-2016 23:45\>\"", ",", "0"}], "}"}]}], "}"}]}]}], "Input", CellChangeTimes->{{3.680589796228764*^9, 3.6805898179566164`*^9}, { - 3.680589890184986*^9, 3.680589892852271*^9}}], + 3.680589890184986*^9, + 3.680589892852271*^9}},ExpressionUUID->"08b6f679-25af-4212-92db-\ +143ea46c06dc"], Cell[BoxData[{ RowBox[{ @@ -945,6 +954,7 @@ Cell[BoxData[{ GraphicsBox[{{}, {{}, {}, {RGBColor[0.368417, 0.506779, 0.709798], PointSize[ 0.016666666666666666`], AbsoluteThickness[1.6], LineBox[CompressedData[" + 1:eJxdlE1IVFEYhg9B2CImFxkyKGpEhESZ2Thp6ufYaOqoM+NcszDwJ41AaCpo IUWHLJA2FRlkfxT9X39auK+hjYGEQbioXeAicCORUNKi5H1PMN+F4eWZ53vv mXvP3FvSfyY5uMEY0/vvs544VupM9iHZuElxruKtivMVFyguVrxd8Q7FOxXv @@ -971,6 +981,7 @@ fg535XGfxJNI7fcvU6V8L1j23JFRbLqyWRRbxRnF5qjqK7aKM4pN93/+C7wd GridLinesStyle->Directive[ GrayLevel[0.5, 0.4]], ImagePadding->All, + ImageSize->{587., Automatic}, Method->{"CoordinatesToolOptions" -> {"DisplayFunction" -> ({ (Part[{{Identity, Identity}, {Identity, Identity}}, 1, 2][#]& )[ Part[#, 1]], @@ -1008,11 +1019,13 @@ fg535XGfxJNI7fcvU6V8L1j23JFRbLqyWRRbxRnF5qjqK7aKM4pN93/+C7wd "58.1667", ",", "20.1667", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0"}], "}"}]}], "Input", - CellChangeTimes->{{3.6805934469706964`*^9, 3.6805934663920503`*^9}}] + CellChangeTimes->{{3.6805934469706964`*^9, + 3.6805934663920503`*^9}},ExpressionUUID->"abaa60a3-6ee6-4651-9f07-\ +9624aff9d46f"] }, WindowSize->{942, 960}, WindowMargins->{{Automatic, 206}, {Automatic, 1}}, -FrontEndVersion->"11.0 for Microsoft Windows (64-bit) (July 28, 2016)", +FrontEndVersion->"11.3 for Microsoft Windows (64-bit) (March 6, 2018)", StyleDefinitions->"Default.nb" ] (* End of Notebook Content *) @@ -1027,12 +1040,12 @@ CellTagsIndex->{} (*NotebookFileOutline Notebook[{ Cell[CellGroupData[{ -Cell[580, 22, 9281, 194, 867, "Input"], -Cell[9864, 218, 20262, 406, 570, "Output"] +Cell[580, 22, 9338, 195, 865, "Input",ExpressionUUID->"7a6e9e07-914a-47f8-a92d-4236bb146c58"], +Cell[9921, 219, 20411, 411, 241, "Output",ExpressionUUID->"a499410e-f4a8-4db8-8a13-f13bb5217385"] }, Open ]], -Cell[30141, 627, 4401, 88, 798, "Input"], -Cell[34545, 717, 10048, 222, 696, "Input"], -Cell[44596, 941, 3588, 69, 196, "Input"] +Cell[30347, 633, 4458, 89, 796, "Input",ExpressionUUID->"36730ec5-2a52-4983-ba5d-d2cc17e57ae0"], +Cell[34808, 724, 10108, 224, 675, "Input",ExpressionUUID->"08b6f679-25af-4212-92db-143ea46c06dc"], +Cell[44919, 950, 3682, 73, 505, "Input",ExpressionUUID->"abaa60a3-6ee6-4651-9f07-9624aff9d46f"] } ] *) diff --git a/SolArduino-core/Mathematica/realdata.pdf b/SolArduino-core/Mathematica/realdata.pdf new file mode 100644 index 0000000..e4a4a2c Binary files /dev/null and b/SolArduino-core/Mathematica/realdata.pdf differ diff --git a/SolArduino-core/Mathematica/tests.nb b/SolArduino-core/Mathematica/tests.nb new file mode 100644 index 0000000..1ec6b43 --- /dev/null +++ b/SolArduino-core/Mathematica/tests.nb @@ -0,0 +1,1674 @@ +(* Content-type: application/vnd.wolfram.mathematica *) + +(*** Wolfram Notebook File ***) +(* http://www.wolfram.com/nb *) + +(* CreatedBy='Mathematica 11.3' *) + +(*CacheID: 234*) +(* Internal cache information: +NotebookFileLineBreakTest +NotebookFileLineBreakTest +NotebookDataPosition[ 158, 7] +NotebookDataLength[ 75726, 1666] +NotebookOptionsPosition[ 71409, 1598] +NotebookOutlinePosition[ 71749, 1613] +CellTagsIndexPosition[ 71706, 1610] +WindowFrame->Normal*) + +(* Beginning of Notebook Content *) +Notebook[{ + +Cell[CellGroupData[{ +Cell[BoxData[{ + RowBox[{ + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"theta_", ",", " ", "day_"}], "]"}], " ", ":=", " ", + RowBox[{"(", " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{"angle", " ", "with", " ", "sun"}], ",", " ", + RowBox[{"day", " ", "of", " ", "year"}]}], " ", "*)"}], + "\[IndentingNewLine]", + RowBox[{ + RowBox[{"i", "=", " ", + RowBox[{"1367", " ", + RowBox[{"(", + RowBox[{"1", "+", + RowBox[{"0.034", " ", + RowBox[{"Cos", "[", + RowBox[{"360", "*", + RowBox[{"day", "/", "365.25"}]}], "]"}]}]}], ")"}]}]}], ";", "\n", + RowBox[{"aZero", " ", "=", " ", + RowBox[{"0.2538", " ", "-", " ", + RowBox[{"0.0063", " ", "36"}]}]}], ";", "\n", + RowBox[{"aOne", " ", "=", " ", + RowBox[{"0.7678", " ", "+", " ", + RowBox[{"0.001", " ", + RowBox[{"6.5", "^", "2"}]}]}]}], ";", "\n", + RowBox[{"k", " ", "=", " ", + RowBox[{"0.249", " ", "+", " ", + RowBox[{"0.081", " ", + RowBox[{"2.5", "^", "2"}]}]}]}], ";", "\n", + RowBox[{"If", "[", + RowBox[{ + RowBox[{ + RowBox[{"Cos", "[", "theta", "]"}], "<", "0"}], ",", "\n", "0", ",", + " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{ + "If", " ", "the", " ", "sun", " ", "is", " ", "more", " ", "than", + " ", "90", " ", "degrees", " ", "off"}], ",", " ", + RowBox[{ + "the", " ", "formula", " ", "is", " ", "not", " ", "correct"}], ",", + " ", + RowBox[{ + "and", " ", "we", " ", "set", " ", "the", " ", "insolation", " ", + "to", " ", "0"}]}], " ", "*)"}], "\n", + RowBox[{"i", " ", + RowBox[{"(", + RowBox[{"aZero", " ", "+", " ", + RowBox[{"aOne", " ", + RowBox[{"E", "^", + RowBox[{"(", + RowBox[{ + RowBox[{"-", "k"}], "/", + RowBox[{"Cos", "[", "theta", "]"}]}], ")"}]}]}]}], ")"}]}]}], + " ", "\n", "]"}]}], " ", "\[IndentingNewLine]", ")"}]}], + ";"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"0.5", ",", " ", "10"}], "]"}], " ", "//", " ", + "N"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"0.34", ",", " ", "253"}], "]"}], " ", "//", " ", + "N"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"0", ",", " ", "0"}], "]"}], " ", "//", " ", + "N"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"3.14", ",", " ", "10"}], "]"}], " ", "//", " ", "N"}]}], "Input", + CellChangeTimes->{{3.7419423516835117`*^9, 3.7419423699921713`*^9}, { + 3.7419425146707954`*^9, 3.741942611815774*^9}, {3.741946685686967*^9, + 3.7419466991865573`*^9}, {3.7419469206373386`*^9, 3.741946957627551*^9}}, + CellLabel->"In[28]:=",ExpressionUUID->"9954b9d8-ae79-40c4-aab9-6e0005e658f6"], + +Cell[BoxData["489.60744108319267`"], "Output", + CellChangeTimes->{{3.741942560993585*^9, 3.7419425945459504`*^9}, + 3.7419466999770865`*^9, {3.741946942232642*^9, 3.7419469609168587`*^9}, + 3.7421016396423206`*^9, 3.7425697660279236`*^9}, + CellLabel->"Out[29]=",ExpressionUUID->"804326b8-7446-4d90-b393-9e0637fab2b8"], + +Cell[BoxData["526.9615635885082`"], "Output", + CellChangeTimes->{{3.741942560993585*^9, 3.7419425945459504`*^9}, + 3.7419466999770865`*^9, {3.741946942232642*^9, 3.7419469609168587`*^9}, + 3.7421016396423206`*^9, 3.742569766040963*^9}, + CellLabel->"Out[30]=",ExpressionUUID->"84a71cff-949e-4db6-b44a-decd8507fdaf"], + +Cell[BoxData["576.1858287752583`"], "Output", + CellChangeTimes->{{3.741942560993585*^9, 3.7419425945459504`*^9}, + 3.7419466999770865`*^9, {3.741946942232642*^9, 3.7419469609168587`*^9}, + 3.7421016396423206`*^9, 3.742569766052919*^9}, + CellLabel->"Out[31]=",ExpressionUUID->"43091368-537b-439b-99bf-3f33b01b62ca"], + +Cell[BoxData["0.`"], "Output", + CellChangeTimes->{{3.741942560993585*^9, 3.7419425945459504`*^9}, + 3.7419466999770865`*^9, {3.741946942232642*^9, 3.7419469609168587`*^9}, + 3.7421016396423206`*^9, 3.7425697660629325`*^9}, + CellLabel->"Out[32]=",ExpressionUUID->"7624409a-fbf7-4656-9fd5-aab3d334889c"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{"Plot", "[", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{"theta", ",", " ", "150"}], "]"}], ",", " ", + RowBox[{"{", + RowBox[{"theta", ",", " ", + RowBox[{"-", "Pi"}], ",", "Pi"}], "}"}]}], "]"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{ + RowBox[{"directPower2", "[", + RowBox[{"theta_", ",", " ", "day_"}], "]"}], " ", ":=", " ", + RowBox[{"(", " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{"angle", " ", "with", " ", "sun"}], ",", " ", + RowBox[{"day", " ", "of", " ", "year"}]}], " ", "*)"}], + "\[IndentingNewLine]", + RowBox[{ + RowBox[{"i", "=", " ", + RowBox[{"1367", " ", + RowBox[{"(", + RowBox[{"1", "+", + RowBox[{"0.034", " ", + RowBox[{"Cos", "[", + RowBox[{"360", "*", + RowBox[{"day", "/", "365.25"}]}], "]"}]}]}], ")"}]}]}], ";", "\n", + RowBox[{"aZero", " ", "=", " ", + RowBox[{"0.2538", " ", "-", " ", + RowBox[{"0.0063", " ", "36"}]}]}], ";", "\n", + RowBox[{"aOne", " ", "=", " ", + RowBox[{"0.7678", " ", "+", " ", + RowBox[{"0.001", " ", + RowBox[{"6.5", "^", "2"}]}]}]}], ";", "\n", + RowBox[{"k", " ", "=", " ", + RowBox[{"0.249", " ", "+", " ", + RowBox[{"0.081", " ", + RowBox[{"2.5", "^", "2"}]}]}]}], ";", "\n", + RowBox[{"i", " ", + RowBox[{"(", + RowBox[{"aZero", " ", "+", " ", + RowBox[{"aOne", " ", + RowBox[{"E", "^", + RowBox[{"(", + RowBox[{ + RowBox[{"-", "k"}], "/", + RowBox[{"Cos", "[", "theta", "]"}]}], ")"}]}]}]}], ")"}]}]}], " ", + "\[IndentingNewLine]", ")"}]}], ";"}], "\[IndentingNewLine]", + RowBox[{"Plot", "[", + RowBox[{ + RowBox[{"directPower2", "[", + RowBox[{"theta", ",", " ", "150"}], "]"}], ",", " ", + RowBox[{"{", + RowBox[{"theta", ",", " ", + RowBox[{"-", "Pi"}], ",", "Pi"}], " ", "}"}]}], + "]"}], "\[IndentingNewLine]"}], "Input", + CellChangeTimes->{{3.7421016432238855`*^9, 3.7421016762983046`*^9}, { + 3.742101710290346*^9, 3.7421017696583843`*^9}, {3.7421036002747793`*^9, + 3.7421036137933455`*^9}, {3.7421036467776985`*^9, 3.742103669913103*^9}, { + 3.742103733249951*^9, 3.7421037597677054`*^9}}, + CellLabel-> + "In[111]:=",ExpressionUUID->"4ee43eea-5d3c-4c9b-b517-34980b62b0c2"], + +Cell[BoxData[ + GraphicsBox[{{{{}, {}, + TagBox[ + {RGBColor[0.368417, 0.506779, 0.709798], AbsoluteThickness[1.6], + Opacity[1.], LineBox[CompressedData[" +1:eJxTTMoPSmViYGDQBmIQ7eXJ5/xbkfMAAxRYb635wCGH4Osovp4rJoXg8/08 +/sNQCMG/uKJxXQYTgh/B8VXy2iMOOD/9+O0PGxYj+C2uK+elqSL4hVd+CU0W +ZofzT8VKvXgizAbn/923aoOVJCuc/3jTx4mBnCxwvtlCtiu93Mxwvo3SJb3u +H4xwvkw1X23PKwY4/8Icw4i0u//3w/jnMzY/N939F85fpnnRImDvbzg/Q33j +wYatCL6W6kSvjWsR/HUKgTFC8xD87eIX66/UIfgnWC8ei3BA8F8/vBCSePgX +Qv/9DXcn7kbwC+5OSDu0GcH/ciOgQnkJgv/n/IXZT1sQfL59Fx5luiH4BrMu +FBSd/Annd/iUMf08gOA/+Cc9pX4Hgt+fnL69ZzmC/07n399lrQi+2/3F/bq1 +CP68iZ6KW0oQfN9vU1wOJiP4S1ZYXXOPRvD/RD1IPxeE4K/Zr9192xHBZym6 +KJNkieDHqJSve2GA4G9JmmdhoIXgAwC6t8Qs + "]], LineBox[CompressedData[" +1:eJxF2Xk4lV3XAHCJHkmIUhGVVEIDkZLsdY5ZMkVJKkNokCHzfIeQpAwhUeaE +QmbFzixDGUtI5swZzzmV8t097/e931/n+l3XffbZe629173PtXaa2epZMDMx +MeFVTEx/Pz3p47a1W39g5/vValEfKVA6vX6Jmev/fU3v3BbuP4z/+p3A7EWx +3v+36EhAqlIpA+e2/MdEtIRsYy4Db12u/ddd6m31us8ZmLjY+a8PLbsYdSUw +cPackPpfB74UnLoYw8D2cdoaf91nUuU1cp+BzyY5aP31Ed6rXNaBDPxP97jR +X4fWcCbOezNwp/E2z78edcmXcnNm4FLVz41/rSBmVL1yg4FVJkU8oklH9a4Y +BFgwcPWAdH8M6ZnQ1G8cFxj4jOZC0GPSypSTbhH6DBx1Z0U3gXTcwiw7vyYD +t4Rm30onvZgaFZegyMCShyVGC0hrGsof2HucXA+n/VID6RT2QfxCioFfadVO +T5BefhOoKy3GwC535Ja2fqKAvu3+odKdDPwgLffIBdJZO9sdKVsZWKtd5Vcp +6dUdrmvqucl4Rvwsl+uigFGAUIwWGwP3l0yiEdKvjlbv61yh4yaN5MDqzxRg +n7z6+jydjiekqDND3RQwi+c6NThDx6rrEzbr9JL50y7ouzJKx+X8iRN8fRTg +YT5v9/0LHX+LlfFT7Sfzmc/E7NxJx3+CH26fH6RApWVaxHITHTt+MV0rOkoB +/q2au/2q6XhboInHr3EK3GycK1z7ho5dY0P8fWYo0OAVrfYgj44vRRwar1ug +wM5DJ7r5Mun4y/Vi5vEfZHz0xqMOJJPjn7cedmaigqvjw9Mqj8nxRz4WDf9D +heQoCvfFCDre7bT2vSI3Fd4XTzc53aXj0rAPd1K3UuFH96M79/zoWK7oj7qA +CBVEfiurpHrQsT5nmX7hQSpob59nLnOg4zyu0apAeSq4U57gjut0zNDJvJmg +QYVUcw3PKXM6HkwOnOI2okLLbdpRFmM63nwl4sL4NSosP0taEtCn4x9uVP9j +XlTY26D16rAmHYv7h6Zwh1FBb+qnzUklcrwndz290qjgzflM3Fyejks4TeVC +y6jQobeSEi5Bxz757YKts1RYccw0zRCh4zfSt4O2rVcEseizQpXb6Fjq9D5D +BXFFIHqyo+c46LjH+8DJQzcUIfP3ef21rHQctyChuDFMET5uZ9uw8zcNs3al +qdAKFWH/ZZNgnWkaDry5yriDTQkMAzhUr4zQcCftd3KftBL4pxevJr7QyP3C +ZrXaXAm6p7i9sptpuBR8qbk1ShDgVGHL+ZKG08v5fq9LVYbc6BsSe9JouJxl +LMd4UBl6S7aOn3hCw8OflPYN7FQBqT/2ZjdCaXhcULk/4JkKfA0QNmiyoWG3 +K3yUw82qwP78/YZhSxq2WLn3nXebGhxpdH//6yINDwVvfyN0Qw1CuNpVxbVp +OGRROT91kzocjfGTCz5IwwsXdgyyExpgXnqQnriXhtPesm5q/aoBob09eSXb +aTjVx2fVU8pJGN4hvX+ci4azkW3s8XWaEPZ8eLva7BJ+tLT/3IeCUzBRqsy6 +JncJ77Ji36GZqwOZYUUNDulLuCv37bnjSzpgfWXfg4GnSzj+aJD7NjldmN60 +XqAsdAlLim+3SKzVhVm7jkOO1ku4Z/jeh4MTekDbY248uHcJS9xEEpJnDYA5 +gsgrf7KIDfTSXuakG4HA9demLiELmG2u/ZGJqDn8aeBJnbWfw0El52/Fh9mA +bsyegs3X5nAwg5JTWGIDKRZyNQpmc1hcZzSxaMAGNJjMRkL05rBE9PmjdpK2 +ECWTu3vf4Tn8D5fJpeIPtrA/QTvNdHEWb+KZr6/2swNjp5Bnbc6z+OmV27+q +c+3BAXHoX6XPYBHrmALREQdQUsS3zUdncOsfy9WadAfgU71ZdKFzBivJ3NO4 +tNYRirW6+PXyZnCIZEarwX5HWL6QMiBnO4PXrvqz18/REfw95W05vk3jn0pQ +PLjiCFEl1sHZH6ewnu391h52Z7Aq2/7mec0UriqyLPtHwBmOVrRNJ+dPYf8r +1mdFxJ2hu/6obkz4FKa8iM8/eNIZhLpYttzSIr/PpjVzP9gZntHiUvVqJ/GA +H93Oa40LFB9ufrtUMIFD2bxOqi24wKHN99R40ibw/oMpkMbkCuk/NVsORE3g +XiumRvp6V4ipaPpq5TyBXYOPljmJuoKLdtOfz0cm8IHkyPEvxq5w5HqjfHnR +OH5uXffTosoV8pPeFQeUjOEjstu3BAe6gUTAHUh+PoYlCu+duRrhBilX1evx +ozH8os9224mnbhB56N0nhtsYtsqvN64sdAOH8nraNbkxvHpgxldpxA2kuuuk +tV9/w/XbDWn7wR2yN9TmbC4bxbf4TC3fTbuD3sUNGv2Zo1jLM3CD6A93oGUY +D6XHjuKBlx+M3Fk8QF5pYZOc6yjuUlg79YPfA+qdd3gYHx7Fca33WS1VPaC/ +x1058fkI1pJQHfwR7wEb0g52i0UNYxe+J0dOUT0hf97dYcF/GHcXD+Yd0vQE +Q1TL8cZhGB/ZPTzEdsYTnnQZo1O6w/jeUo5n9FVPEFsXnGLLMYwf2hU6HHjg +CVS7YZt83yHMZVZto9HjCQ5yj1Yr2A7iWN4NiXZXvSAyUqD3zMVB3OlhM9dq +7wX5M/H5tqcGsUFSl9o+dy+gJSVZJIoP4vrJ4r2lwV7gui6rjmVsAF9VOm5i +kekF3r3ldxtNBjBbqpjLtwkvCPIe5j2n1487P8a415p5Q3qX5ZQ9pR9bnrLY +sXTVG95JjVcHH+rHYhYRD/ntvYH927TTG85+/FqRn1XDxxv4n85ko6ivuHNF +N+b4Y2/YTdl4tDmwD8ehRzdtWr1B7vYltbFrvVjlc07gUVkfeMfwSr14shev +lbn8ZEjeBwyt45g7xXsxe6eUeiDVB5xOf35TMdWDbSw6rxWf8oGcnaclH9v0 +4C124xqV5j6wt1yFX+tmN+ZTd21zCfWBjfT9U3luXXihhyfYr88Hkq9pqosZ +deGXX7SM1IZ8QKrvWlqCXBeWSxeRWjPmAzo1z0zu/fqEF+m5rDfmfOBuxM5O +S69P2LjUvHFhFQHMhzaVb731EY9ls4a/4yXg+5Xl+z5BHVib1YaYkiag46Uk +t5ZlBxa0NnDnkCWgdNHywTalDpyeExwheowAf6L1QclKO7ZSShEzOEEAf0xa +2IJzO67uUuQnlAlQqtOJsLJow7I2u64JGRCwb30A7xHFNlyVbSy46iwBnKdf +R7DsbMPV8v5r+w0J+Ny3OzKxtxXv4o4ODzcmwIb2M7LndCvmkZl40GBOQMzu +1ChtagvWi2TzCrQnwOt6N5/QjhbMX/Dl+gEHAmrMth/4/OsD3ndzW0arIwFG +7osHeB0+4PrD7PzrXQm4/fzJoUDT91gk2WLyrDcB3f8sHLZVaMIfkOwVhWAC +UiIuSHP8bMRXx28OZdwlwHZ7vfTzgka8b+ZOBe89Alhk42WGJBoxI6w8o/s+ +AQcsVWXPCjTg3rlm7RMPCfCrfiyHGHXYZYf+hzNPCRh7fyzCorgO2wr15Tkl +EKD1+dPkXdc6LFisSIQlkvGa4Y3vYtRib8OsdpxMQM7mkBX7HzW4lVrtRn9G +wJdrntUpP6twkIW/WXs2AVQnfsHG0ipMrwsVqMghIN2n2GnOvQq/sEuty8wl +wDFycY/Cr0p86IfrL5c8AtjLre98+lWBFYWaBicLyXgKl8Zt/Ikxpb1VklpG +wDFZ2ilTd4yjOazNVkizaEqtvPhZjptrdt0vKSfgsVOGqeqvMlxTM9on8paA ++vrYPe7Lr/F6bhGLT5UERHz5+KnW8zWuntvp71lFwMV5nju8v0uxNvE7Saia +gCWBu5NZv0swv/WawXM1BAjbeuR8/VOEJx7+sMuqI2Dar8hUwqcIr7a+F3us +noDimAUet5VCHPBLrq6KtHbldScepkJsrG4k/uEdAZ6bjOWUV+XjO/yuopWN +BKiKxUyG3crDb8IKHWWbCOBBHXF9q/Lwzad1tc9JP7+iueLC/AqHiUZ73W4m +4ONr+eqM1Tm4I2PuxNYPBGxzM+ub58jGDju55x1Jh7iflH7A8xLfsKtubCZ9 +3Uuwv0EwC3dc7px1biH3i/eaI1d2ZeIbVQnydaQ1iO93Wfdl4GM3vr7c2EqA +mF+FLEin4zF/n3+ekY71z7j35dgzsj7CzCRp9oCIIXeUhoOrpZf3txEwEWRx +v0AjBQ9fMQl9TtooWGtETycZK/SM8QyRbrgre3zWIAlv+KyMt7aT6wld+03M +NAHLZrE/8CYttWPE7UHzExzimJ+fRZpnV9Huxq44nPGycFUX6fndd1pZh2Ox +1Iv9LkwdBLSKnveC7zE4cfTwpj2kc8T37/P4GYWdlwZ61Eg/OLDSUcD6EKvG +aDVeIW0n2UrMckfgodzQodukdaSTJcS3hWFT9QKRBNKXbCZyGrVCsVxwe2gR +aSHHUDaKRTA2qmbsbCLd5yZlUugRgI9aS/V9IR3v87FIPNwXd/OHVE2RLmZf +EqLqeuHJe1xtDNKyfCfeS3g74Ypn1WuZO8n4K7L/OnDmOr5um3uNjXRLvnQe +m8lZnMfdvbiOdIdjloJULkK7eyGdg3S8i/K4Tpw52qA66s9OWifHqOZEoj0K +mawPZiXdmsLDd9rRDVkHjZT8Jn/vuabF4fxkAqmvkuVZID2hUtGjcM8fOV4s +jBghLUYR9H/nHIRmm4wUOklfP+4moW8Sgi4/2cpTSfpj7LVr30UeoK3qo5xZ +pGnRMeX5W8PRoNUr6QjSfA9redw5IxFn6Q0/l7/rC1+0RKujkNGuNb8MSRve +F37NwohGnzOtHsuSdg3R4WqYeoS6fTwv8/6NT0BWkf7HeHTR7pJdJZnPLr/u +dfyNT1H3I8arh6Q9gSXn+9cEFC3aI2hJOv6EFEtBRxKS3frn+h9y/xyQV3+5 ++UMyCkr9qVVLulzOxND9XQp6Nll87i7pPtnQLFSehlS9+kY4SNscST2TVPwM +9a5bsHxH7tc/0m+YWPPSEU/3Li4/0kJSE/oNzzLQ5yM7OqbJ/X9JQuW3fthL +tHyFVTyRPC/yMWmhtIRs5KYfsBGR5vBdza1pmIN20uSTPr8nYHzaPHHaKheF +bOB+zkI6qUak+lBgHmrbK3heijyvD351hKziyke+V/dfKCDPt7fkbYO2qHx0 +WKaESYb0+fiRUYe0AnSoK19MrIGAjU5pa4tqilDh76o/k2Q9Yc480xZ4qhh9 +8dZYpU96tn/NY8POYmRgNZlYXEtAs6aVxM/hEiTDHfvahaxHASKi2idY3qDv +PaPUZrKeLY/rN5jufItoqs5inW8IWGB5cUDD4i3i8U5rWUN6YjtrhNTzt+iT +igyHzGsyHwYF51dLViC/5EEILCGgoGLTdApUoqvCvKHMf+vto49cY5eqUcng +CwH9lwRY5B9wbEmuRm8F2mq0XhBg/CGgq/hbNaJsnv6hnEXASVbZxDu2Ncgu +4P3yvgwCRO2jpcR9apHf2S1n6lMJGFAzNLB5Uo8GmYIjL8QRoDDiadr8pR4t +LP2plHlM1ptbiTckBN8hTsnoAfZYAvRKJ25PPH6HjhuxTGVGE1Ap7lVo+agB +vTkntP1dOBl/zqTNlyKbUIR/LsU2iMx3Ru2u8vYmJPMhmZMvkKxHqpMHBXmb +UYg8R3nJbbK+ENJqPWHNSM0n6C3dl3zfzdW6nr3/Hr1Yk3dMy4usRxNLU3uV +W1DGqpKdl8n3s8lRNodPl1tQaMn6pC5bAkID+H8E+Lcg+erlRXUbMp7CiHW0 +qgW1jVzm3HWdnM/5IMEUaisq9FiefXmZAN5mfq0d0IZYnjW7S5D3hcVslL3l +eAfam6irX0jeP5rEj/PYXehAIj83jseQ95PkZ0ec6nw6kOaNX5EuMuT6n+4/ +7lzdgcZElMX3SRKQGypQ136qE/lVP9pxQZTMzw16X6jJR+RbnvtoDR8B38Sy +OVkDutC8XHdPSq8PlKdl2Bund6G6w3seXfnkA1HCaR15DV2I0J9nE2nzARX+ ++Fgzrs+II6Ns5ladD6SsvbvnbcxnxP3Q1vBzrg+YjFkqeGR2Ixf2b4Xz/j7Q +nSpkM9fSi27JJr16KeIDhWuy9NLne9FOtQpzLyEfiLA6Jntp4xfEzWdzS3GL +D2ju02dqPvsFfTa6O1OwjpxP1p3w9L4vqNj2J/PheW9IzFssvDTVh25n8kTd +KfOGfJORlVG/fhQjee677ylvEN4gcbMysh8dkUOsMire8KDi5nB8aj9at3iv ++4uCN9wQZnqnX9ePTto1ZfIe8oY9w/zhlewDaEZwkcLF4w0xVjoiT8IGUE0Q +zzR0eIGHzWs1g6eDqDhTXsJM1wuoaOkyZ/Yg4jRZZnNQ9wJ27oO36soH0Z+t +YaIeFC+IyU0qOdY3iPzjaVvtJb2gcPGOmJDgENJfjhRd4PaCeXdDjm+xQ8hj +zbofGu894Vrg0gfXqGE06WdgsIP8fyFleHBKMm0YzUepnuE85gk/RK+yTRYM +ow/cY73zBz0hqKEXLnQOIz68weypoCekra/OpWwcQeazA7G3GR4wEBEewR4+ +grbHXxO/leUBhgkHz8bdG0WNNWw9a9Z7wOI/fabPn4wiZ0fFis+rPOCBbYh1 +YfYoyvDYcieB5g7vFMZvtbSOoicrSrFr+91B7ktSFgvfN1TzAhrUXrnDNn4+ +5htPviEz6a5gB313+BqxnHUiewzd9znxUe6+G3j+yijSeDuGbul02rv6usEW +83OVZ1vH0MmNGxrTndxAR6rwk/3CGLrznSls4LwbvG2xZU6THUdnw49dfrXX +DZLWD53lfDuODKPPzNa/cQXLwHfMX1smUNVGGVpgrwsYc10vetc/ga59fArM +H1xAl7zI5c9OoOog8x+2FS4g/0y78w73JLq8WjNmd5oL8NR1PpPWmUS3rsqV +MWxcoGzNoGbwh0lUYMircvSPM2wM+Bkl834Kqequl5zkcYYqf3HxkMYZRBjp +LlfzOoLcysOEPT0zSMDSMFZ+tSO8cmPiq5iYQbZs3FVp8w6QZNPJRFv7Ha3e +dCxTr9UBfA19Pl5S+46aThfFs4U6AFWi/dbhmu9oS1lL6ySLA/RfPWF949Is +6uAVbbg/Zg8XN4xUbjw3h+qF1v3W5raFBbk6hQHnBVSYul7vXYI51J7OUa7z +XkCniZSIIkdziLF+pPkiYAFp+w8tp6uZg8KT60ZuUQuIsyjFK2bWDIJXcTtv +KFxA2U/qEivADITrDV9QlhZQuEFgB+uQCegaTAgkOSyigef6R3ffMAYRm3bh +II9FtKnGmhq21RhoAW/22fgtopK9mT5qtechrjhUVi5iEcVn0JuTd5yHMYHD +p9teLaJ9Vk1xFz+fA2LQI5h5fhGpfHSh37twFrJt1/8ws1tCO3u/beGq14Op +9kP0edclxHL1vvJ5bz0QO6q/5HtrCd2+8emyt4wepDA9nksKX0JxwnfjjNN0 +ITZMdGIwfwmZjlfE/AnXgU9LJ8duli2hPprIdKCODmw0sh1lrl1C6d/N9nNy +6cB94cJB4U9LqHbWtVVVSBv88xR7zH4sobGoK6+HZU9B5Warz/OraMgltLm4 +skoTVjyCP/my0xD1yfxsv64muCu1ticJ0FDsTGP9b8eTYNt5sWnwBA2VRXmw +BX1Sh6xjvg03VWjoMkf0oaPO6jARn1rPrE1DY7vaNUw2q8Nly6lqYRMaSj/9 +Vnm/qRoY0d3KzHxpSFFXT0yKVxWiz8e/ng+mIT3bKPtttSrQgd+W+EbQ0EKz +jcJjDxXQDvqnMCmFhq5Uhtqfm1GGkCmxfKkXNKSWX/44JlMZGnS0XlUW0NAR ++8mq69eVQWnrw5eDtTTUGq8hXzOvBL5exVk3P9BQTmjCFuVSJcADPRnMXTSU +IfTm90l/JZDLEH4mPE5DD1Z/t+vargQunCqpr+ZoaMPTUG+dOUXIv3k1mfqT +hurDB4KlaxTh4PGcp2br6Oju9jPyAo6KYP20PX6el44q5k/WsmkrQsZq+mPf +bXS0K3Hz5qMSivDNij+WZzcdFQybHYlbpwgiTSdikvbTEa96uOzeaSqYHTKN +kjpCR2oGEycaWqjwNNI/slKBjjIELH2dCqnAf6HxwaA2Ha1cFlZJDKTC2YqZ +0JuGdESripz/fZMKkbt57jGb0lFHwYKOgAkV2u7I3A2/Skf6gq2JI1pU4Jox +vCN8k46eaOoGqSEqaOp5Br5yp6PUHflCByWpEFz49DbVj450Rvas9xehQh1/ +lV/bXTpaqGtLktxKBRaf0VtmkXT0vIhrbicXFWwcVhuYxtHRbQeF4qY1VOiy +2iFqkkJHNTHXsq+vUIBqfOLXxSxyvoTy4hSDAlk6Ru8v5NPR0yrBNoUFCvAp +uyQav6GjiReUbu0ZChDHIh3PV9NRWHXCMucEBSb256oaNdGRuIxBwvVRCugL +v+c/10FH/T55rw2GKFDONzl9tpeOItmcJsv6KSC6jq3izDD5vHpw0MM+CoSv +iEQaTJHxqBB4876XAssLFCv9RTrK1lAIM+6hgOXYRbnTy2R+xvtXH+6mQEuv +x3o9Fgb6+ojgUP1MAbnWmH4dDgZqtJRLD+2iQHJNQZ72RgYShtFeJtIcpW0B +WtsY6EHT7+KHnyjg/PL7uVMiDLSCJbVVSPcncezXlGCguMqCFxykNaL3MZ2U +ZqDmy06tQx8pkH9XpV1dnoHsdoY/rCMtRJinqSkx0H3t4qf5pIMcCTdVTQbK +SVyt8bdfM38lXlNFn4F8dbXv/u3nGF8o3a5szECxyyN9f/s9tbqf5hUvM5Cj +5T2JR3/7USqLNVRrBnLK/Jr7t18UK7fhEcWRgTxjqqf/9pNYDh6wBk8GyuPI +Cv1rm10nEfJnIO6ucfN/+1ubr/AohDCQV/NJvb+mctwekY8knzcsO/nXWUxJ +xcfjGEhsOfzffhffUvlduRQGml21+J9+2XjPxWNZDPTDq/lfT3xhSB7NZ6DJ +/pp/XV4r1SVTzUDHwv/TXwvPtvY+3MFALv/bf5O71d9wYJGB/q8fN6inv1ls +44//+n/7e//1/wDA6jAS + "]], LineBox[CompressedData[" +1:eJxTTMoPSmViYGAwAGIQvSVpnoWB1k97BijoUjmRrGqC4H+ReGqmYoPgx/Ey +cSm7IPhG36w3KIQg+HNeRTTLxyD4bPdLw+RSEPxbx9f/kS5B8BtnKnuKT0Hw +ddiX/nk7G8G/UaK24chiBF8vQFO8aDOSeWz6T89cQvBNSqwamwR/wfnP/AJ3 +vu1D8L1Z6jWPdP6G89d55t54t/IvnG8xa//Rc0v/I+STLjmIPWNwgPHTFEK0 +Hb8wwvmbHrNvdfvABOd7ibCqdTOywPllXiZmqxhY4fyTKz4FHf2F4GeU/AqT +52KH82e7mvwKZueA81etDZ++jxvB3yFabaIpgOBfe3ow758Egi/Q5v94hRaC +33Ys68xfXwS/yH3hvOVTEPzG9UeshWYi+BPEX9yomYvgr32uJxy0DMF/0b6n +/c92BD/uxPWCwNsIfq7Bb9499xH8mhlyq9WeIPgzM1Kf/n6D4F/h+By57B+C +/7hA7LsAMyec/+mG5ZRqdgSff2XDuQABBF9OcEn2bhEEX6fyOIeaJIJv/fDV +0gmyCL6XJ5/zb0UEHwD4t6lD + "]]}, + Annotation[#, + "Charting`Private`Tag$17319#1"]& ], {}}, {{}, {}, {}}}, {}, {}}, + AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948], + Axes->{True, True}, + AxesLabel->{None, None}, + AxesOrigin->{0, 0}, + DisplayFunction->Identity, + Frame->{{False, False}, {False, False}}, + FrameLabel->{{None, None}, {None, None}}, + FrameTicks->{{Automatic, + Charting`ScaledFrameTicks[{Identity, Identity}]}, {Automatic, + Charting`ScaledFrameTicks[{Identity, Identity}]}}, + GridLines->{None, None}, + GridLinesStyle->Directive[ + GrayLevel[0.5, 0.4]], + ImagePadding->All, + Method->{ + "DefaultBoundaryStyle" -> Automatic, "DefaultMeshStyle" -> + AbsolutePointSize[6], "ScalingFunctions" -> None, + "CoordinatesToolOptions" -> {"DisplayFunction" -> ({ + (Identity[#]& )[ + Part[#, 1]], + (Identity[#]& )[ + Part[#, 2]]}& ), "CopiedValueFunction" -> ({ + (Identity[#]& )[ + Part[#, 1]], + (Identity[#]& )[ + Part[#, 2]]}& )}}, + PlotRange-> + NCache[{{-Pi, Pi}, {0., 538.6311802928145}}, {{-3.141592653589793, + 3.141592653589793}, {0., 538.6311802928145}}], + PlotRangeClipping->True, + PlotRangePadding->{{ + Scaled[0.02], + Scaled[0.02]}, { + Scaled[0.05], + Scaled[0.05]}}, + Ticks->{Automatic, Automatic}]], "Output", + CellChangeTimes->{3.7421016806944184`*^9, 3.7421017173763914`*^9, + 3.7421017703669147`*^9, 3.7421036149251394`*^9, 3.742103649424573*^9, + 3.742103761149684*^9}, + CellLabel-> + "Out[111]=",ExpressionUUID->"c599dd44-7c4a-4093-b9ca-6abe0cb6756b"], + +Cell[BoxData[ + GraphicsBox[{{{{}, {}, + TagBox[ + {RGBColor[0.368417, 0.506779, 0.709798], AbsoluteThickness[1.6], + Opacity[1.], LineBox[CompressedData[" +1:eJwV03k0lesXB/BzDs55DZEoMynKlEgqw2ULlVxlaFBXkqGuBik00CAhoRAp +Edd7jnnIrIh3O6JCIULSvXKLyr0n6mpQzvm9vz+e9azPWs9az97fvba271H3 +ABaDwWimz//vzU6y9j+0JTGhQIOrrkCCVe2ZKUJTEhNVhh01aRtpT95epCqJ +dV0zK5bS1riyy1lnkSSaBp3+zZC27PeH30wXSOKPkJCna2iL/Nfk28pKopHG +t1hH2lM9PA8XKUl0Oa4ds5P2qLUC8ze2JKKj3OPDtHsLL5T/zpJE59UT7jG0 ++YpTv50QEliZ178kl3ZVpLdk9CyBJ54QFkib+09XXcoXArklDdfHaKd5Wvnn +fCKwet5yC0KRhJgHRfJlAgKvJSUvNaV9wkSZavhAIGbZbt9D25OYURkYI3BO +rSyJou0U6vfw7z8J5JxTyZihbTnaGzo9TKDFluWTxgtJUL9b3i3TR2CbY+vB +EtrzdDTOqnYT2ChvnCGgLUxKMNDrJLD25md580V0fwd+j7FvJdArM+5NJ+3e +voFVbhSBzcV+tupKdH+2jqPejQSycivGj9LmKS2xCq8m8PP6b+rayiQcePhy +qoJL4PaZaYsSFbpes83ZzTkEmmWOSy5SJWFTzl3nrkwC3YNuGEbTNjh5PX8i +lUAPOYcDB9VIECzb6qUZTWCddf2AtwYJf11rkjSKJDA9ws35De0eoWG9xRkC +b2QfUz6iSec7QCzYHkrgYb4axmnRecXyHyb4E7gnyHPfO226nk8mYRk+BMbp +rKuLW0LX452zpMCLQG0DwSGjpXRea86c5W8j0HR1hPCsDglzb83NvjsQuPx8 +52un5SREOxZl79clUKm7pDVmBQmYEO6qpU3g0Jz6jyBjEn72OrOG1AkMDAYH +r5UkhHgLApwUCdxbl6Jgb0qC70mzFUZiBPpclBq1MyfBtqipcXqUg7JP/NXZ +NiSEf7x6pHiEg131T4JNbUmoM/fR8hviYMKzL7M+QIIxn3Wxv5uD9z+8auha +T8/z5cbN9c0cFC47Yza4kYRZmWdDZ7I4ONChf7bBnYQ1Htx485scjBf6nTLY +RsLxjFBrQSoHlya7DGZvJ+G9rtIfexM4GHBJ9UmaJwlDNl4H1odz8Pu5kJla +b/r/4PEZjicH4ZfrDj2HSDjWP7sgVYGDR+IFWecvk5DuvnV3mhwH7dnDgz4J +JNzv4eZel+ZgZmStx4YrJLCf/GpyU4yDG5rKNTRTSMhqy3a5/ZmNBvsUA5kZ +JDyqWx9X0MfGenu90FtF9LxX3+gu7GbjrrbL3JYSEhSqJxcVd7Kx2yJ2x79l +JHjfScsrbWWjTvbFXe5VJHwuGOdXVrPxOD95u0cjCZoZ8XONqWzc2j6wx/wp +CQ5Kfzk0JbHRomeGWdBDQuB1s8TmBDZWV3JOafSRUJMyotpykY3O054flYfo +/Yk3XtcewkZ1h+/k5jESQiOeHe/xYOM8aVnZ7K8kdOxRffdGgY0c1vOwlcu4 +sDXH2nZWjo2nDnbordXnQv+od7qcDBt7n6VYOxhx4ZUf18FSnI1Zxd9yg1Zx +YSrQKDfpPwl8qXlmuYQtF5RO2Oy2fC6BwS8vB9vu4oL/Vd+upHQJVPJq3aZ1 +jQvvu6OX5l2TQPsvBbWvr3MhSL4gvOGqBKqqbAkrzuDCybRJvbexEihsF5hv +zeVC/K3QGMuTEij96POD8QouVOTH2rzdKYFZVd4lO3q5MNdcXGGpIoGHWiq3 +X1TiQdfwSpkfihJ4S5C/Kl6dB1lfag40zpfAX4NDdW9p88DamNK0JiQwpNLk +ynNDHoTf7kv85as41nuuMLsPPPgS8fN3eC6OXocKxnYe5sHUui3aG1LEcYa9 +LMK5kwe4re8M+4o4um5y/nqjlwdJwZ5D7XHiOFsVK/g4yAPjQt+kjZHiOPF0 +YTH/DQ+OKJ2c23RUHIcHLSZmhDz4MJPzwtlFHKUiYgWF5nnwd9V0ipukOC4o +5+b+LM2DLPZs1G4JcRS0FMf61uTBjt2sUD+mOG5aFBb4vDEPHjEVdoR9F8Pk +Vfy0sY48KHddrZrxXgzLPfjxt9/nwSnBCXL0sRgecs/ffEc/H2QMflYdjRfD +7+3rIrVq86HtrDjvVKwYFo6Wqfk058O5XpnrF6LEUE9ud3vlw3yYPqVxMjVc +DDWa3SbihvNh4KGNVf1BMWQraLdJMQsgN+BCq3Az/f7LpEyUWwGsyWX3X5EW +w6g07+gYZiFYdh97bMcRQ7NDfF0r2UKwmRtpnmGJ4T/HXN5JqxXChl3VRXtm +WRjxY1wkWl0IO+V9zq94z8IjryyYVgcL4dSFewZP2lnYpNwR7DBcCGfu6Cy+ +wGehIPai4rN3hRD5KmmheTMLA06OL478WghxFvsZt2tZuDu//7PNwiK4Ob1g +4DCPhZHfbHe6uxfBvX2HL8hEsfDcA8VPhn1F0Jw0eALPsvCShpT/1N9FwG9a +fzj0NAtXv9CafflfEXSoqOwcCWbhzX8+nTdQKobh3jaj0r0stDJ9NFq1pxhm +7bSGnH9hoZbDdPTEp2KwXvLMOOEbE2/5KbxeuL4U/lCQXu3xHxNPj5i8CfIs +BTEJBwu1KSY+ElxmMY+WQsdErX3JBBPTDc1r+7JKwbMsw7NzgIlvUlKanH6U +Qui6fVHStUxsqYvJtHpQBkP6ty71VTBx8nV1euKfZWCl1peYWcrEeVs+zdP9 +XgYsocMNQx4Tc2Vj8k1WlkNyq16pcyoTXVLbNXuzy6F0y9TzhGNMTGA+KrO5 +cgfmg/5LjyNMPPKh3zql9A6EmPqOqgUy8Y+19xpsuu6ApWL/hxIfJhaGmS/x +ZFfAoxf1os6tTLRKjm+VdqqAN/7n9WWMmWiyx27SZKgCNu24a9yvz8TBPXph +8ycroGTjtFmWLhNbP619ayCsgOMGfjZGGkxcoVp0VlG3EhhTGzx+lWHiyDL7 +n4NhlaAeIXs28QMDowqs7BbrVEEgr0Pp9jgDdRK8zHkWVVD3JLaqbIyBGY9N +Xx3aWgVui0UTT4cZGHYp9nNHRBXEtn10l+9kYKvXnYAPg1XwUa5XL72Egfv8 +Lr8ezK4Ga4srrfkFDFxiZK296l41xPs6eddzGVj/gmU43lcNOrUtqUOZDNTm ++Xr4StWA5+4qoWoiA//N9LcbiagBPi+1P+cwA9dvS2yMPV4Lck+3Hq34nYHh +0Z0HvFNrweurtFSLPwMrY6XlK2pq4atTtO2YFwOPOd5w7vxWC0YfQ4t1XBi4 +f92xEoNLdXBa2dTR3ImBp9tdtdRK66Dd7t+/HB0ZqMkrt8zsrQOftICFB35h +4J8H9xXu0KyH6xY7IotWMDCZejWhSNXDmO8CtQZ9BjZdqksfeVcPJolPazt0 +GbjIwaRxi8Jd6Phzw+SkBgP/WNpM2h28C8KLa3cYyzLw1sTavmeL70FPlqnn +/lciSqnpgsm1mgZg8I6mv+oXUc3dV1eXf2wAk5Ky/m1dIkpotnj7P4aNkHxP +382+UUQt0FihLChoBNcB7c2LM0SU9xXH5dPl9+l93Bt3I1lEuTdGvZX47z5U +vLndLhsnoup/zCVGWTbB/M8q9nMnRNTXAH7aSGcT9MgtsB7eJqLWSR+lNjIp +YCi5hrv9KqIsrYIqn7hTYKJ59e4jexE1fS3/o1I+BclGUub1q0SUICaKUNZH +cHViGafNF1FPAzebsl8jRLrCYWlCRJUX/zxdIN8CFTvPFUeJhNSSbXflA+1b +YP7+2WXHBELKuvWb//HiFuiJ+qS1pUtIGbzeK6y/xAdGvIl3W6uQktTL6Qnh +88EkJSjLulFIRbxs08kT8iE554OyYbGQ0gWx95kRreB6f0yeiBNSpOXTEL/L +DyCydbHr+fNCah/JvuDW+wAqOryvfjkhpGom9joaqbXB/BfDUm8DhFTjV7V5 +0zVtkDg2/Po4bbsyzQmXe23wP2TXuHU= + "]], LineBox[CompressedData[" +1:eJxF2Xk4lV3XAHCJHkmIUhGVVEIDkZLsdY5ZMkVJKkNokCHzfIeQpAwhUeaE +QmbFzixDGUtI5swZzzmV8t097/e931/n+l3XffbZe629173PtXaa2epZMDMx +MeFVTEx/Pz3p47a1W39g5/vValEfKVA6vX6Jmev/fU3v3BbuP4z/+p3A7EWx +3v+36EhAqlIpA+e2/MdEtIRsYy4Db12u/ddd6m31us8ZmLjY+a8PLbsYdSUw +cPackPpfB74UnLoYw8D2cdoaf91nUuU1cp+BzyY5aP31Ed6rXNaBDPxP97jR +X4fWcCbOezNwp/E2z78edcmXcnNm4FLVz41/rSBmVL1yg4FVJkU8oklH9a4Y +BFgwcPWAdH8M6ZnQ1G8cFxj4jOZC0GPSypSTbhH6DBx1Z0U3gXTcwiw7vyYD +t4Rm30onvZgaFZegyMCShyVGC0hrGsof2HucXA+n/VID6RT2QfxCioFfadVO +T5BefhOoKy3GwC535Ja2fqKAvu3+odKdDPwgLffIBdJZO9sdKVsZWKtd5Vcp +6dUdrmvqucl4Rvwsl+uigFGAUIwWGwP3l0yiEdKvjlbv61yh4yaN5MDqzxRg +n7z6+jydjiekqDND3RQwi+c6NThDx6rrEzbr9JL50y7ouzJKx+X8iRN8fRTg +YT5v9/0LHX+LlfFT7Sfzmc/E7NxJx3+CH26fH6RApWVaxHITHTt+MV0rOkoB +/q2au/2q6XhboInHr3EK3GycK1z7ho5dY0P8fWYo0OAVrfYgj44vRRwar1ug +wM5DJ7r5Mun4y/Vi5vEfZHz0xqMOJJPjn7cedmaigqvjw9Mqj8nxRz4WDf9D +heQoCvfFCDre7bT2vSI3Fd4XTzc53aXj0rAPd1K3UuFH96M79/zoWK7oj7qA +CBVEfiurpHrQsT5nmX7hQSpob59nLnOg4zyu0apAeSq4U57gjut0zNDJvJmg +QYVUcw3PKXM6HkwOnOI2okLLbdpRFmM63nwl4sL4NSosP0taEtCn4x9uVP9j +XlTY26D16rAmHYv7h6Zwh1FBb+qnzUklcrwndz290qjgzflM3Fyejks4TeVC +y6jQobeSEi5Bxz757YKts1RYccw0zRCh4zfSt4O2rVcEseizQpXb6Fjq9D5D +BXFFIHqyo+c46LjH+8DJQzcUIfP3ef21rHQctyChuDFMET5uZ9uw8zcNs3al +qdAKFWH/ZZNgnWkaDry5yriDTQkMAzhUr4zQcCftd3KftBL4pxevJr7QyP3C +ZrXaXAm6p7i9sptpuBR8qbk1ShDgVGHL+ZKG08v5fq9LVYbc6BsSe9JouJxl +LMd4UBl6S7aOn3hCw8OflPYN7FQBqT/2ZjdCaXhcULk/4JkKfA0QNmiyoWG3 +K3yUw82qwP78/YZhSxq2WLn3nXebGhxpdH//6yINDwVvfyN0Qw1CuNpVxbVp +OGRROT91kzocjfGTCz5IwwsXdgyyExpgXnqQnriXhtPesm5q/aoBob09eSXb +aTjVx2fVU8pJGN4hvX+ci4azkW3s8XWaEPZ8eLva7BJ+tLT/3IeCUzBRqsy6 +JncJ77Ji36GZqwOZYUUNDulLuCv37bnjSzpgfWXfg4GnSzj+aJD7NjldmN60 +XqAsdAlLim+3SKzVhVm7jkOO1ku4Z/jeh4MTekDbY248uHcJS9xEEpJnDYA5 +gsgrf7KIDfTSXuakG4HA9demLiELmG2u/ZGJqDn8aeBJnbWfw0El52/Fh9mA +bsyegs3X5nAwg5JTWGIDKRZyNQpmc1hcZzSxaMAGNJjMRkL05rBE9PmjdpK2 +ECWTu3vf4Tn8D5fJpeIPtrA/QTvNdHEWb+KZr6/2swNjp5Bnbc6z+OmV27+q +c+3BAXHoX6XPYBHrmALREQdQUsS3zUdncOsfy9WadAfgU71ZdKFzBivJ3NO4 +tNYRirW6+PXyZnCIZEarwX5HWL6QMiBnO4PXrvqz18/REfw95W05vk3jn0pQ +PLjiCFEl1sHZH6ewnu391h52Z7Aq2/7mec0UriqyLPtHwBmOVrRNJ+dPYf8r +1mdFxJ2hu/6obkz4FKa8iM8/eNIZhLpYttzSIr/PpjVzP9gZntHiUvVqJ/GA +H93Oa40LFB9ufrtUMIFD2bxOqi24wKHN99R40ibw/oMpkMbkCuk/NVsORE3g +XiumRvp6V4ipaPpq5TyBXYOPljmJuoKLdtOfz0cm8IHkyPEvxq5w5HqjfHnR +OH5uXffTosoV8pPeFQeUjOEjstu3BAe6gUTAHUh+PoYlCu+duRrhBilX1evx +ozH8os9224mnbhB56N0nhtsYtsqvN64sdAOH8nraNbkxvHpgxldpxA2kuuuk +tV9/w/XbDWn7wR2yN9TmbC4bxbf4TC3fTbuD3sUNGv2Zo1jLM3CD6A93oGUY +D6XHjuKBlx+M3Fk8QF5pYZOc6yjuUlg79YPfA+qdd3gYHx7Fca33WS1VPaC/ +x1058fkI1pJQHfwR7wEb0g52i0UNYxe+J0dOUT0hf97dYcF/GHcXD+Yd0vQE +Q1TL8cZhGB/ZPTzEdsYTnnQZo1O6w/jeUo5n9FVPEFsXnGLLMYwf2hU6HHjg +CVS7YZt83yHMZVZto9HjCQ5yj1Yr2A7iWN4NiXZXvSAyUqD3zMVB3OlhM9dq +7wX5M/H5tqcGsUFSl9o+dy+gJSVZJIoP4vrJ4r2lwV7gui6rjmVsAF9VOm5i +kekF3r3ldxtNBjBbqpjLtwkvCPIe5j2n1487P8a415p5Q3qX5ZQ9pR9bnrLY +sXTVG95JjVcHH+rHYhYRD/ntvYH927TTG85+/FqRn1XDxxv4n85ko6ivuHNF +N+b4Y2/YTdl4tDmwD8ehRzdtWr1B7vYltbFrvVjlc07gUVkfeMfwSr14shev +lbn8ZEjeBwyt45g7xXsxe6eUeiDVB5xOf35TMdWDbSw6rxWf8oGcnaclH9v0 +4C124xqV5j6wt1yFX+tmN+ZTd21zCfWBjfT9U3luXXihhyfYr88Hkq9pqosZ +deGXX7SM1IZ8QKrvWlqCXBeWSxeRWjPmAzo1z0zu/fqEF+m5rDfmfOBuxM5O +S69P2LjUvHFhFQHMhzaVb731EY9ls4a/4yXg+5Xl+z5BHVib1YaYkiag46Uk +t5ZlBxa0NnDnkCWgdNHywTalDpyeExwheowAf6L1QclKO7ZSShEzOEEAf0xa +2IJzO67uUuQnlAlQqtOJsLJow7I2u64JGRCwb30A7xHFNlyVbSy46iwBnKdf +R7DsbMPV8v5r+w0J+Ny3OzKxtxXv4o4ODzcmwIb2M7LndCvmkZl40GBOQMzu +1ChtagvWi2TzCrQnwOt6N5/QjhbMX/Dl+gEHAmrMth/4/OsD3ndzW0arIwFG +7osHeB0+4PrD7PzrXQm4/fzJoUDT91gk2WLyrDcB3f8sHLZVaMIfkOwVhWAC +UiIuSHP8bMRXx28OZdwlwHZ7vfTzgka8b+ZOBe89Alhk42WGJBoxI6w8o/s+ +AQcsVWXPCjTg3rlm7RMPCfCrfiyHGHXYZYf+hzNPCRh7fyzCorgO2wr15Tkl +EKD1+dPkXdc6LFisSIQlkvGa4Y3vYtRib8OsdpxMQM7mkBX7HzW4lVrtRn9G +wJdrntUpP6twkIW/WXs2AVQnfsHG0ipMrwsVqMghIN2n2GnOvQq/sEuty8wl +wDFycY/Cr0p86IfrL5c8AtjLre98+lWBFYWaBicLyXgKl8Zt/Ikxpb1VklpG +wDFZ2ilTd4yjOazNVkizaEqtvPhZjptrdt0vKSfgsVOGqeqvMlxTM9on8paA ++vrYPe7Lr/F6bhGLT5UERHz5+KnW8zWuntvp71lFwMV5nju8v0uxNvE7Saia +gCWBu5NZv0swv/WawXM1BAjbeuR8/VOEJx7+sMuqI2Dar8hUwqcIr7a+F3us +noDimAUet5VCHPBLrq6KtHbldScepkJsrG4k/uEdAZ6bjOWUV+XjO/yuopWN +BKiKxUyG3crDb8IKHWWbCOBBHXF9q/Lwzad1tc9JP7+iueLC/AqHiUZ73W4m +4ONr+eqM1Tm4I2PuxNYPBGxzM+ub58jGDju55x1Jh7iflH7A8xLfsKtubCZ9 +3Uuwv0EwC3dc7px1biH3i/eaI1d2ZeIbVQnydaQ1iO93Wfdl4GM3vr7c2EqA +mF+FLEin4zF/n3+ekY71z7j35dgzsj7CzCRp9oCIIXeUhoOrpZf3txEwEWRx +v0AjBQ9fMQl9TtooWGtETycZK/SM8QyRbrgre3zWIAlv+KyMt7aT6wld+03M +NAHLZrE/8CYttWPE7UHzExzimJ+fRZpnV9Huxq44nPGycFUX6fndd1pZh2Ox +1Iv9LkwdBLSKnveC7zE4cfTwpj2kc8T37/P4GYWdlwZ61Eg/OLDSUcD6EKvG +aDVeIW0n2UrMckfgodzQodukdaSTJcS3hWFT9QKRBNKXbCZyGrVCsVxwe2gR +aSHHUDaKRTA2qmbsbCLd5yZlUugRgI9aS/V9IR3v87FIPNwXd/OHVE2RLmZf +EqLqeuHJe1xtDNKyfCfeS3g74Ypn1WuZO8n4K7L/OnDmOr5um3uNjXRLvnQe +m8lZnMfdvbiOdIdjloJULkK7eyGdg3S8i/K4Tpw52qA66s9OWifHqOZEoj0K +mawPZiXdmsLDd9rRDVkHjZT8Jn/vuabF4fxkAqmvkuVZID2hUtGjcM8fOV4s +jBghLUYR9H/nHIRmm4wUOklfP+4moW8Sgi4/2cpTSfpj7LVr30UeoK3qo5xZ +pGnRMeX5W8PRoNUr6QjSfA9redw5IxFn6Q0/l7/rC1+0RKujkNGuNb8MSRve +F37NwohGnzOtHsuSdg3R4WqYeoS6fTwv8/6NT0BWkf7HeHTR7pJdJZnPLr/u +dfyNT1H3I8arh6Q9gSXn+9cEFC3aI2hJOv6EFEtBRxKS3frn+h9y/xyQV3+5 ++UMyCkr9qVVLulzOxND9XQp6Nll87i7pPtnQLFSehlS9+kY4SNscST2TVPwM +9a5bsHxH7tc/0m+YWPPSEU/3Li4/0kJSE/oNzzLQ5yM7OqbJ/X9JQuW3fthL +tHyFVTyRPC/yMWmhtIRs5KYfsBGR5vBdza1pmIN20uSTPr8nYHzaPHHaKheF +bOB+zkI6qUak+lBgHmrbK3heijyvD351hKziyke+V/dfKCDPt7fkbYO2qHx0 +WKaESYb0+fiRUYe0AnSoK19MrIGAjU5pa4tqilDh76o/k2Q9Yc480xZ4qhh9 +8dZYpU96tn/NY8POYmRgNZlYXEtAs6aVxM/hEiTDHfvahaxHASKi2idY3qDv +PaPUZrKeLY/rN5jufItoqs5inW8IWGB5cUDD4i3i8U5rWUN6YjtrhNTzt+iT +igyHzGsyHwYF51dLViC/5EEILCGgoGLTdApUoqvCvKHMf+vto49cY5eqUcng +CwH9lwRY5B9wbEmuRm8F2mq0XhBg/CGgq/hbNaJsnv6hnEXASVbZxDu2Ncgu +4P3yvgwCRO2jpcR9apHf2S1n6lMJGFAzNLB5Uo8GmYIjL8QRoDDiadr8pR4t +LP2plHlM1ptbiTckBN8hTsnoAfZYAvRKJ25PPH6HjhuxTGVGE1Ap7lVo+agB +vTkntP1dOBl/zqTNlyKbUIR/LsU2iMx3Ru2u8vYmJPMhmZMvkKxHqpMHBXmb +UYg8R3nJbbK+ENJqPWHNSM0n6C3dl3zfzdW6nr3/Hr1Yk3dMy4usRxNLU3uV +W1DGqpKdl8n3s8lRNodPl1tQaMn6pC5bAkID+H8E+Lcg+erlRXUbMp7CiHW0 +qgW1jVzm3HWdnM/5IMEUaisq9FiefXmZAN5mfq0d0IZYnjW7S5D3hcVslL3l +eAfam6irX0jeP5rEj/PYXehAIj83jseQ95PkZ0ec6nw6kOaNX5EuMuT6n+4/ +7lzdgcZElMX3SRKQGypQ136qE/lVP9pxQZTMzw16X6jJR+RbnvtoDR8B38Sy +OVkDutC8XHdPSq8PlKdl2Bund6G6w3seXfnkA1HCaR15DV2I0J9nE2nzARX+ ++Fgzrs+II6Ns5ladD6SsvbvnbcxnxP3Q1vBzrg+YjFkqeGR2Ixf2b4Xz/j7Q +nSpkM9fSi27JJr16KeIDhWuy9NLne9FOtQpzLyEfiLA6Jntp4xfEzWdzS3GL +D2ju02dqPvsFfTa6O1OwjpxP1p3w9L4vqNj2J/PheW9IzFssvDTVh25n8kTd +KfOGfJORlVG/fhQjee677ylvEN4gcbMysh8dkUOsMire8KDi5nB8aj9at3iv ++4uCN9wQZnqnX9ePTto1ZfIe8oY9w/zhlewDaEZwkcLF4w0xVjoiT8IGUE0Q +zzR0eIGHzWs1g6eDqDhTXsJM1wuoaOkyZ/Yg4jRZZnNQ9wJ27oO36soH0Z+t +YaIeFC+IyU0qOdY3iPzjaVvtJb2gcPGOmJDgENJfjhRd4PaCeXdDjm+xQ8hj +zbofGu894Vrg0gfXqGE06WdgsIP8fyFleHBKMm0YzUepnuE85gk/RK+yTRYM +ow/cY73zBz0hqKEXLnQOIz68weypoCekra/OpWwcQeazA7G3GR4wEBEewR4+ +grbHXxO/leUBhgkHz8bdG0WNNWw9a9Z7wOI/fabPn4wiZ0fFis+rPOCBbYh1 +YfYoyvDYcieB5g7vFMZvtbSOoicrSrFr+91B7ktSFgvfN1TzAhrUXrnDNn4+ +5htPviEz6a5gB313+BqxnHUiewzd9znxUe6+G3j+yijSeDuGbul02rv6usEW +83OVZ1vH0MmNGxrTndxAR6rwk/3CGLrznSls4LwbvG2xZU6THUdnw49dfrXX +DZLWD53lfDuODKPPzNa/cQXLwHfMX1smUNVGGVpgrwsYc10vetc/ga59fArM +H1xAl7zI5c9OoOog8x+2FS4g/0y78w73JLq8WjNmd5oL8NR1PpPWmUS3rsqV +MWxcoGzNoGbwh0lUYMircvSPM2wM+Bkl834Kqequl5zkcYYqf3HxkMYZRBjp +LlfzOoLcysOEPT0zSMDSMFZ+tSO8cmPiq5iYQbZs3FVp8w6QZNPJRFv7Ha3e +dCxTr9UBfA19Pl5S+46aThfFs4U6AFWi/dbhmu9oS1lL6ySLA/RfPWF949Is +6uAVbbg/Zg8XN4xUbjw3h+qF1v3W5raFBbk6hQHnBVSYul7vXYI51J7OUa7z +XkCniZSIIkdziLF+pPkiYAFp+w8tp6uZg8KT60ZuUQuIsyjFK2bWDIJXcTtv +KFxA2U/qEivADITrDV9QlhZQuEFgB+uQCegaTAgkOSyigef6R3ffMAYRm3bh +II9FtKnGmhq21RhoAW/22fgtopK9mT5qtechrjhUVi5iEcVn0JuTd5yHMYHD +p9teLaJ9Vk1xFz+fA2LQI5h5fhGpfHSh37twFrJt1/8ws1tCO3u/beGq14Op +9kP0edclxHL1vvJ5bz0QO6q/5HtrCd2+8emyt4wepDA9nksKX0JxwnfjjNN0 +ITZMdGIwfwmZjlfE/AnXgU9LJ8duli2hPprIdKCODmw0sh1lrl1C6d/N9nNy +6cB94cJB4U9LqHbWtVVVSBv88xR7zH4sobGoK6+HZU9B5Warz/OraMgltLm4 +skoTVjyCP/my0xD1yfxsv64muCu1ticJ0FDsTGP9b8eTYNt5sWnwBA2VRXmw +BX1Sh6xjvg03VWjoMkf0oaPO6jARn1rPrE1DY7vaNUw2q8Nly6lqYRMaSj/9 +Vnm/qRoY0d3KzHxpSFFXT0yKVxWiz8e/ng+mIT3bKPtttSrQgd+W+EbQ0EKz +jcJjDxXQDvqnMCmFhq5Uhtqfm1GGkCmxfKkXNKSWX/44JlMZGnS0XlUW0NAR ++8mq69eVQWnrw5eDtTTUGq8hXzOvBL5exVk3P9BQTmjCFuVSJcADPRnMXTSU +IfTm90l/JZDLEH4mPE5DD1Z/t+vargQunCqpr+ZoaMPTUG+dOUXIv3k1mfqT +hurDB4KlaxTh4PGcp2br6Oju9jPyAo6KYP20PX6el44q5k/WsmkrQsZq+mPf +bXS0K3Hz5qMSivDNij+WZzcdFQybHYlbpwgiTSdikvbTEa96uOzeaSqYHTKN +kjpCR2oGEycaWqjwNNI/slKBjjIELH2dCqnAf6HxwaA2Ha1cFlZJDKTC2YqZ +0JuGdESripz/fZMKkbt57jGb0lFHwYKOgAkV2u7I3A2/Skf6gq2JI1pU4Jox +vCN8k46eaOoGqSEqaOp5Br5yp6PUHflCByWpEFz49DbVj450Rvas9xehQh1/ +lV/bXTpaqGtLktxKBRaf0VtmkXT0vIhrbicXFWwcVhuYxtHRbQeF4qY1VOiy +2iFqkkJHNTHXsq+vUIBqfOLXxSxyvoTy4hSDAlk6Ru8v5NPR0yrBNoUFCvAp +uyQav6GjiReUbu0ZChDHIh3PV9NRWHXCMucEBSb256oaNdGRuIxBwvVRCugL +v+c/10FH/T55rw2GKFDONzl9tpeOItmcJsv6KSC6jq3izDD5vHpw0MM+CoSv +iEQaTJHxqBB4876XAssLFCv9RTrK1lAIM+6hgOXYRbnTy2R+xvtXH+6mQEuv +x3o9Fgb6+ojgUP1MAbnWmH4dDgZqtJRLD+2iQHJNQZ72RgYShtFeJtIcpW0B +WtsY6EHT7+KHnyjg/PL7uVMiDLSCJbVVSPcncezXlGCguMqCFxykNaL3MZ2U +ZqDmy06tQx8pkH9XpV1dnoHsdoY/rCMtRJinqSkx0H3t4qf5pIMcCTdVTQbK +SVyt8bdfM38lXlNFn4F8dbXv/u3nGF8o3a5szECxyyN9f/s9tbqf5hUvM5Cj +5T2JR3/7USqLNVRrBnLK/Jr7t18UK7fhEcWRgTxjqqf/9pNYDh6wBk8GyuPI +Cv1rm10nEfJnIO6ucfN/+1ubr/AohDCQV/NJvb+mctwekY8knzcsO/nXWUxJ +xcfjGEhsOfzffhffUvlduRQGml21+J9+2XjPxWNZDPTDq/lfT3xhSB7NZ6DJ +/pp/XV4r1SVTzUDHwv/TXwvPtvY+3MFALv/bf5O71d9wYJGB/q8fN6inv1ls +44//+n/7e//1/wDA6jAS + "]], LineBox[CompressedData[" +1:eJwV1mk41IsXB/DZ5ydlD21EiHQlRELzRQotIrft1qWFKCFJi1RU1hQhpMRv +rGMZS8hWZEkhoZRuC0pJiVTIMvOf/4vznOfz6pzvm/Mclf1eDi40CoXyUFT/ +7yUB52WuuQg45nlKnzeXN6BvqUf7fjcBx3nfkMbk7QaoHVOxd/AWcIL8yi6z +tjfAtaLrmfkpAUe1cki7W7IBg5vMny0OFXB2q1tlxYXW4+cx+bZ3mQKO+Mjv +rsErdTCsbN7ylC/gfInJ10uzr8MpRuDT6jIBx7PXaE6lQh2mb3xtvfVIwNnz +4ulfXZkPwaiqadn9WcB5Z1KtlNNVi/VMv022wwKOVaTBOsP0WoRu0W4xHhdw +PnmW8zt8azGnN65ZkS3kxFl7ZSgr1EKedeRJl4aQs017R6fJoRrstFts26gj +5MzqfVt6wawGNxNePC4xFHLiB8JckuVqoKSNx7HrhZwFf/e0JYQ/wNKtc5sc +XIWc8IY3H/lO97H65oOGp+lCzqRn7HirbRU+6vBN3fKFnOa5LeVXiSpE1yUX +U8uEHM5MU1zSo0oMfgtINWgScjYOqG/zs6nELY5pwM1BIUflYw7F5p8KWD/X +/qX/U8g5Ts/xClStwG+3BUdap4Qcs/f8iMbBciy1CVh+gUVB86Wy+n/OleOC +z575xQoU6Kr41VMK76HL9PkL4QIKJOaYXv56/h6WszdFb1pMgbVm4oIiu3vo +TjIhPmlSULU7sLX6Rxn0GuaPKa6hYJ+j1mwrThn6Fbrbz+2hYNpj7LfBdAlM ++7ZGNjtTEDfk9qmoqwTXc5usFV0oSM19e6qpsARrze89KDxKgabYftc89xIk +HI7P+3iOgkb305fYPXdhW/13mG0qBYUFsf6hH4uREtK6Lj6dgqgf2Y6qj4ox +Zm9F+ZgtyvPfmsOavGJwPxmcDCiiYFOMzQPvY8WYlpRzKaijIDSYq1/OKEb+ +/g7If6Jgqkj3WrhpEdLdz37bMkjBH29yxFO9CLe8NRJCvlMQ4+tFSZEoQvi5 +M8MTYxSoE4K7fb2FcLmpmvwfm4qRZqmhhohCLOzwmUrRoqKUMzw+9rUAst0L +M7v/oqJO0BMn3V2AWT2NDjJ6VLTkC81cGwswMTSfd3ENFf3vNF+XpxagU6xu +p+tGKr4TnbdGdhcg3Fy2VPsoFTWGw+LVeXwEWlfvO3iMiibZUPb+q3ycsjs0 +5/YJKkzvapQ4e/HhurfyoMQ5KmR9orJd9PgwP31A9sdVKm7XZ89yr8rHREGx +d2kBFScfvCQs3+fBdbGjtvkvKnoS6QNPd+bi+PAZ85UTVDBPpimMWObiwv3U +HSrTVDyZzj9isSIXSXuGL1IZNFzRyZlzipWLZwnhb2plafj+82SyfFkOjKVr +Iy30aag8z3jNXZyD9T2fuXpGNBQWUh9el8iBI1+iQtWEBsPOOkneNA+em/d8 +olnSUGafMGbXzQMZNr62zoGGlZfKJDxieZhN0xmx9KHhZPES5iVpHua1O7IM +/GjYU9s1VUflQSPFf6HaGRpiMmtD1EezYb72sTUjiIYsYU7vxs5s+J05mFof +TYO94UP/BfHZeD9608GqkIYtGkX+p9WyUfSBXbJ+hIYov8xEtmMWfF81N0b8 +oqHVZNm7jvVZMGq99urZBA07b/FWVxhnoapUYXo3lY6Y86V//lPOQkPYUksv +GTr6B2a8Dgxl4tWKDe3xBnQ8CAgttYzMxE018Q9vVtOxITnXKD8wE3vntf1S +MaPjj3mYp65fJvpoOxRzrejgtXJY/k6Z+PrC1almOx1xFYa2qvqZEPgHDw2c +oqPSdlA15F0GarxthX8F0GHBXVFk/zwDF10kpI8H0jEomXJC90kGCLsbBjNh +Ip953q5VmgFp1Qx/6SQ6Usv2RLOuZUCtqUFsTTUd85SY9znrMmArx9SIoDJQ +8XNrQnhlOpa0W5EhTAZGZF9KStxNx3RksNIlMQa2RcVkJuemI49NKARIM7Cs +83Dzp9vpkJqaRXipMJCSeFMoGZiOF71Sgw7mDNhed+zn26TDmb8wf34gA23p +yfSgD2kw9ti7TOEyA5MNivZn3qZBRis5QzaMgVPvq96ffZmGOlL5zuxoBjqi +N/umNKdB44ZqlCCFgXEjK2+nu2n4elbTp6+Ggd+H9Gl5IWnwszUw5FGYeFG0 +YrfMqjQMW2aS1xlMmFQWddvopsHNbL6kP8EE0/jo2jDtNPyjSxnYKMVEld2P +i8qqaYB8S+KQMhNbji+6nSWZBvG+AzO6HCa6TuvsVf3GRcrpmPqyACYMb/YV +HuRxMe84a2VKIBP4cFQmKIOL6x6nb4deZuLbS8Wf6SQXl52c/HZFMqF0448E +NYmLw1bamlO3mDh+b24e/QoXBtJ1EWurmJiKSMjV8+LicdaoQ8MkE/cPBFnP +GHMx8YhWSRMyoZ3wcyTOkAuNzzJLQGdB75jUrFX6XASp6/+sEGeh+K/0w8HL +uTAlj8cULGTh+jreiK8yFwVJvzqT1rJgXJh89zSLi3cVDNNuCxY2boxwO0Hn +Ys5ruTT5DSxYfQgjTlJE+ymu8o22Y+HGI9/vEZMk1OJOyIU4s0C1tw+a+k4i +4eqYo08QC5Z08Yivr0g05rGq+cEsjDvZJll0kfjdIq8+FM6C+63ZS+90knAQ +N/p9KIaFL7FH4t2ekpgdejJubxoL3opB2qb1JC4ETrywbmThgOLerp4CEm6+ +k9uVZ7FxqShO+k8kibx/QrTkJNigHG4vk79CYtRCbpqQYYP32SNidTgJf2md +1NF5bLh4DueEBpO4mr/va4MWG3IKAR67z5MoGWg672HDhmaX4G3NMRKTbX87 +7NvMhp3dzkJlbxJry/rUttuzIe4+1z/Ik0TT5enHnF1sKG036992hMQbVV05 +WXc2zIrr7qu7kKDtjc8qD2UjfLhnLGgXiQ3r1Pzzr7DR0cNvVt5J4op24WZu +FBvOM21uNdtJzJ18MnolgQ0Ds9Qfsx1JaMYLTJ2z2Mh4GTPWsYXElnaXdlYT +G7oa5XwpKxIx90a5U81sjL3f3DdgSeLVnfN+I22ivE90y+otSOzzTFzw+iUb +snR3TghI+Iq3uuR9ZqNq9Mc1I1MSSVYGk9vYBNjx7v6WBiR4eTvi74sT+Pdk +9L/G+iTuzfU30JIiUDIUS+rrkejqr/UUKBJY/6jPcpUuCalguw9Zywj4mHXm +eiwnofzd54LsCgLN/zbuuKxNQmf7jUXn9Ak8GZntQC4jsVHj7Y5tpgRI59jl +XzRJBDcebpnZTGD8Y50lT51EnM5VdzcHApMrLfT71Uik3ShkdW4n8Npo/gE1 +kWtdJ5DlRGDKSjGAr0pimhVc4nCMgEff6qMTyiTEvbIdqk8Q2NCvrfe3yPNf +tgwvPUOgf2hiWakSCaNM2WUzQQTOpiQWXVpEwmdDanJmLAF5xu7f2xaQCOTX +m8gkErg7a61Bx3wSUQoDr87eJhBwsf+Wo8h5n3VkHTII9JJLP7vMI0V3wKGg +ikeAqpff+EuRxJOyE5uX8gkY/2lrDhF5IKQqZLqMwMCHJZYVCiTGh9+rHaoi +cDz7SvEukVk76Q/bawjU985YzciTWKJpO53xmED5ZEvrVpH1oo4mSj8lkJ6c +U0sRGRNRhmc7CHzVj31+dy6Jf5teetv/R8BKatBRS+SjulNzqt4TcKpSqf0i +R+JsglKOxkfRvEUTNvkih1MsrKMHCNC2fPnuJ3Kim0v/1DcCCpFn+JYiZz0L +DXL9QSDDZE2EnMilq3OV238TsHj9IPCLLImGlLYqk0kCQ6zc6w9Ffk783JUh +ILDAP6v6jsgfvOXHpehiGBZzowWKPPrKONafLYY7yRnOriJTzPeu/CQuBnET +rVd2IktmX3i6VUoMl8aq3cxEVpJOO1IpJyb6F0xkVoi8/PQjQmOeGLQjLz5X +E9mkdzA9apEY3vwJ4CuJbGsjYTmlIoaIzEXchSL/D67UdsU= + "]]}, + Annotation[#, + "Charting`Private`Tag$17363#1"]& ], {}}, {{}, {}, {}}}, {}, {}}, + AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948], + Axes->{True, True}, + AxesLabel->{None, None}, + AxesOrigin->{0, 0}, + DisplayFunction->Identity, + Frame->{{False, False}, {False, False}}, + FrameLabel->{{None, None}, {None, None}}, + FrameTicks->{{Automatic, + Charting`ScaledFrameTicks[{Identity, Identity}]}, {Automatic, + Charting`ScaledFrameTicks[{Identity, Identity}]}}, + GridLines->{None, None}, + GridLinesStyle->Directive[ + GrayLevel[0.5, 0.4]], + ImagePadding->All, + Method->{ + "DefaultBoundaryStyle" -> Automatic, "DefaultMeshStyle" -> + AbsolutePointSize[6], "ScalingFunctions" -> None, + "CoordinatesToolOptions" -> {"DisplayFunction" -> ({ + (Identity[#]& )[ + Part[#, 1]], + (Identity[#]& )[ + Part[#, 2]]}& ), "CopiedValueFunction" -> ({ + (Identity[#]& )[ + Part[#, 1]], + (Identity[#]& )[ + Part[#, 2]]}& )}}, + PlotRange-> + NCache[{{-Pi, Pi}, {0., 11122.608615717503`}}, {{-3.141592653589793, + 3.141592653589793}, {0., 11122.608615717503`}}], + PlotRangeClipping->True, + PlotRangePadding->{{ + Scaled[0.02], + Scaled[0.02]}, { + Scaled[0.05], + Scaled[0.05]}}, + Ticks->{Automatic, Automatic}]], "Output", + CellChangeTimes->{3.7421016806944184`*^9, 3.7421017173763914`*^9, + 3.7421017703669147`*^9, 3.7421036149251394`*^9, 3.742103649424573*^9, + 3.7421037614769154`*^9}, + CellLabel-> + "Out[113]=",ExpressionUUID->"0f1ab8d6-4b18-4927-b426-57852a68564f"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{ + RowBox[{ + RowBox[{"position", " ", "=", " ", + RowBox[{"GeoPosition", "[", + RowBox[{"{", + RowBox[{"51.546545", ",", "4.411744"}], "}"}], "]"}]}], ";"}], + "\[IndentingNewLine]"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "7", ",", " ", "30", ",", " ", "10", ",", " ", "29", + ",", " ", "0"}], "}"}], "]"}], " ", + RowBox[{"(*", " ", + RowBox[{"correct", ",", " ", + RowBox[{ + RowBox[{"this", " ", "is", " ", "GMT"}], "+", "2"}]}], " ", + "*)"}]}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "7", ",", " ", "30", ",", " ", "10", ",", " ", "29", + ",", " ", "0"}], "}"}], ",", " ", + RowBox[{"TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + " ", "]"}], " ", + RowBox[{"(*", " ", + RowBox[{"correct", ",", " ", + RowBox[{ + RowBox[{"CEST", " ", "is", " ", "now", " ", "GMT"}], "+", "2"}]}], " ", + "*)"}]}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{ + "2019", ",", " ", "1", ",", " ", "1", ",", " ", "6", ",", " ", "0", ",", + " ", "0"}], "}"}], "]"}], " ", + RowBox[{"(*", " ", + RowBox[{"incorrect", ",", " ", + RowBox[{ + RowBox[{"this", " ", "is", " ", "GMT"}], "+", "2"}]}], " ", + "*)"}]}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2019", ",", " ", "1", ",", " ", "1", ",", " ", "6", ",", " ", "0", ",", + " ", "0"}], "}"}], ",", " ", + RowBox[{"TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + " ", "]"}], " ", + RowBox[{"(*", " ", + RowBox[{"correct", ",", " ", + RowBox[{ + RowBox[{"CEST", " ", "is", " ", "now", " ", "GMT"}], "+", "1"}]}], " ", + "*)"}], "\[IndentingNewLine]"}], "\[IndentingNewLine]", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "7", ",", " ", "30", ",", " ", "10", ",", " ", "29", + ",", " ", "0"}], "}"}], "]"}]}], "]"}], "\[IndentingNewLine]", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "7", ",", " ", "30", ",", " ", "10", ",", " ", "29", + ",", " ", "0"}], "}"}], ",", " ", + RowBox[{"TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + " ", "]"}]}], "]"}], "\[IndentingNewLine]", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{ + "2019", ",", " ", "1", ",", " ", "1", ",", " ", "6", ",", " ", "0", ",", + " ", "0"}], "}"}], " ", "]"}]}], "]"}], "\[IndentingNewLine]", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2019", ",", " ", "1", ",", " ", "1", ",", " ", "6", ",", " ", "0", ",", + " ", "0"}], "}"}], ",", " ", + RowBox[{"TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + " ", "]"}]}], "]"}], "\[IndentingNewLine]", + RowBox[{"AbsoluteTiming", "[", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2019", ",", " ", "1", ",", " ", "1", ",", " ", "12", ",", " ", "0", + ",", " ", "0"}], "}"}], ",", " ", + RowBox[{"TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}], "]"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"(*", " ", + RowBox[{"{", " ", + RowBox[{"azimuth", ",", " ", "altitude"}], " ", "}"}], " ", + "*)"}]}]}], "Input", + CellChangeTimes->{{3.7420210039820967`*^9, 3.742021066120038*^9}, { + 3.742021533789687*^9, 3.742021566951538*^9}, {3.7420216455120354`*^9, + 3.7420216608465333`*^9}, {3.742031777622274*^9, 3.742031820116948*^9}, { + 3.7420326351048985`*^9, 3.7420326360685883`*^9}, {3.7420363023088474`*^9, + 3.742036304913709*^9}, {3.742104586742736*^9, 3.742104591882372*^9}, { + 3.74254673671497*^9, 3.7425467451288233`*^9}, {3.7425468546693506`*^9, + 3.74254686456314*^9}, {3.7425469242891335`*^9, 3.742546967632883*^9}, { + 3.742564658083433*^9, 3.7425646698473425`*^9}, {3.742565020574189*^9, + 3.7425650275179324`*^9}, 3.7425651357044325`*^9, {3.74256569319306*^9, + 3.7425657308061285`*^9}, 3.7425658226557956`*^9}, + CellLabel->"In[80]:=",ExpressionUUID->"4a5efc35-9ed8-41ae-8d3f-8b8daec080be"], + +Cell[BoxData[ + TemplateBox[{RowBox[{"\"Mon 30 Jul 2018 10:29:00\"", + StyleBox[ + RowBox[{"\"GMT+\"", "\[InvisibleSpace]", + StyleBox["2.`", NumberMarks -> False, StripOnInput -> False]}], + FontColor -> GrayLevel[0.5]]}],RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", "7", ",", "30", ",", "10", ",", "29", ",", "0"}], + "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"", ",", "2.`"}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.742565823707502*^9}, + CellLabel->"Out[81]=",ExpressionUUID->"e049cba6-564f-4114-a218-e4fde8b7833b"], + +Cell[BoxData[ + TemplateBox[{RowBox[{"\"Mon 30 Jul 2018 10:29:00\"", + StyleBox["\"CEST\"", FontColor -> GrayLevel[0.5]]}], + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", "7", ",", "30", ",", "10", ",", "29", ",", "0"}], + "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"", ",", + "\"Europe/Amsterdam\""}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.742565823745528*^9}, + CellLabel->"Out[82]=",ExpressionUUID->"ca13de8f-cfc1-43a9-9893-c6662bcbd4b2"], + +Cell[BoxData[ + TemplateBox[{RowBox[{"\"Tue 1 Jan 2019 06:00:00\"", + StyleBox[ + RowBox[{"\"GMT+\"", "\[InvisibleSpace]", + StyleBox["2.`", NumberMarks -> False, StripOnInput -> False]}], + FontColor -> GrayLevel[0.5]]}],RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2019", ",", "1", ",", "1", ",", "6", ",", "0", ",", "0"}], + "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"", ",", "2.`"}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.7425658237665653`*^9}, + CellLabel->"Out[83]=",ExpressionUUID->"37b530e7-802a-439e-b53b-3d66dd25be6a"], + +Cell[BoxData[ + TemplateBox[{RowBox[{"\"Tue 1 Jan 2019 06:00:00\"", + StyleBox["\"CEST\"", FontColor -> GrayLevel[0.5]]}], + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2019", ",", "1", ",", "1", ",", "6", ",", "0", ",", "0"}], + "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"", ",", + "\"Europe/Amsterdam\""}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.7425658237865796`*^9}, + CellLabel->"Out[84]=",ExpressionUUID->"a3fe666d-8065-4c4f-9d3b-6ae2fa89f94b"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + TemplateBox[{ + "111.1453402470188933648`5.045891259680732", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"], ",", + TemplateBox[{ + "38.8866552504558740111`4.5898005898756695", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"]}], "}"}]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.742565823807572*^9}, + CellLabel->"Out[85]=",ExpressionUUID->"a20ea33b-58f5-4f08-b06a-f873e00f663d"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + TemplateBox[{ + "111.1453402470188933648`5.045891259680732", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"], ",", + TemplateBox[{ + "38.8866552504558740111`4.5898005898756695", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"]}], "}"}]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.7425658238266068`*^9}, + CellLabel->"Out[86]=",ExpressionUUID->"8a98ff43-1c14-46da-a51f-7b5b73f8b463"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + TemplateBox[{ + "84.6455911130019131861`4.927604342183169", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"], ",", + TemplateBox[{ + RowBox[{"-", "34.114996783795007218`4.5329453346726405"}], + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"]}], "}"}]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.7425658238406296`*^9}, + CellLabel->"Out[87]=",ExpressionUUID->"9052d2a9-6efa-4286-87a3-28f5511ba157"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + TemplateBox[{ + "96.3652976262628300219`4.98392066706947", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"], ",", + TemplateBox[{ + RowBox[{"-", "24.8043415681415346796`4.3945277031674825"}], + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"]}], "}"}]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.742565823854603*^9}, + CellLabel->"Out[88]=",ExpressionUUID->"d342d8a5-aeca-4d47-89c7-3b41adb442d0"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{"0.022735772950181976`", ",", + RowBox[{"{", + RowBox[{ + TemplateBox[{ + "169.1176323661005369559`5.22818888991643", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"], ",", + TemplateBox[{ + "14.7741190935663428974`4.1695015955290335", + RowBox[{"\[InvisibleSpace]", "\"\[Degree]\""}],"degrees", + "\"AngularDegrees\""}, + "QuantityPostfix"]}], "}"}]}], "}"}]], "Output", + CellChangeTimes->{ + 3.7420215991374345`*^9, 3.7420318238225946`*^9, 3.742032636730074*^9, + 3.742036305672252*^9, 3.7421045929601374`*^9, 3.742546870350134*^9, { + 3.7425469288142395`*^9, 3.7425469447441683`*^9}, 3.7425646714971275`*^9, + 3.7425650289521403`*^9, {3.7425656953735723`*^9, 3.7425657316156845`*^9}, + 3.7425658238736167`*^9}, + CellLabel->"Out[89]=",ExpressionUUID->"73ba8267-1ca9-4eef-88c3-cdbfaad5c2af"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{ + RowBox[{"sunMisalignment", "[", + RowBox[{"sunPos_", ",", "a_"}], "]"}], ":=", " ", + RowBox[{"(", " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{"angle", "[", + RowBox[{ + RowBox[{"sun", " ", "position"}], ",", " ", + RowBox[{ + "solar", " ", "panel", " ", "angle", " ", "in", " ", "degrees"}]}], + "]"}], " ", "returns", " ", "misalignment", " ", "with", " ", "the", + " ", "sun", " ", + RowBox[{"(", "zenith", ")"}], " ", "in", " ", "radians"}], " ", "*)"}], + "\n", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{"remove", " ", "degree", " ", "unit"}], ",", " ", + RowBox[{"then", " ", "convert", " ", "to", " ", "radians"}]}], " ", + "*)"}], "\n", + RowBox[{ + RowBox[{"gammaS", "=", " ", + RowBox[{ + RowBox[{"QuantityMagnitude", "[", + RowBox[{"Quantity", "[", + RowBox[{"sunPos", "[", + RowBox[{"[", "1", "]"}], "]"}], "]"}], "]"}], "*", + RowBox[{"Pi", "/", "180"}]}]}], ";", " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{"Azimuth", " ", "of", " ", "sun", " ", "position"}], ",", " ", + RowBox[{"0", " ", "due", " ", "South"}], ",", " ", + RowBox[{"negative", " ", "to", " ", "the", " ", "east"}]}], " ", "*)"}], + "\n", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{ + "Because", " ", "Mathematica", " ", "gives", " ", "azimuth", " ", "in", + " ", "compass", " ", "angle"}], ",", " ", + RowBox[{"we", " ", "subtract", " ", "180", " ", "degrees"}]}], " ", + "*)"}], "\n", + RowBox[{"gammaS", " ", "=", " ", + RowBox[{"gammaS", " ", "-", " ", "Pi"}]}], ";", "\n", + RowBox[{"thetaS", "=", " ", + RowBox[{ + RowBox[{"QuantityMagnitude", "[", + RowBox[{"Quantity", "[", + RowBox[{"sunPos", "[", + RowBox[{"[", "2", "]"}], "]"}], "]"}], "]"}], "*", + RowBox[{"Pi", "/", "180"}]}]}], ";", " ", + RowBox[{"(*", " ", + RowBox[{"Sun", " ", "altitude"}], " ", "*)"}], "\n", + RowBox[{"gammaP", " ", "=", " ", + RowBox[{ + RowBox[{"-", "22"}], " ", "*", " ", + RowBox[{"Pi", "/", "180"}]}]}], ";", " ", + RowBox[{"(*", " ", + RowBox[{"Solar", " ", "panels", " ", "azimuth"}], " ", "*)"}], "\n", + RowBox[{"thetaP", " ", "=", " ", + RowBox[{"a", " ", "*", " ", + RowBox[{"Pi", "/", "180"}]}]}], ";", " ", + RowBox[{"(*", " ", + RowBox[{ + "Solar", " ", "panels", " ", "angle", " ", "with", " ", "horizontal"}], + " ", "*)"}], "\n", + RowBox[{"ArcCos", "[", + RowBox[{ + RowBox[{ + RowBox[{"Cos", "[", + RowBox[{"gammaP", "-", "gammaS"}], "]"}], " ", + RowBox[{"Cos", "[", "thetaS", "]"}], " ", + RowBox[{"Sin", "[", "thetaP", "]"}]}], "+", + RowBox[{ + RowBox[{"Cos", "[", "thetaP", "]"}], " ", + RowBox[{"Sin", "[", "thetaS", "]"}]}]}], "]"}]}], " ", + RowBox[{"(*", " ", + RowBox[{ + RowBox[{ + "The", " ", "formula", " ", "to", " ", "find", " ", "the", " ", + "zenith"}], ",", " ", + RowBox[{"see", " ", "docs"}]}], " ", "*)"}], "\n", + ")"}]}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"position", " ", "=", " ", + RowBox[{"GeoPosition", "[", + RowBox[{"{", + RowBox[{"51.546545", ",", "4.411744"}], "}"}], "]"}]}], + ";"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"sunPos", " ", "=", " ", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "8", ",", " ", "1", ",", " ", "15", ",", " ", "57", + ",", " ", "0"}], "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"sunMisalignment", "[", + RowBox[{"sunPos", ",", " ", "42"}], "]"}], + "\[IndentingNewLine]"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"sunPos", " ", "=", " ", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2020", ",", " ", "11", ",", " ", "24", ",", " ", "17", ",", " ", + "15", ",", " ", "0"}], "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\[IndentingNewLine]", + RowBox[{"sunMisalignment", "[", + RowBox[{"sunPos", ",", " ", "60"}], "]"}]}], "Input", + CellChangeTimes->{{3.7420317739406185`*^9, 3.7420317756848764`*^9}, { + 3.7421208886248674`*^9, 3.742121004877183*^9}, {3.742121553391858*^9, + 3.742121625081149*^9}, {3.7421217157261896`*^9, 3.7421217162009597`*^9}, { + 3.7425658967580843`*^9, 3.7425658989535875`*^9}, {3.7425697354831743`*^9, + 3.742569753860072*^9}}, + CellLabel->"In[22]:=",ExpressionUUID->"de3d7f2a-9c6a-4b2f-b0f5-4ef285578f3e"], + +Cell[BoxData["0.7983276482532772558`4.4804379528578355"], "Output", + CellChangeTimes->{ + 3.7421210061130853`*^9, {3.742121573866042*^9, 3.742121625820325*^9}, + 3.742121716869015*^9, 3.74256594634814*^9, {3.742569743877366*^9, + 3.7425697548730593`*^9}}, + CellLabel->"Out[25]=",ExpressionUUID->"2a73d011-20f3-45c4-8450-302aca1508ce"], + +Cell[BoxData["1.5406948662984071689`4.810862619555881"], "Output", + CellChangeTimes->{ + 3.7421210061130853`*^9, {3.742121573866042*^9, 3.742121625820325*^9}, + 3.742121716869015*^9, 3.74256594634814*^9, {3.742569743877366*^9, + 3.742569754882041*^9}}, + CellLabel->"Out[27]=",ExpressionUUID->"61af11c5-a8a0-477b-8e43-a374b5f4662b"] +}, Open ]], + +Cell[BoxData[ + RowBox[{"\[IndentingNewLine]", + RowBox[{ + RowBox[{"SunRise", "[", + RowBox[{"position", ",", " ", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{ + "2018", ",", " ", "7", ",", " ", "30", ",", " ", "10", ",", " ", "29", + ",", " ", "0"}], "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}], ";", " ", + RowBox[{"(*", " ", "idk", " ", "*)"}]}]}]], "Input", + CellChangeTimes->{{3.7425469782731857`*^9, 3.7425469795650673`*^9}, { + 3.742564853934966*^9, 3.7425648604621177`*^9}, {3.7425651209201756`*^9, + 3.74256514797556*^9}, {3.7425654150816264`*^9, 3.7425655254724483`*^9}, + 3.742565684914328*^9, + 3.7425659023038807`*^9},ExpressionUUID->"2c710516-3b55-4696-b5e5-\ +379e865a2b56"], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{ + RowBox[{ + RowBox[{"totalPower", "[", + RowBox[{"sunPositions_", ",", "alpha_", ",", "day_"}], "]"}], ":=", + RowBox[{"(", + RowBox[{"Sum", "[", + RowBox[{ + RowBox[{"directPower", "[", + RowBox[{ + RowBox[{"sunMisalignment", "[", + RowBox[{"sunPos", ",", "alpha"}], "]"}], ",", "day"}], "]"}], ",", + RowBox[{"{", + RowBox[{"sunPos", ",", "sunPositions"}], "}"}]}], "]"}], ")"}]}], + ";"}], "\n", + RowBox[{ + RowBox[{"position", "=", + RowBox[{"GeoPosition", "[", + RowBox[{"{", + RowBox[{"51.546545", ",", "4.411744"}], "}"}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos1", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1", ",", "18", ",", "35", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos2", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "3", ",", "3", ",", "16", ",", "35", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"totalPower", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"pos1", ",", "pos2"}], "}"}], ",", "24", ",", "145"}], "]"}], + "\n"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"pos1", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "2", ",", "1", ",", "20", ",", "35", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos2", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "3", ",", "17", ",", "12", ",", "0", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos3", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "3", ",", "17", ",", "12", ",", "10", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"totalPower", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"pos1", ",", "pos2", ",", "pos3"}], "}"}], ",", "5", ",", "2"}], + "]"}], "\[IndentingNewLine]"}], "\n", + RowBox[{ + RowBox[{"pos1", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1", ",", "19", ",", "00", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos2", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1", ",", "19", ",", "10", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos3", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1", ",", "19", ",", "16", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{ + RowBox[{"pos4", "=", + RowBox[{"SunPosition", "[", + RowBox[{"position", ",", + RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1", ",", "19", ",", "18", ",", "0"}], + "}"}], ",", " ", + RowBox[{ + "TimeZone", " ", "\[Rule]", " ", "\"\\""}]}], + "]"}]}], "]"}]}], ";"}], "\n", + RowBox[{"totalPower", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"pos1", ",", "pos2", ",", "pos3", ",", "pos4"}], "}"}], ",", "0", + ",", "212"}], "]"}], "\n", + RowBox[{"QuantityMagnitude", "[", + RowBox[{"Quantity", "[", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2018", ",", "8", ",", "1"}], "}"}], "]"}], "-", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2018", ",", "1", ",", "1"}], "}"}], "]"}]}], "]"}], + "]"}]}], "Input", + CellChangeTimes->{{3.7425696848478165`*^9, 3.7425696849049025`*^9}, { + 3.742569926586271*^9, 3.7425699399062724`*^9}}, + CellLabel->"In[48]:=",ExpressionUUID->"37987284-7103-4881-ac75-ce6ce9d0b249"], + +Cell[BoxData["237.32392306182675`"], "Output", + CellChangeTimes->{3.7425697032944193`*^9, 3.7425697707244987`*^9, + 3.742569950326398*^9}, + CellLabel->"Out[52]=",ExpressionUUID->"479aa017-91fa-47b9-ae18-47fd93e6f6ea"], + +Cell[BoxData["767.7421354028091`"], "Output", + CellChangeTimes->{3.7425697032944193`*^9, 3.7425697707244987`*^9, + 3.742569950416509*^9}, + CellLabel->"Out[56]=",ExpressionUUID->"594095b3-0048-4d6f-b358-8449aa9af994"], + +Cell[BoxData["619.3924683967996`"], "Output", + CellChangeTimes->{3.7425697032944193`*^9, 3.7425697707244987`*^9, + 3.742569950533594*^9}, + CellLabel->"Out[61]=",ExpressionUUID->"3cc28229-4dcb-4301-ac52-776d1d8579ea"], + +Cell[BoxData["212"], "Output", + CellChangeTimes->{3.7425697032944193`*^9, 3.7425697707244987`*^9, + 3.742569950539607*^9}, + CellLabel->"Out[62]=",ExpressionUUID->"643940a1-a002-409d-be29-4e8823373225"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{"<<", "SolArduino`"}], "\[IndentingNewLine]", + RowBox[{"calculatesunPos", "[", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2016", ",", "8", ",", "17"}], "}"}], "]"}], + "]"}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"dayAngles", "[", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2016", ",", "8", ",", "17"}], "}"}], "]"}], ",", "14"}], "]"}], + "\[IndentingNewLine]", + RowBox[{"(*", + RowBox[{"angleInterval", "[", + RowBox[{ + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2016", ",", "8", ",", "17"}], "}"}], "]"}], ",", "0", ",", + "1"}], "]"}], "*)"}]}], "\[IndentingNewLine]", + RowBox[{ + RowBox[{"AbsoluteTiming", "[", + RowBox[{"dayAngle", "[", + RowBox[{"11", ",", "8", ",", "2018"}], "]"}], "]"}], + "\[IndentingNewLine]"}], "\[IndentingNewLine]", + RowBox[{"AbsoluteTiming", "[", + RowBox[{"dayAngle", "[", + RowBox[{"11", ",", "11", ",", "2018"}], "]"}], "]"}]}], "Input", + CellChangeTimes->{ + 3.742982852132395*^9, {3.742983475737877*^9, 3.7429835122529755`*^9}, { + 3.7429835672484183`*^9, 3.742983568417788*^9}, 3.742983601572305*^9, { + 3.7429836593135743`*^9, 3.7429836770776825`*^9}, {3.742984132671924*^9, + 3.74298413965701*^9}, {3.7429863197515078`*^9, 3.742986328990184*^9}}, + CellLabel->"In[5]:=",ExpressionUUID->"89cb9dc1-45a1-4338-ba15-330bc379a076"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + RowBox[{"{", + RowBox[{"38.89897979478128`", ",", "54.75721673265871`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"253.08053829434522`", ",", "52.11522778535632`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"611.165783883782`", ",", "50.14693574607005`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"872.758124511193`", ",", "48.09931893528912`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"1032.4730274329233`", ",", "45.864515227745095`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"1118.042752582907`", ",", "43.298849320754435`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"1146.271890453533`", ",", "40.20140408219941`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"1661.2634838242006`", ",", "34.975493494045025`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"993.6806346000114`", ",", "27.31472780447857`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"838.5285807493897`", ",", "17.373154496113468`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"648.0400576435432`", ",", "0.9130912380949775`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"436.75078918408474`", ",", "0.`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"200.9706908653057`", ",", "0.`"}], "}"}], ",", + RowBox[{"{", + RowBox[{"80.93442902797051`", ",", "0.`"}], "}"}]}], "}"}]], "Output", + CellChangeTimes->{3.7429828549649005`*^9, 3.7429832892530885`*^9, + 3.7429835150999317`*^9, 3.7429835714123545`*^9, 3.7429836052962112`*^9, + 3.7429836801279287`*^9, 3.74298417021889*^9, 3.742986332413026*^9}, + CellLabel->"Out[7]=",ExpressionUUID->"8533dfa2-d8d4-4a9b-af3a-3f30ace85f67"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{"1.2870333230832771`", ",", "28.496839267135588`"}], + "}"}]], "Output", + CellChangeTimes->{3.7429828549649005`*^9, 3.7429832892530885`*^9, + 3.7429835150999317`*^9, 3.7429835714123545`*^9, 3.7429836052962112`*^9, + 3.7429836801279287`*^9, 3.74298417021889*^9, 3.7429863336733727`*^9}, + CellLabel->"Out[8]=",ExpressionUUID->"a203041e-ddd1-4c6d-bf48-cf8aa0f8da04"], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{"0.7538545480074178`", ",", "72.51600528991774`"}], "}"}]], "Output", + CellChangeTimes->{3.7429828549649005`*^9, 3.7429832892530885`*^9, + 3.7429835150999317`*^9, 3.7429835714123545`*^9, 3.7429836052962112`*^9, + 3.7429836801279287`*^9, 3.74298417021889*^9, 3.742986334428156*^9}, + CellLabel->"Out[9]=",ExpressionUUID->"d0ab3472-bd81-4828-9497-bc1244685bd4"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{"<<", "SolArduino`"}], "\[IndentingNewLine]", + RowBox[{"dayAngle", "[", + RowBox[{"11", ",", "5", ",", "2018"}], "]"}], "\[IndentingNewLine]", + RowBox[{"dayAngle", "[", + RowBox[{"5", ",", "6", ",", "2018"}], "]"}], "\[IndentingNewLine]", + RowBox[{"dayAngle", "[", + RowBox[{"2", ",", "7", ",", "2018"}], "]"}], "\[IndentingNewLine]", + RowBox[{"dayAngle", "[", + RowBox[{"17", ",", "8", ",", "2018"}], "]"}]}], "Input", + CellChangeTimes->{{3.7429864732750664`*^9, 3.7429864955742846`*^9}, { + 3.7429865549855623`*^9, 3.7429865895048923`*^9}}, + CellLabel->"In[15]:=",ExpressionUUID->"bbb5d7d0-b8f8-4fb6-a157-66726c1c7de4"], + +Cell[BoxData["23.48867755504397`"], "Output", + CellChangeTimes->{3.7429864906080027`*^9, 3.742986558849358*^9, + 3.742986591565401*^9}, + CellLabel->"Out[16]=",ExpressionUUID->"38abce52-10e5-40d3-ac61-1a533b432943"], + +Cell[BoxData["14.024527511980903`"], "Output", + CellChangeTimes->{3.7429864906080027`*^9, 3.742986558849358*^9, + 3.742986592933816*^9}, + CellLabel->"Out[17]=",ExpressionUUID->"f61805db-caea-44f4-924f-5e3de0c958eb"], + +Cell[BoxData["12.943908147454165`"], "Output", + CellChangeTimes->{3.7429864906080027`*^9, 3.742986558849358*^9, + 3.7429865940988345`*^9}, + CellLabel->"Out[18]=",ExpressionUUID->"0f7d9dab-7c52-4c57-ab83-03bd257c270d"], + +Cell[BoxData["31.783737706680153`"], "Output", + CellChangeTimes->{3.7429864906080027`*^9, 3.742986558849358*^9, + 3.742986595280522*^9}, + CellLabel->"Out[19]=",ExpressionUUID->"7e984a32-1e87-4c41-8b48-e8c7c7ae3485"] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[{ + RowBox[{"Sunrise", "[", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2018", ",", "5", ",", "1"}], "}"}], "]"}], + "]"}], "\[IndentingNewLine]", + RowBox[{"Sunset", "[", + RowBox[{"DateObject", "[", + RowBox[{"{", + RowBox[{"2018", ",", "5", ",", "1"}], "}"}], "]"}], + "]"}], "\[IndentingNewLine]", + RowBox[{"dayAngle", "[", + RowBox[{"1", ",", "5", ",", "2018"}], "]"}]}], "Input", + CellChangeTimes->{{3.7429882150671644`*^9, 3.7429883047251945`*^9}}, + CellLabel->"In[24]:=",ExpressionUUID->"a9238b39-5bf0-4801-ae42-2fe4933cbea1"], + +Cell[BoxData[ + TemplateBox[{RowBox[{ + StyleBox[ + "\"Minute: \"", FontColor -> GrayLevel[0.5], FontWeight -> Plain], + "\"Tue 1 May 2018 06:09\"", + StyleBox[ + RowBox[{"\"GMT+\"", "\[InvisibleSpace]", + StyleBox["2.`", NumberMarks -> False, StripOnInput -> False]}], + FontColor -> GrayLevel[0.5]]}],RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "5", ",", "1", ",", "6", ",", "9"}], "}"}], ",", + "\"Minute\"", ",", "\"Gregorian\"", ",", "2.`"}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.74298825710813*^9, {3.7429882914546566`*^9, 3.7429883056873474`*^9}}, + CellLabel->"Out[24]=",ExpressionUUID->"1e14d593-3a13-470d-938a-f2a287bb74e3"], + +Cell[BoxData[ + TemplateBox[{RowBox[{ + StyleBox[ + "\"Minute: \"", FontColor -> GrayLevel[0.5], FontWeight -> Plain], + "\"Tue 1 May 2018 21:06\"", + StyleBox[ + RowBox[{"\"GMT+\"", "\[InvisibleSpace]", + StyleBox["2.`", NumberMarks -> False, StripOnInput -> False]}], + FontColor -> GrayLevel[0.5]]}],RowBox[{"DateObject", "[", + RowBox[{ + RowBox[{"{", + RowBox[{"2018", ",", "5", ",", "1", ",", "21", ",", "6"}], "}"}], + ",", "\"Minute\"", ",", "\"Gregorian\"", ",", "2.`"}], "]"}]}, + "DateObject", + Editable->False]], "Output", + CellChangeTimes->{ + 3.74298825710813*^9, {3.7429882914546566`*^9, 3.742988305714353*^9}}, + CellLabel->"Out[25]=",ExpressionUUID->"8f26603e-24e3-450d-9523-07417e33752c"], + +Cell[BoxData["28.624248075912444`"], "Output", + CellChangeTimes->{ + 3.74298825710813*^9, {3.7429882914546566`*^9, 3.742988306037427*^9}}, + CellLabel->"Out[26]=",ExpressionUUID->"6b7448ba-7ebd-43d2-a1ee-aa3423d9a9d5"] +}, Open ]] +}, +WindowSize->{944, 981}, +WindowMargins->{{Automatic, 0}, {Automatic, 0}}, +FrontEndVersion->"11.3 for Microsoft Windows (64-bit) (March 6, 2018)", +StyleDefinitions->"Default.nb" +] +(* End of Notebook Content *) + +(* Internal cache information *) +(*CellTagsOutline +CellTagsIndex->{} +*) +(*CellTagsIndex +CellTagsIndex->{} +*) +(*NotebookFileOutline +Notebook[{ +Cell[CellGroupData[{ +Cell[580, 22, 2923, 76, 276, "Input",ExpressionUUID->"9954b9d8-ae79-40c4-aab9-6e0005e658f6"], +Cell[3506, 100, 321, 4, 32, "Output",ExpressionUUID->"804326b8-7446-4d90-b393-9e0637fab2b8"], +Cell[3830, 106, 318, 4, 32, "Output",ExpressionUUID->"84a71cff-949e-4db6-b44a-decd8507fdaf"], +Cell[4151, 112, 318, 4, 32, "Output",ExpressionUUID->"43091368-537b-439b-99bf-3f33b01b62ca"], +Cell[4472, 118, 305, 4, 32, "Output",ExpressionUUID->"7624409a-fbf7-4656-9fd5-aab3d334889c"] +}, Open ]], +Cell[CellGroupData[{ +Cell[4814, 127, 2337, 61, 200, "Input",ExpressionUUID->"4ee43eea-5d3c-4c9b-b517-34980b62b0c2"], +Cell[7154, 190, 12108, 220, 245, "Output",ExpressionUUID->"c599dd44-7c4a-4093-b9ca-6abe0cb6756b"], +Cell[19265, 412, 19027, 333, 245, "Output",ExpressionUUID->"0f1ab8d6-4b18-4927-b426-57852a68564f"] +}, Open ]], +Cell[CellGroupData[{ +Cell[38329, 750, 4652, 118, 257, "Input",ExpressionUUID->"4a5efc35-9ed8-41ae-8d3f-8b8daec080be"], +Cell[42984, 870, 949, 19, 43, "Output",ExpressionUUID->"e049cba6-564f-4114-a218-e4fde8b7833b"], +Cell[43936, 891, 862, 18, 43, "Output",ExpressionUUID->"ca13de8f-cfc1-43a9-9893-c6662bcbd4b2"], +Cell[44801, 911, 936, 18, 43, "Output",ExpressionUUID->"37b530e7-802a-439e-b53b-3d66dd25be6a"], +Cell[45740, 931, 849, 17, 43, "Output",ExpressionUUID->"a3fe666d-8065-4c4f-9d3b-6ae2fa89f94b"], +Cell[46592, 950, 853, 19, 42, "Output",ExpressionUUID->"a20ea33b-58f5-4f08-b06a-f873e00f663d"], +Cell[47448, 971, 855, 19, 42, "Output",ExpressionUUID->"8a98ff43-1c14-46da-a51f-7b5b73f8b463"], +Cell[48306, 992, 868, 19, 42, "Output",ExpressionUUID->"9052d2a9-6efa-4286-87a3-28f5511ba157"], +Cell[49177, 1013, 866, 19, 42, "Output",ExpressionUUID->"d342d8a5-aeca-4d47-89c7-3b41adb442d0"], +Cell[50046, 1034, 943, 21, 42, "Output",ExpressionUUID->"73ba8267-1ca9-4eef-88c3-cdbfaad5c2af"] +}, Open ]], +Cell[CellGroupData[{ +Cell[51026, 1060, 4880, 126, 371, "Input",ExpressionUUID->"de3d7f2a-9c6a-4b2f-b0f5-4ef285578f3e"], +Cell[55909, 1188, 338, 5, 32, "Output",ExpressionUUID->"2a73d011-20f3-45c4-8450-302aca1508ce"], +Cell[56250, 1195, 335, 5, 32, "Output",ExpressionUUID->"61af11c5-a8a0-477b-8e43-a374b5f4662b"] +}, Open ]], +Cell[56600, 1203, 842, 20, 48, "Input",ExpressionUUID->"2c710516-3b55-4696-b5e5-379e865a2b56"], +Cell[CellGroupData[{ +Cell[57467, 1227, 5279, 157, 352, "Input",ExpressionUUID->"37987284-7103-4881-ac75-ce6ce9d0b249"], +Cell[62749, 1386, 218, 3, 32, "Output",ExpressionUUID->"479aa017-91fa-47b9-ae18-47fd93e6f6ea"], +Cell[62970, 1391, 217, 3, 32, "Output",ExpressionUUID->"594095b3-0048-4d6f-b358-8449aa9af994"], +Cell[63190, 1396, 217, 3, 32, "Output",ExpressionUUID->"3cc28229-4dcb-4301-ac52-776d1d8579ea"], +Cell[63410, 1401, 202, 3, 32, "Output",ExpressionUUID->"643940a1-a002-409d-be29-4e8823373225"] +}, Open ]], +Cell[CellGroupData[{ +Cell[63649, 1409, 1403, 34, 143, "Input",ExpressionUUID->"89cb9dc1-45a1-4338-ba15-330bc379a076"], +Cell[65055, 1445, 1608, 34, 71, "Output",ExpressionUUID->"8533dfa2-d8d4-4a9b-af3a-3f30ace85f67"], +Cell[66666, 1481, 405, 7, 32, "Output",ExpressionUUID->"a203041e-ddd1-4c6d-bf48-cf8aa0f8da04"], +Cell[67074, 1490, 399, 6, 32, "Output",ExpressionUUID->"d0ab3472-bd81-4828-9497-bc1244685bd4"] +}, Open ]], +Cell[CellGroupData[{ +Cell[67510, 1501, 653, 12, 105, "Input",ExpressionUUID->"bbb5d7d0-b8f8-4fb6-a157-66726c1c7de4"], +Cell[68166, 1515, 215, 3, 32, "Output",ExpressionUUID->"38abce52-10e5-40d3-ac61-1a533b432943"], +Cell[68384, 1520, 216, 3, 32, "Output",ExpressionUUID->"f61805db-caea-44f4-924f-5e3de0c958eb"], +Cell[68603, 1525, 218, 3, 65, "Output",ExpressionUUID->"0f7d9dab-7c52-4c57-ab83-03bd257c270d"], +Cell[68824, 1530, 216, 3, 32, "Output",ExpressionUUID->"7e984a32-1e87-4c41-8b48-e8c7c7ae3485"] +}, Open ]], +Cell[CellGroupData[{ +Cell[69077, 1538, 573, 14, 67, "Input",ExpressionUUID->"a9238b39-5bf0-4801-ae42-2fe4933cbea1"], +Cell[69653, 1554, 759, 17, 43, "Output",ExpressionUUID->"1e14d593-3a13-470d-938a-f2a287bb74e3"], +Cell[70415, 1573, 758, 17, 43, "Output",ExpressionUUID->"8f26603e-24e3-450d-9523-07417e33752c"], +Cell[71176, 1592, 217, 3, 32, "Output",ExpressionUUID->"6b7448ba-7ebd-43d2-a1ee-aa3423d9a9d5"] +}, Open ]] +} +] +*) + diff --git a/SolArduino-core/haskell/.gitignore b/SolArduino-core/haskell/.gitignore deleted file mode 100644 index e7bddac..0000000 --- a/SolArduino-core/haskell/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.iml -.idea/ -.stack-work/ \ No newline at end of file diff --git a/SolArduino-core/haskell/SolArduino-haskell.cabal b/SolArduino-core/haskell/SolArduino-haskell.cabal deleted file mode 100644 index e8d6c92..0000000 --- a/SolArduino-core/haskell/SolArduino-haskell.cabal +++ /dev/null @@ -1,43 +0,0 @@ -name: SolArduino-haskell -version: 0.1.0.0 --- synopsis: --- description: -homepage: https://github.com/PHPirates/SolArduino/SolArduino-core/haskell -license: MIT -license-file: LICENSE -author: Thomas Schouten -maintainer: k3l1n6i2y5k7d1e3@deltadak.slack.com -copyright: 2018 Thomas Schouten -category: Web -build-type: Simple -extra-source-files: readme.rst -cabal-version: >=1.10 - -library - hs-source-dirs: src - exposed-modules: Data.String.Strip - build-depends: base >= 4.7 && < 5 - default-language: Haskell2010 - -executable SolArduino-haskell - hs-source-dirs: app - main-is: Main.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base - , SolArduino-haskell - default-language: Haskell2010 - -test-suite SolArduino-haskell-test - type: exitcode-stdio-1.0 - hs-source-dirs: test - main-is: Spec.hs - build-depends: base - , SolArduino-haskell - , hspec - , QuickCheck - ghc-options: -threaded -rtsopts -with-rtsopts=-N - default-language: Haskell2010 - -source-repository head - type: git - location: https://github.com/PHPirates/SolArduino/ diff --git a/SolArduino-core/haskell/app/Main.hs b/SolArduino-core/haskell/app/Main.hs deleted file mode 100644 index 10421fb..0000000 --- a/SolArduino-core/haskell/app/Main.hs +++ /dev/null @@ -1,6 +0,0 @@ -module Main where - -import Data.String.Strip - -main :: IO () -main = interact strip diff --git a/SolArduino-core/haskell/readme.rst b/SolArduino-core/haskell/readme.rst deleted file mode 100644 index 818f2d2..0000000 --- a/SolArduino-core/haskell/readme.rst +++ /dev/null @@ -1 +0,0 @@ -This is a haskell implementation of the Mathematica code used to generate optimal angles for the solar panels. \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/.gitignore b/SolArduino-core/haskell/solarduino-haskell/.gitignore new file mode 100644 index 0000000..c3c9c33 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/.gitignore @@ -0,0 +1,4 @@ +*.iml +.idea/ +.stack-work/ +out/ \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/LICENSE b/SolArduino-core/haskell/solarduino-haskell/LICENSE new file mode 100644 index 0000000..c5b0d7c --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/LICENSE @@ -0,0 +1,13 @@ +Copyright Thomas Schouten (c) 2018 + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/SolArduino-core/haskell/solarduino-haskell/README.md b/SolArduino-core/haskell/solarduino-haskell/README.md new file mode 100644 index 0000000..2c7369d --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/README.md @@ -0,0 +1,3 @@ +# solarduino-haskell + +add description of solarduino-haskell here \ No newline at end of file diff --git a/SolArduino-core/haskell/Setup.hs b/SolArduino-core/haskell/solarduino-haskell/Setup.hs similarity index 100% rename from SolArduino-core/haskell/Setup.hs rename to SolArduino-core/haskell/solarduino-haskell/Setup.hs diff --git a/SolArduino-core/haskell/solarduino-haskell/angles.times b/SolArduino-core/haskell/solarduino-haskell/angles.times new file mode 100644 index 0000000..1961d5f --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/angles.times @@ -0,0 +1,36540 @@ +49.448728335123114 1534307241 +48.713295575691866 1534312507.4 +46.33338517329205 1534317773.9 +43.00084150791462 1534323040.4 +38.43161366797497 1534328306.9 +31.58783262540346 1534333573.3 +19.78855622546174 1534338839.8 +0.0 1534344106.3 +0.0 1534349372.7 +0.0 1534354639.2 +50.71429260348262 1534393736.3 +49.32639029460122 1534398981.3 +46.715975619311855 1534404226.2 +43.30555033166392 1534409471.2 +38.72669579379184 1534414716.2 +31.927371169471726 1534419961.1 +20.24448318353024 1534425206.1 +0.0 1534430451 +0.0 1534435696 +0.0 1534440940.9 +51.96060347597727 1534480231.8 +49.938080497210734 1534485455.1 +47.090343883699084 1534490678.4 +43.61025915541322 1534495901.8 +39.02772754613038 1534501125.1 +32.269182268650894 1534506348.4 +20.70863232323131 1534511571.7 +0.0 1534516795 +0.0 1534522018.3 +0.0 1534527241.6 +53.18311584238523 1534566727.4 +50.54154851818765 1534571929 +47.47293432971889 1534577130.5 +43.92091760568419 1534582332.1 +39.33243636987968 1534587533.6 +32.61467043924084 1534592735.2 +21.174185979232238 1534597936.7 +0.0 1534603138.3 +0.0 1534608339.8 +0.0 1534613541.4 +54.38269774151757 1534653223.1 +51.141339467753824 1534658402.8 +47.85325222062778 1534663582.5 +44.23525312736592 1534668762.1 +39.637145193628974 1534673941.8 +32.9697853077632 1534679121.5 +21.64796181686574 1534684301.2 +0.0 1534689480.8 +0.0 1534694660.5 +0.0 1534699840.2 +55.5667033161958 1534739718.9 +51.735180790798324 1534744876.6 +48.23357011153668 1534750034.3 +44.54591157763689 1534755191.9 +39.945531088789046 1534760349.6 +33.321223104874804 1534765507.3 +22.131364352431678 1534770665 +0.0 1534775822.7 +0.0 1534780980.4 +0.0 1534786138.1 +56.73145549500917 1534826214.7 +52.31939541591039 1534831350.3 +48.61616055755648 1534836485.9 +44.8661967258403 1534841621.5 +40.25618953906 1534846757.1 +33.68001504480794 1534851892.7 +22.612494332886705 1534857028.3 +0.5241818824065715 1534862163.9 +0.0 1534867299.5 +0.0 1534872435.1 +57.87468172284678 1534912710.6 +52.8999329696117 1534917824 +49.00242807498705 1534922937.4 +45.186481874043686 1534928050.8 +40.57279761585265 1534933164.2 +34.04702916637364 1534938277.6 +23.105523566385074 1534943391 +1.2596146418378336 1534948504.5 +0.0 1534953617.9 +0.0 1534958731.3 +59.00233162623027 1534999206.5 +53.47452089679133 1535004297.6 +49.38274596589595 1535009388.7 +45.50676702224708 1535014479.9 +40.89081020894514 1535019571 +34.41177073282843 1535024662.1 +23.598552799883446 1535029753.3 +2.0032695829016767 1535034844.4 +0.0 1535039935.5 +0.0 1535045026.6 +60.114405205159684 1535085702.4 +54.03720957092763 1535090771.2 +49.76533641191576 1535095839.9 +45.83072924186125 1535100908.7 +41.211095357148544 1535105977.4 +34.7847344809158 1535111046.2 +24.101208731314244 1535116115 +2.760228293308711 1535121183.7 +0.0 1535126252.5 +0.0 1535131321.2 +61.20722538822421 1535172198.3 +54.59622117365317 1535177244.7 +50.149331374235416 1535182291 +46.15696401658632 1535187337.3 +41.53733013187362 1535192383.6 +35.15542567389227 1535197429.9 +24.60613721785595 1535202476.2 +3.5268137016481758 1535207522.5 +0.0 1535212568.8 +0.0 1535217615.1 +62.284469246834654 1535258694.3 +55.145606078446264 1535263718.1 +50.535598891665984 1535268741.8 +46.48687586272216 1535273765.6 +41.86129235148778 1535278789.4 +35.5297939382795 1535283813.2 +25.11247022069751 1535288836.9 +4.299348736509311 1535293860.7 +0.0 1535298884.5 +0.0 1535303908.3 +63.348409336101895 1535345190.2 +55.6890413567177 1535350191.4 +50.91818933768579 1535355192.6 +46.81678770885799 1535360193.7 +42.19347675273452 1535365194.9 +35.91238438429931 1535370196.1 +25.63070247658241 1535375197.2 +5.091137167235309 1535380198.4 +0.0 1535385199.6 +0.0 1535390200.7 +64.39450054580412 1535431686.2 +56.22879956357838 1535436664.7 +51.30445685511636 1535441643.1 +47.14669955499382 1535446621.6 +42.52706567028112 1535451600.1 +36.29865190172987 1535456578.6 +26.14525766105655 1535461557.1 +5.888875224482975 1535466535.6 +0.0 1535471514.1 +0.0 1535476492.5 +65.42501543105226 1535518182.1 +56.75665851739571 1535523137.8 +51.684774746025255 1535528093.6 +47.47661140112965 1535533049.3 +42.85925007152785 1535538005.1 +36.68491941916044 1535542960.8 +26.669439543463128 1535547916.5 +6.698512534773984 1535552872.3 +0.0 1535557828 +0.0 1535562783.7 +66.43259984902477 1535604678 +57.27489077328061 1535609610.9 +52.07104226345582 1535614543.9 +47.812472873787144 1535619476.8 +43.19878861559612 1535624409.7 +37.07486400800177 1535629342.6 +27.19729849728046 1535634275.6 +7.515503987886515 1535639208.5 +0.0 1535644141.4 +0.0 1535649074.4 +67.41270868949984 1535691173.9 +57.793123029165514 1535696084 +52.45136015436473 1535700994 +48.14833434644465 1535705904.1 +43.538327159664384 1535710814.1 +37.467081151954005 1535715724.2 +27.731107077619463 1535720634.2 +8.344394694042386 1535725544.3 +0.0 1535730454.4 +0.0 1535735364.4 +68.36761450758836 1535777669.8 +58.30172858711798 1535782556.9 +52.83395060038453 1535787444 +48.48787289051291 1535792331.2 +43.88013825884356 1535797218.3 +37.862975367317006 1535802105.4 +28.264915657958458 1535806992.6 +9.182912098130688 1535811879.7 +0.0 1535816766.8 +0.0 1535821653.9 +69.28174097883627 1535864165.6 +58.79843489202711 1535869029.8 +53.214268491293424 1535873893.9 +48.8296839896921 1535878758.1 +44.21967680291182 1535883622.2 +38.258869582680006 1535888486.4 +28.80240130970822 1535893350.5 +10.02510657362975 1535898214.7 +0.0 1535903078.8 +0.0 1535907943 +70.15736065835442 1535950661.5 +59.29146412552548 1535955502.6 +53.596858937313236 1535960343.7 +49.169222533760355 1535965184.8 +44.56516497350176 1535970025.9 +38.660713424564676 1535974867.1 +29.345836587979655 1535979708.2 +10.879200302172155 1535984549.3 +0.0 1535989390.4 +0.0 1535994231.5 +70.98992843592107 1536037157.3 +59.774866661091416 1536041975.3 +53.977176828222134 1536046793.4 +49.51103363293952 1536051611.4 +44.916602770613366 1536056429.5 +39.062557266449346 1536061247.5 +29.889271866251093 1536066065.5 +11.742920728646988 1536070883.6 +0.0 1536075701.6 +0.0 1536080519.7 +71.78171686664707 1536123653.1 +60.25231957013568 1536128448 +54.35381764772027 1536133243 +49.85057217700779 1536138037.9 +45.26804056772495 1536142832.8 +39.47402780626645 1536147627.7 +30.43865677104419 1536152422.6 +12.618540408165167 1536157217.5 +0.0 1536162012.5 +0.0 1536166807.4 +72.52904887912167 1536210148.9 +60.72014578124751 1536214920.7 +54.73413553862917 1536219692.4 +50.19606034759772 1536224464.2 +45.617205809725654 1536229235.9 +39.87954871956188 1536234007.7 +30.993991302358964 1536238779.4 +13.497837159094097 1536243551.2 +0.0 1536248323 +0.0 1536253094.7 +73.2259748468232 1536296644.7 +61.18797199235936 1536301393.3 +55.1107763581273 1536306141.8 +50.54154851818765 1536310890.4 +45.97232067824802 1536315638.9 +40.29329181448988 1536320387.5 +31.547053278562828 1536325136 +14.380810981433797 1536329884.6 +0.0 1536334633.1 +0.0 1536339381.7 +73.88579853909486 1536383140.5 +61.640221879017076 1536387865.9 +55.48514462251453 1536392591.2 +50.887036688777584 1536397316.5 +46.32970810188129 1536402041.8 +40.70476235430698 1536406767.1 +32.10606488128836 1536411492.4 +15.27568405681683 1536416217.7 +0.0 1536420943 +0.0 1536425668.3 +74.5071154396368 1536469636.4 +62.09247176567482 1536474338.4 +55.85810837060191 1536479040.4 +51.23252485936752 1536483742.5 +46.68482297040366 1536488444.5 +41.119909965534845 1536493146.5 +32.6650764840139 1536497848.6 +16.17423420361063 1536502550.6 +0.0 1536507252.7 +0.0 1536511954.7 +75.08538043822722 1536556132.2 +62.53509495440012 1536560810.9 +56.23247663498914 1536565489.7 +51.578013029957454 1536570168.4 +47.03993783892602 1536574847.1 +41.53733013187362 1536579525.9 +33.2277651581502 1536584204.6 +17.0787339769261 1536588883.3 +0.0 1536593562 +0.0 1536598240.8 +75.63476534302032 1536642628.1 +62.96581889008208 1536647283.5 +56.6031678279656 1536651938.9 +51.92350120054739 1536656594.2 +47.401002333970055 1536661249.6 +41.958427369623145 1536665905 +33.79272638739741 1536670560.4 +17.989183376763233 1536675215.8 +0.0 1536679871.2 +0.0 1536684526.6 +76.14337090097278 1536729123.9 +63.39881538087496 1536733756 +56.976131576052985 1536738388 +52.274938997659 1536743020.1 +47.76206682901408 1536747652.1 +42.37584753596192 1536752284.1 +34.36136468805537 1536756916.2 +18.903309848011137 1536761548.2 +0.0 1536766180.2 +0.0 1536770812.3 +76.62450088142782 1536815619.9 +63.81991261862449 1536820228.5 +57.346822769029444 1536824837.2 +52.624104239659694 1536829445.8 +48.12908095057979 1536834054.5 +42.802894400233114 1536838663.1 +34.93000298871334 1536843271.8 +19.823385945780704 1536847880.4 +0.0 1536852489.1 +0.0 1536857097.7 +77.07675076808555 1536902115.9 +64.23138315844157 1536906701.1 +57.71156433548424 1536911286.3 +52.97186496536054 1536915871.6 +48.49382251703459 1536920456.8 +43.22399163798265 1536925042 +35.5009138444822 1536929627.3 +20.743462043550274 1536934212.5 +0.0 1536938797.8 +0.0 1536943383 +77.50379763235675 1536988611.9 +64.64285369825869 1536993173.7 +58.07857845704995 1536997735.5 +53.321030207361225 1537002297.3 +48.854887012078635 1537006859.1 +43.651038502253854 1537011420.9 +36.06955214514017 1537015982.7 +21.667215212730603 1537020544.5 +0.0 1537025106.3 +0.0 1537029668.1 +77.90564147424142 1537075108 +65.04469754014337 1537079646.3 +58.44332002350474 1537084184.7 +53.67246800447283 1537088723.1 +49.22557820505509 1537093261.4 +44.07808536652506 1537097799.8 +36.6441400723198 1537102338.1 +22.599190563543512 1537106876.5 +0.0 1537111414.8 +0.0 1537115953.2 +78.28823192026123 1537161604.2 +65.44059175550636 1537166119.1 +58.80438451854879 1537170633.9 +54.02163324647353 1537175148.8 +49.592592326620796 1537179663.7 +44.50880930220702 1537184178.6 +37.218727999499436 1537188693.5 +23.52889335924552 1537193208.4 +0.0 1537197723.3 +0.0 1537202238.2 +78.64702386019435 1537248100.4 +65.82685927293693 1537252591.8 +59.16544901359282 1537257083.2 +54.367121417063466 1537261574.7 +49.95733389307559 1537266066.1 +44.935856166478224 1537270557.5 +37.796992998089834 1537275048.9 +24.462273226358278 1537279540.3 +0.0 1537284031.7 +0.0 1537288523.1 +78.9925120307843 1537334596.8 +66.21312679036751 1537339064.7 +59.526513508636846 1537343532.6 +54.718559214175066 1537348000.5 +50.32802508605205 1537352468.4 +45.368852657271084 1537356936.4 +38.37158092526948 1537361404.3 +25.397925648581946 1537365872.2 +0.0 1537370340.1 +0.0 1537374808 +79.3127971789877 1537421093.3 +66.58976760986565 1537425537.7 +59.88162837715922 1537429982.1 +55.06999701128667 1537434426.5 +50.698716279028524 1537438870.9 +45.79957659295305 1537443315.3 +38.94984592385987 1537447759.7 +26.327628444283945 1537452204.1 +0.0 1537456648.5 +0.0 1537461092.9 +79.62345562925864 1537507589.8 +66.96045880284211 1537512010.7 +60.23674324568158 1537516431.6 +55.41916225328736 1537520852.5 +51.06573040059423 1537525273.4 +46.23257308374592 1537529694.3 +39.524433851039504 1537534115.2 +27.263280866507625 1537538536.1 +0.0 1537542957 +0.0 1537547377.9 +79.91853775507552 1537594086.6 +67.3252003692969 1537598483.9 +60.58818104279319 1537602881.3 +55.770600050398976 1537607278.7 +51.440098664981456 1537611676 +46.66556957453879 1537616073.4 +40.10497140474081 1537620470.8 +28.19298366220962 1537624868.2 +0.0 1537629265.5 +0.0 1537633662.9 +80.1980435564383 1537680583.4 +67.68626486434093 1537684957.3 +60.93961883990478 1537689331.1 +56.11608822098891 1537693705 +51.813062413068835 1537698078.8 +47.10224313674242 1537702452.6 +40.68323640333121 1537706826.5 +29.128636084433293 1537711200.3 +0.295082125816869 1537715574.2 +0.0 1537719948 +80.46197303334695 1537767080.4 +68.0436522879742 1537771430.7 +61.288784081905476 1537775781.1 +56.46752601810051 1537780131.4 +52.1837536060453 1537784481.7 +47.53891669894605 1537788832 +41.26377395703252 1537793182.3 +30.058338880135295 1537797532.6 +2.311655478061737 1537801882.9 +0.0 1537806233.2 +80.72222543884486 1537853577.6 +68.38914045856414 1537857904.4 +61.63427225249541 1537862231.2 +56.813014188690445 1537866557.9 +52.554444799021766 1537870884.7 +47.96964063462803 1537875211.5 +41.83608932910125 1537879538.3 +30.988041675837295 1537883865 +4.334178456828274 1537888191.8 +0.0 1537892518.6 +80.96462896477776 1537940075 +68.73462862915407 1537944378.2 +61.97976042308536 1537948681.5 +57.16217943069114 1537952984.7 +52.92513599199823 1537957287.9 +48.40858675194256 1537961591.2 +42.41662688280255 1537965894.4 +31.911794845017628 1537970197.6 +6.356701435594813 1537974500.9 +0.0 1537978804.1 +81.19967834788912 1538026572.5 +69.07416717322234 1538030852.2 +62.32524859367529 1538035131.9 +57.50766760128107 1538039411.6 +53.30177681149637 1538043691.3 +48.8452603141462 1538047971 +42.99121480998219 1538052250.7 +32.8318709427872 1538056530.5 +8.369597716428917 1538060810.2 +0.0 1538065089.9 +81.42282847795717 1538113070.2 +69.40407901935816 1538117326.4 +62.66705969285446 1538121582.6 +57.85315577187101 1538125838.8 +53.67246800447283 1538130095 +49.27598424982815 1538134351.1 +43.565802737161825 1538138607.3 +33.751947040556765 1538142863.5 +10.366917672808924 1538147119.7 +0.0 1538151375.8 +81.64002898150353 1538199568.2 +69.733990865494 1538203800.8 +63.002921165511964 1538208033.5 +58.19864394246094 1538212266.1 +54.0431591974493 1538216498.8 +49.712657812031786 1538220731.4 +44.14406773575223 1538224964.1 +34.6623964403939 1538229196.7 +12.342711678213158 1538233429.4 +0.0 1538237662 +81.84987534222837 1538286066.4 +70.0542760136974 1538290275.5 +63.336510083058556 1538294484.6 +58.54413211305087 1538298693.8 +54.419800016947434 1538302902.9 +50.149331374235416 1538307112 +44.71270603641018 1538311321.2 +35.57057328512014 1538315530.3 +14.289625589820094 1538319739.4 +0.0 1538323948.6 +82.04782244990986 1538372564.7 +70.37088409049004 1538376750.4 +63.672371555716055 1538380936 +58.89189283875172 1538385121.6 +54.7904912099239 1538389307.2 +50.58827749154996 1538393492.9 +45.28729396358982 1538397678.5 +36.4750730584356 1538401864.1 +16.215013550451264 1538406049.7 +0.0 1538410235.4 +82.23981993106969 1538459063.4 +70.68521961217176 1538463225.5 +64.00228340185188 1538467387.6 +59.231431382819984 1538471549.8 +55.161182402900366 1538475711.9 +51.01900142723192 1538479874 +45.855932264247784 1538484036.1 +37.36994613381863 1538488198.3 +18.105571790763467 1538492360.4 +0.0 1538496522.5 +82.42446326940801 1538545562.2 +70.99587806244274 1538549700.9 +64.33219524798771 1538553839.5 +59.576919553409915 1538557978.2 +55.53187359587683 1538562116.8 +51.45567498943556 1538566255.5 +46.42457056490575 1538570394.1 +38.264819209201676 1538574532.8 +19.961300310756705 1538578671.4 +0.0 1538582810.1 +82.6068340526354 1538632061.4 +71.29463725967037 1538636176.6 +64.65843002271279 1538640291.7 +59.916458097478184 1538644406.9 +55.9025647888533 1538648522.1 +51.88867148022843 1538652637.3 +46.98953179415296 1538656752.5 +39.147793031541376 1538660867.6 +21.785876181841747 1538664982.8 +0.0 1538669098 +82.77957813793036 1538718560.8 +71.59566901200891 1538722652.5 +64.98466479743786 1538726744.2 +60.25826919665735 1538730836 +56.27325598182977 1538734927.7 +52.32534504243207 1538739019.4 +47.554493023400155 1538743111.2 +40.02341271105954 1538747202.9 +23.573349777496915 1538751294.6 +0.0 1538755386.4 +82.94637259670367 1538805060.4 +71.88847858271487 1538809128.7 +65.30267739053036 1538813197 +60.597807740725614 1538817265.3 +56.643947174806236 1538821333.6 +52.75239190670327 1538825402 +48.11718169753645 1538829470.3 +40.89081020894514 1538833538.6 +25.33194327935478 1538837606.9 +0.0 1538841675.2 +83.10948998406619 1538891560.4 +72.1739340105993 1538895605.3 +65.62296253873376 1538899650.2 +60.93366921338311 1538903695.1 +57.01463836778271 1538907740 +53.1890654689069 1538911784.9 +48.676193300261986 1538915829.8 +41.75680319053089 1538919874.7 +27.049757434372026 1538923919.6 +0.0 1538927964.5 +83.26665774490706 1538978060.6 +72.4630665098945 1538982082.1 +65.9395706155264 1538986103.6 +61.26953068604061 1538990125.2 +57.38165248934841 1538994146.7 +53.616112333178094 1538998168.2 +49.231527831576756 1539002189.7 +42.60862436396238 1539006211.3 +28.73641894048105 1539010232.8 +0.0 1539014254.3 +83.42014843433716 1539064561.1 +72.74257231125726 1539068559.3 +66.25390613720813 1539072557.5 +61.605392158698116 1539076555.6 +57.75234368232488 1539080553.8 +54.0431591974493 1539084552 +49.78458980778062 1539088550.2 +43.453091394572354 1539092548.3 +30.388250726271128 1539096546.5 +0.0 1539100544.7 +83.56173987072393 1539151061.9 +73.01840104120927 1539155036.8 +66.56456458747911 1539159011.6 +61.93898107624471 1539162986.5 +58.11340817736891 1539166961.3 +54.47388313313127 1539170936.2 +50.337651783984484 1539174911.1 +44.28565917213899 1539178885.9 +32.00892986315299 1539182860.8 +0.0 1539186835.6 +83.70928093363237 1539237563 +73.28600758952871 1539241514.6 +66.87295048263915 1539245466.2 +62.271165477491465 1539249417.8 +58.484099370345376 1539253369.3 +54.90092999740247 1539257320.9 +50.88108706225592 1539261272.5 +45.108600251773176 1539265224.1 +33.58882965319423 1539269175.6 +0.0 1539273127.2 +83.84719529860837 1539324064.4 +73.55588669295905 1539327992.8 +67.17993186149937 1539331921.1 +62.601077323627294 1539335849.4 +58.84516386538941 1539339777.8 +55.324299790262906 1539343706.1 +51.42679489563826 1539347634.4 +45.92786425999662 1539351562.8 +35.14352642084893 1539355491.1 +0.0 1539359419.4 +83.98283710847348 1539410566.2 +73.8198161698677 1539414471.3 +67.48464068524866 1539418376.4 +62.93098916976312 1539422281.5 +59.20622836043345 1539426186.7 +55.745397028012434 1539430091.8 +51.9702301739097 1539433996.9 +46.73155194376596 1539437902 +36.663393468184665 1539441807.2 +0.0 1539445712.3 +84.11112477551704 1539497068.2 +74.08006857536562 1539500950.1 +67.78339988247629 1539504832.1 +63.25495138937728 1539508714.1 +59.56729285547748 1539512596 +56.16649426576197 1539516478 +52.5040387542487 1539520360 +47.52929000101362 1539524241.9 +38.14843079520144 1539528123.9 +0.0 1539532005.9 +84.2371398874497 1539583570.5 +74.33437135434185 1539587429.4 +68.07848200829316 1539591288.2 +63.581186164102355 1539595147.1 +59.92835735052152 1539599005.9 +56.58391443210074 1539602864.8 +53.03784733458771 1539606723.6 +48.31145173380718 1539610582.5 +39.60004291819911 1539614441.4 +0.0 1539618300.2 +84.36542755449328 1539670073.1 +74.58272450679641 1539673908.9 +68.37724120552079 1539677744.7 +63.90147131230576 1539681580.5 +60.28714929045465 1539685416.3 +57.00133459843951 1539689252.1 +53.56570628840503 1539693087.9 +49.083986768668325 1539696923.7 +41.02504750251039 1539700759.5 +0.0 1539704595.3 +84.4818159684935 1539756576.1 +74.83107765925098 1539760388.9 +68.6686462599269 1539764201.7 +64.22175646050916 1539768014.5 +60.63858708756624 1539771827.2 +57.41648220966738 1539775640 +54.0876156157007 1539779452.8 +49.84462255048612 1539783265.6 +42.41662688280255 1539787078.4 +0.0 1539790891.2 +84.59820438249373 1539843079.3 +75.06980411377312 1539846869.2 +68.95777875922211 1539850659 +64.54204160871255 1539854448.9 +60.99370195608861 1539858238.7 +57.827952749484474 1539862028.6 +54.60812042669651 1539865818.4 +50.59790418948239 1539869608.3 +43.76742691625409 1539873398.1 +0.0 1539877188 +84.71459279649397 1539929582.8 +75.30853056829524 1539933349.8 +69.24096163199563 1539937116.8 +64.85637713039429 1539940883.7 +61.34513975320021 1539944650.7 +58.23942328930157 1539948417.7 +55.120403056059736 1539952184.7 +51.339286575435324 1539955951.6 +45.09529648242999 1539959718.6 +0.0 1539963485.6 +84.82730413908344 1540016086.6 +75.54725702281738 1540019830.8 +69.52641705988006 1540023575 +65.17071265207602 1540027319.1 +61.696577550311815 1540031063.3 +58.64721675770791 1540034807.5 +55.63268568542297 1540038551.6 +52.06509263693416 1540042295.8 +46.386063773176026 1540046039.9 +0.0 1540049784.1 +84.93406585515123 1540102590.7 +75.77635677940708 1540106312.2 +69.80592286124283 1540110033.6 +65.481371102347 1540113755 +62.045742792312524 1540117476.4 +59.04906059959258 1540121197.9 +56.13761417196468 1540124919.3 +52.78354455561146 1540128640.7 +47.63972878849218 1540132362.1 +0.0 1540136083.6 +85.04082757121904 1540189095.1 +76.00545653599679 1540192793.9 +70.07947903608392 1540196492.6 +65.79202955261796 1540200191.4 +62.391230962902455 1540203890.2 +59.44863188636634 1540207588.9 +56.6343204768738 1540211287.7 +53.490097221245435 1540214986.5 +48.86451371001106 1540218685.2 +1.3374962641083417 1540222384 +85.14163966076516 1540275599.7 +76.22860666606482 1540279275.9 +70.35530776603593 1540282952.1 +66.09673837636727 1540286628.3 +62.73304206208162 1540290304.5 +59.85047572825101 1540293980.7 +57.13329933689384 1540297656.9 +54.181073562425304 1540301333.1 +50.054468911210954 1540305009.3 +0.0 1540308685.5 +85.24472430542221 1540362104.6 +76.44807972472208 1540365758.3 +70.62518686946628 1540369412 +66.40144720011656 1540373065.7 +63.07258060614989 1540376719.4 +60.24269287220325 1540380373.2 +57.62037894387054 1540384026.9 +54.860150650561835 1540387680.6 +51.207321836980995 1540391334.3 +0.0 1540394988 +85.33958676844667 1540448609.7 +76.66528022826844 1540452241 +70.8927934177857 1540455872.4 +66.7002063973442 1540459503.7 +63.40844207880739 1540463135 +60.63263746104458 1540466766.3 +58.10378147943648 1540470397.6 +55.53187359587684 1540474028.9 +52.33129466895373 1540477660.3 +43.418261674253394 1540481291.6 +85.43672178658204 1540535115.1 +76.87512658899328 1540538724.1 +71.15672289469437 1540542333.1 +67.00123814968272 1540545942.1 +63.74430355146489 1540549551.2 +61.02485460499681 1540553160.2 +58.58491145989151 1540556769.2 +56.18207059021607 1540560378.2 +53.4181652254966 1540563987.3 +48.27434945837733 1540567596.3 +85.52790717819575 1540621620.6 +77.0827003946072 1540625207.4 +71.41697530019226 1540628794.3 +67.2963202754996 1540632381.1 +64.0801650241224 1540635968 +61.40517249590571 1540639554.8 +59.05273767100334 1540643141.6 +56.82859051314455 1540646728.5 +54.47388313313127 1540650315.3 +51.64399539918462 1540653902.2 +85.61909256980944 1540708126.3 +77.29027420022115 1540711691.1 +71.67495515057927 1540715255.8 +67.5854527747948 1540718820.6 +64.41007687025821 1540722385.4 +61.787762941925514 1540725950.2 +59.52056388211518 1540729514.9 +57.45726155650801 1540733079.7 +55.4910942490362 1540736644.5 +53.622061959699764 1540740209.2 +85.70660089001238 1540794632.2 +77.49049386301355 1540798175 +71.9292579295555 1540801717.8 +67.87458527409 1540805260.6 +64.7340390898724 1540808803.5 +62.16440376142365 1540812346.3 +59.98244046670535 1540815889.1 +58.07857845704995 1540819431.9 +56.48310234255461 1540822974.7 +55.49704387555787 1540826517.6 +85.7918366551044 1540881138.2 +77.68844097069505 1540884659.2 +72.17988363712097 1540888180.2 +68.16371777338519 1540891701.2 +65.0543242380758 1540895222.2 +62.538772025810886 1540898743.2 +60.43469035336308 1540902264.2 +58.687996104548546 1540905785.2 +57.43800816064314 1540909306.2 +57.27489077328062 1540912827.2 +85.87934497530733 1540967644.3 +77.88043845185489 1540971143.6 +72.42823678957555 1540974642.9 +68.44917320126963 1540978142.2 +65.37460938627919 1540981641.5 +62.90578614737659 1540985140.9 +60.88326316861004 1540988640.2 +59.28183742759305 1540992139.5 +58.35808425841271 1540995638.8 +60.34945458827106 1540999138.1 +85.9609036689886 1541054150.5 +78.07470848812562 1541057628.3 +72.67291287061934 1541061106 +68.7286790026324 1541064583.8 +65.68894490796093 1541068061.6 +63.270527713831385 1541071539.3 +61.32588635733535 1541075017.1 +59.86237498129435 1541078494.8 +59.24700770727408 1541081972.6 +60.56297802040665 1541085450.4 +86.03651273614821 1541140656.8 +78.26075634276378 1541144113.1 +72.91163932514148 1541147569.5 +69.0022351774735 1541151025.9 +66.00555298475356 1541154482.2 +63.63159220887542 1541157938.6 +61.76255991953898 1541161394.9 +60.43101328195232 1541164851.3 +60.10477850722725 1541168307.7 +62.08652213915315 1541171764 +86.11807142982947 1541227163.1 +78.44539968110209 1541230598.2 +73.15036577966362 1541234033.3 +69.2780639074255 1541237468.4 +66.31026180850287 1541240903.5 +63.98670707739778 1541244338.7 +62.18960678381019 1541247773.8 +60.984075258156174 1541251208.9 +60.93366921338311 1541254644 +63.540406817261726 1541258079.1 +86.19368049698907 1541313669.3 +78.62182083780783 1541317083.4 +73.38314260766407 1541320497.4 +69.54199338433416 1541323911.5 +66.61497063225217 1541327325.5 +64.33814487450938 1541330739.6 +62.61070402155973 1541334153.6 +61.53346016294928 1541337567.6 +61.731407270630775 1541340981.7 +64.92235949962145 1541344395.7 +86.26928956414868 1541400175.6 +78.80051454962445 1541403568.7 +73.61224236425379 1541406961.9 +69.8118724877645 1541410355 +66.91967945600146 1541413748.1 +64.68363304509931 1541417141.3 +63.02217456137683 1541420534.4 +62.06131911676662 1541423927.6 +62.503942305491925 1541427320.7 +66.23832981275403 1541430713.8 +86.3412215598975 1541486681.7 +78.97325863491942 1541490054.1 +73.83539249432181 1541493426.6 +70.0698523381515 1541496799 +67.21476158181834 1541500171.4 +65.02317158916759 1541503543.8 +63.433645101193925 1541506916.3 +62.579551372651515 1541510288.7 +63.24532469144485 1541513661.1 +67.49794445459186 1541517033.5 +86.41315355564635 1541573187.7 +79.14005309369271 1541576539.6 +74.05854262438984 1541579891.5 +70.3301047436494 1541583243.4 +67.50389408111351 1541586595.3 +65.35903306182509 1541589947.2 +63.82953931655692 1541593299.1 +63.08815693060399 1541596651 +63.95782698360049 1541600002.9 +68.6975263537242 1541603354.8 +86.4791359248735 1541659693.6 +79.30912010757693 1541663025.1 +74.27801568304712 1541666356.7 +70.58440752262564 1541669688.3 +67.79302658040872 1541673019.9 +65.68894490796093 1541676351.4 +64.22543353191992 1541679683 +63.587135790624025 1541683014.6 +64.64285369825869 1541686346.2 +69.84670220808347 1541689677.7 +86.54511829410069 1541746199.2 +79.47223749493946 1541749510.7 +74.49153911518272 1541752822.1 +70.8327606750802 1541756133.6 +68.07848200829316 1541759445.1 +66.01517968268601 1541762756.5 +64.60802397793972 1541766068 +64.06826577107906 1541769379.4 +65.30267739053036 1541772690.9 +70.939522391148 1541776002.4 +86.61110066332785 1541832704.6 +79.62940525578031 1541835996.1 +74.69911292079665 1541839287.7 +71.077436756124 1541842579.3 +68.35798780965592 1541845870.9 +66.3354648308894 1541849162.4 +64.98834186884862 1541852454 +64.53609198219088 1541855745.6 +65.9395706155264 1541859037.2 +71.98193652943948 1541862328.7 +86.67708303255502 1541919209.6 +79.78657301662119 1541922481.5 +74.90895928152148 1541925753.5 +71.3198402820569 1541929025.4 +68.63154398449703 1541932297.3 +66.64980035257113 1541935569.2 +65.35903306182509 1541938841.1 +64.99429149537029 1541942113.1 +66.548988263025 1541945385 +72.96572244132531 1541948656.9 +86.73711577526052 1542005714.3 +79.93779115094038 1542008966.8 +75.10690638920298 1542012219.3 +71.55856673657902 1542015471.8 +68.90142308792736 1542018724.3 +66.96045880284211 1542021976.8 +65.72009755686912 1542025229.3 +65.44059175550636 1542028481.9 +67.13320288813706 1542031734.4 +73.90137486354898 1542034986.9 +86.79942107307691 1542092218.6 +80.08533221384883 1542095451.9 +75.30485349688448 1542098685.3 +71.78766649316873 1542101918.6 +69.16535256483604 1542105152 +67.26516762659139 1542108385.3 +66.0752124253915 1542111618.7 +65.87358824629922 1542114852 +67.69816411738427 1542118085.4 +74.77472198795624 1542121318.7 +86.85577674437165 1542178722.3 +80.2291962053465 1542181936.8 +75.50280060456599 1542185151.3 +72.01676624975843 1542188365.7 +69.42560497033392 1542191580.2 +67.56024975240827 1542194794.6 +66.42070059598143 1542198009.1 +66.29468548404877 1542201223.6 +68.23564976913401 1542204438 +75.58803636965801 1542207652.5 +86.91580948707714 1542265225.6 +80.37078764173326 1542268421.4 +75.69112101431504 1542271617.3 +72.23991637982647 1542274813.1 +69.68358482072094 1542278009 +67.84938225170346 1542281204.8 +66.76251169516061 1542284400.7 +66.70615602386587 1542287596.5 +68.75388202501892 1542290792.3 +76.3509447065867 1542293988.2 +86.96621553185021 1542351728.2 +80.50870200670927 1542354905.7 +75.87349179754246 1542358083.3 +72.45938943848374 1542361260.8 +69.9342105282864 1542364438.3 +68.1348376795879 1542367615.8 +67.09242354129643 1542370793.3 +67.10205023922886 1542373970.9 +69.25286088503896 1542377148.4 +77.05154774569901 1542380325.9 +87.02257120314493 1542438230.2 +80.64066674516359 1542441389.7 +76.05586258076985 1542444549.2 +72.6765899420301 1542447708.7 +70.1766140542193 1542450868.2 +68.41434348095066 1542454027.7 +67.41270868949984 1542457187.2 +67.48831775665943 1542460346.7 +69.73031379408323 1542463506.2 +77.70174474003825 1542466665.7 +87.07297724791802 1542524731.4 +80.77263148361793 1542527873.2 +76.23455629258649 1542531015 +72.88643630275494 1542534156.8 +70.41534050874144 1542537298.6 +68.6819500292701 1542540440.4 +67.72704421118156 1542543582.2 +67.86495857615756 1542546723.9 +70.18624075215173 1542549865.7 +78.29785861819366 1542553007.5 +87.12338329269107 1542611231.8 +80.8986465955506 1542614356.2 +76.40135075135979 1542617480.7 +73.08806048184721 1542620605.1 +70.65038989185281 1542623729.5 +68.94815206128968 1542626853.9 +68.03770266145253 1542629978.3 +68.2260230712016 1542633102.7 +70.62886394087704 1542636227.1 +78.85092059439752 1542639351.5 +87.17378933746414 1542697731.4 +81.0209846360725 1542700838.8 +76.57041776524397 1542703946.1 +73.28600758952871 1542707053.5 +70.87354002192085 1542710160.9 +69.20613191167666 1542713268.2 +68.33278478726939 1542716375.6 +68.58113793972397 1542719483 +71.04628410721581 1542722590.3 +79.35952615235 1542725697.7 +87.22051831082645 1542784230 +81.1433226765944 1542787320.7 +76.73721222401728 1542790411.3 +73.48027762579945 1542793502 +71.09669015198887 1542796592.7 +69.4604346906529 1542799683.4 +68.6219172865646 1542802774 +68.91699941238146 1542805864.7 +71.44812794910047 1542808955.4 +79.82735236346183 1542812046.1 +87.26724728418876 1542870727.6 +81.25971109059464 1542873801.9 +76.89437998485815 1542876876.3 +73.66859803554851 1542879950.6 +71.31021358412447 1542883025 +69.70511077169668 1542886099.3 +68.90142308792736 1542889173.7 +69.24691125851729 1542892248 +71.83439546653103 1542895322.4 +80.25807629914378 1542898396.7 +87.31170370244016 1542957224.1 +81.37242243318408 1542960282.5 +77.04787067428825 1542963340.9 +73.85096881877591 1542966399.3 +71.52373701626006 1542969457.7 +69.94383722621883 1542972516.1 +69.17497926276846 1542975574.5 +69.56124678019903 1542978632.9 +72.19913703298583 1542981691.3 +80.6562430696177 1542984749.7 +87.35248304928078 1543043719.4 +81.47918414925189 1543046762.2 +77.19541173719668 1543049805.1 +74.03333960200331 1543052847.9 +71.72763375046324 1543055890.7 +70.17293698280854 1543058933.6 +69.43523166826637 1543061976.4 +69.86595560394834 1543065019.3 +72.55057483009745 1543068062.1 +81.0209846360725 1543071105 +87.3932623961214 1543130213.4 +81.5859458653197 1543133241.1 +77.33700317358345 1543136268.8 +74.20608368729827 1543139296.5 +71.92558085814474 1543142324.2 +70.39608711287657 1543145351.9 +69.69321151865337 1543148379.6 +70.1610377297652 1543151407.3 +72.88643630275494 1543154435 +81.35684610873 1543157462.6 +87.43404174296205 1543216706.1 +81.68675795486584 1543219719.1 +77.47859460997022 1543222732.1 +74.36920107466081 1543225745 +72.11390126789381 1543228758 +70.61328761642294 1543231770.9 +69.93788759969716 1543234783.9 +70.44054353112797 1543237796.8 +73.20077182443667 1543240809.8 +81.66750455900097 1543243822.7 +87.47482108980269 1543303197.4 +81.7838929730012 1543306196.1 +77.61055934842454 1543309194.7 +74.53231846202334 1543312193.4 +72.2962720511212 1543315192 +70.82313397714776 1543318190.7 +70.17293698280854 1543321189.4 +70.7104226345583 1543324188 +73.50548064818598 1543327186.7 +81.95663705829617 1543330185.3 +87.50965081012164 1543389687.2 +81.87507836461491 1543392672 +77.74252408687887 1543395656.8 +74.6894862228642 1543398641.6 +72.47496576293784 1543401626.4 +71.02108108482926 1543404611.2 +70.39976418428733 1543407596 +70.97067504005621 1543410580.8 +73.79461314748119 1543413565.6 +82.22056653520484 1543416550.4 +87.54675308555152 1543476175.4 +81.9662637562286 1543479146.8 +77.86486212740078 1543482118.2 +74.83702728577265 1543485089.6 +72.64770984823281 1543488061 +71.21307856598911 1543491032.4 +70.6192372429446 1543494003.8 +71.21902819251078 1543496975.2 +74.07044187743318 1543499946.6 +82.46891968765941 1543502918 +87.58158280587048 1543562662 +82.05377207643153 1543565620.4 +77.98720016792268 1543568578.9 +74.97861872215941 1543571537.3 +72.8145043070061 1543574495.8 +71.40139897573816 1543577454.3 +70.8327606750802 1543580412.7 +71.4577546470329 1543583371.2 +74.32842172782019 1543586329.7 +82.69206981772743 1543589288.1 +87.61273545477869 1543649146.7 +82.1330582150019 1543652092.7 +78.10358858192292 1543655038.8 +75.11653308713541 1543657984.8 +72.97167206784697 1543660930.8 +71.58009268755481 1543663876.8 +71.03070778276171 1543666822.8 +71.68090477710093 1543669768.9 +74.57677488027474 1543672714.9 +82.90191617845227 1543675660.9 +87.64161554857597 1543735629.6 +82.21461690868317 1543738563.7 +78.21035029799071 1543741497.8 +75.24849782558974 1543744431.9 +73.11921313075541 1543747365.9 +71.74688714632809 1543750300 +71.22270526392154 1543753234.1 +71.90037783575819 1543756168.2 +74.80587463686444 1543759102.2 +83.0939136596121 1543762036.3 +87.67276819748417 1543822110.6 +82.286548904432 1543825033.3 +78.31711201405852 1543827955.9 +75.37451293752241 1543830878.5 +73.26675419366384 1543833801.2 +71.91000453369064 1543836723.8 +71.40139897573816 1543839646.5 +72.10200201485047 1543842569.1 +75.02534769552172 1543845491.7 +83.2762844428395 1543848414.4 +87.69797121987071 1543908589.6 +82.35848090018084 1543911501.3 +78.4142470321939 1543914413.1 +75.49685097804432 1543917324.8 +73.39871893211819 1543920236.5 +72.06717229453149 1543923148.2 +71.57414306103314 1543926059.9 +72.2962720511212 1543928971.7 +75.23292150113564 1543931883.4 +83.43940183020204 1543934795.1 +87.72317424225724 1543995066.5 +82.42814034081877 1543997967.8 +78.50543242380759 1544000869.2 +75.60956232063378 1544003770.5 +73.5306836705725 1544006671.9 +72.20876373091826 1544009573.2 +71.73726044839567 1544012474.5 +72.47496576293784 1544015375.9 +75.42719153740639 1544018277.2 +83.59289251963214 1544021178.5 +87.74837726464376 1544081541.2 +82.49044563863517 1544084432.7 +78.5966178154213 1544087324.2 +75.71632403670158 1544090215.7 +73.65302171109441 1544093107.2 +72.34667809589426 1544095998.7 +71.89442820923652 1544098890.2 +72.64770984823281 1544101781.7 +75.60956232063378 1544104673.2 +83.72853432949724 1544107564.7 +87.7735802870303 1544168013.6 +82.55047838134065 1544170895.9 +78.67817650910256 1544173778.1 +75.81713612624772 1544176660.3 +73.76941012509464 1544179542.5 +72.4786428343486 1544182424.8 +72.0360196456233 1544185307 +72.80855468048443 1544188189.2 +75.77635677940708 1544191071.4 +83.8568219965408 1544193953.6 +87.79510623800607 1544254483.7 +82.6068340526354 1544257357.2 +78.75973520278383 1544260230.8 +75.90832151786141 1544263104.3 +73.87617184116243 1544265977.8 +72.59503124834883 1544268851.3 +72.1739340105993 1544271724.8 +72.95609574339288 1544274598.3 +75.92984746883718 1544277471.8 +83.97321041054104 1544280345.3 +87.81435963387095 1544340951.4 +82.65724009740846 1544343816.8 +78.83166719853266 1544346682.2 +75.99582983806435 1544349547.5 +73.97698393070858 1544352412.9 +72.7077425909383 1544355278.3 +72.2962720511212 1544358143.7 +73.09401010836888 1544361009.1 +76.07738853174561 1544363874.4 +84.07997212660884 1544366739.8 +87.83588558484672 1544427416.6 +82.70396907077077 1544430274.4 +78.89764956775981 1544433132.2 +76.07738853174561 1544435990.1 +74.07044187743318 1544438847.9 +72.8145043070061 1544441705.7 +72.41266046512145 1544444563.6 +73.22002522030154 1544447421.4 +76.20935327019995 1544450279.2 +84.17710714474421 1544453137.1 +87.8514619093008 1544513879.1 +82.74842548902217 1544516730 +78.95768231046533 1544519580.9 +76.15299759890522 1544522431.8 +74.1556776425252 1544525282.7 +72.91163932514148 1544528133.6 +72.51942218118923 1544530984.5 +73.33868618941267 1544533835.4 +76.32574168420018 1544536686.3 +84.26234290983624 1544539537.2 +87.86703823375491 1544600339.1 +82.7892048358628 1544603183.6 +79.01403798176005 1544606028.2 +76.21897996813239 1544608872.7 +74.23128670968481 1544611717.3 +72.99687509023352 1544614561.8 +72.6165571993246 1544617406.4 +73.44544790548048 1544620250.9 +76.43845302678965 1544623095.5 +84.34022453210675 1544625940 +87.88034200309811 1544686796.3 +82.82403455618177 1544689635.1 +79.06444402653312 1544692473.9 +76.27901271083788 1544695312.7 +74.30321870543365 1544698151.6 +73.0724841573931 1544700990.4 +72.70179296441663 1544703829.2 +73.54031036850495 1544706668 +76.5333154898141 1544709506.9 +84.40988397274467 1544712345.7 +87.89224125614145 1544773250.7 +82.85518720508996 1544776084.4 +79.11117299989543 1544778918.1 +76.33536838213261 1544781751.8 +74.36325144813914 1544784585.6 +73.14441615314195 1544787419.3 +72.77967458668715 1544790253 +73.62186906218622 1544793086.7 +76.62082381001706 1544795920.4 +84.46623964403939 1544798754.2 +87.90186795407388 1544859702.2 +82.88633985399817 1544862531.4 +79.15195234673607 1544865360.7 +76.38209735549492 1544868189.9 +74.41593004802311 1544871019.2 +73.20672145095834 1544873848.4 +72.84933402732507 1544876677.7 +73.69747812934581 1544879506.9 +76.69643287717665 1544882336.2 +84.52259531533414 1544885165.4 +87.91149465200631 1544946150.8 +82.9115428763847 1544948976.2 +79.18083244053335 1544951801.6 +76.42287670233554 1544954627 +74.46633609279618 1544957452.5 +73.2571274957314 1544960277.9 +72.90568969861981 1544963103.3 +73.75978342716222 1544965928.7 +76.7624152464038 1544968754.1 +84.56705173358553 1544971579.5 +87.92112134993874 1545032596.5 +82.93079627224957 1545035418.7 +79.21198508944155 1545038240.9 +76.45770642265451 1545041063.1 +74.50116581311514 1545043885.3 +73.30158391398281 1545046707.5 +72.95609574339288 1545049529.7 +73.81613909845694 1545052351.9 +76.81282129117687 1545055174.1 +84.6041540090154 1545057996.3 +87.92707097646041 1545119039.1 +82.94637259670367 1545121858.7 +79.23351104041733 1545124678.4 +76.48290944504105 1545127498 +74.53231846202334 1545130317.7 +73.332736562891 1545133137.3 +72.99319801882274 1545135957 +73.85691844529758 1545138776.6 +76.85955026453918 1545141596.3 +84.62935703140194 1545144415.9 +87.93302060298208 1545205478.6 +82.958271849747 1545208296.3 +79.25276443628219 1545211114.1 +76.50443539601682 1545213931.8 +74.55752148440988 1545216749.6 +73.3638892117992 1545219567.3 +73.02207811262004 1545222385 +73.88579853909486 1545225202.8 +76.89070291344738 1545228020.5 +84.64861042726679 1545230838.3 +87.93669767439285 1545291914.9 +82.96789854767943 1545294731.4 +79.26239113421462 1545297547.9 +76.51773916536001 1545300364.4 +74.57309780886398 1545303180.9 +73.3794655362533 1545305997.4 +73.03765443707414 1545308813.9 +73.90732449007064 1545311630.4 +76.90995630931224 1545314446.9 +84.6641867517209 1545317263.3 +87.93669767439285 1545378348.1 +82.97157561909019 1545381164 +79.2683407607363 1545383979.9 +76.52368879188167 1545386795.8 +74.57677488027474 1545389611.7 +73.38314260766407 1545392427.6 +73.04728113500657 1545395243.4 +73.91695118800307 1545398059.3 +76.9159059358339 1545400875.2 +84.67013637824256 1545403691.1 +87.93669767439285 1545464778.1 +82.97157561909019 1545467594.1 +79.2683407607363 1545470410 +76.52368879188167 1545473225.9 +74.57677488027474 1545476041.8 +73.38314260766407 1545478857.8 +73.04728113500657 1545481673.7 +73.9110015614814 1545484489.6 +76.9159059358339 1545487305.6 +84.67013637824256 1545490121.5 +87.93669767439285 1545551204.8 +82.96789854767943 1545554021.5 +79.26239113421462 1545556838.1 +76.51773916536001 1545559654.7 +74.56714818234231 1545562471.4 +73.37351590973164 1545565288 +73.03765443707414 1545568104.6 +73.90137486354898 1545570921.3 +76.90400668279058 1545573737.9 +84.66050968031013 1545576554.5 +87.93302060298208 1545637628.3 +82.958271849747 1545640446.3 +79.25276443628219 1545643264.3 +76.50443539601682 1545646082.2 +74.5515718578882 1545648900.2 +73.35793958527753 1545651718.2 +73.01840104120927 1545654536.2 +73.87617184116243 1545657354.2 +76.87880366040405 1545660172.2 +84.64493335585603 1545662990.2 +87.92707097646041 1545724048.4 +82.94637259670367 1545726868.4 +79.23351104041733 1545729688.4 +76.48290944504105 1545732508.4 +74.53231846202334 1545735328.4 +73.332736562891 1545738148.4 +72.98724839230107 1545740968.4 +73.84501919225424 1545743788.4 +76.84397394008508 1545746608.4 +84.6197303334695 1545749428.4 +87.92707097646041 1545810465.2 +82.93079627224957 1545813287.8 +79.21198508944155 1545816110.5 +76.45175679613284 1545818933.1 +74.49521618659348 1545821755.8 +73.29195721605038 1545824578.4 +72.94646904546045 1545827401.1 +73.80056277400284 1545830223.7 +76.79724496672279 1545833046.4 +84.5885776845613 1545835869 +87.91744427852798 1545896878.6 +82.9115428763847 1545899704.6 +79.18083244053335 1545902530.5 +76.42287670233554 1545905356.5 +74.45670939486375 1545908182.4 +73.25117786920973 1545911008.4 +72.89606300068738 1545913834.3 +73.74420710270812 1545916660.3 +76.74316185053895 1545919486.2 +84.54779833772066 1545922312.2 +87.90554502548464 1545983288.7 +82.88633985399817 1545986118.6 +79.1460027202144 1545988948.5 +76.37614772897325 1545991778.4 +74.40998042150144 1545994608.3 +73.194822197915 1545997438.2 +72.83375770287097 1546000268.1 +73.67822473348095 1546003097.9 +76.67717948131178 1546005927.8 +84.50106936435837 1546008757.7 +87.89591832755221 1546069695.4 +82.86113683161163 1546072529.9 +79.10522337337376 1546075364.3 +76.33169131072185 1546078198.8 +74.35362475020672 1546081033.3 +73.13478945520951 1546083867.8 +72.76409826223305 1546086702.2 +73.60261566632136 1546089536.7 +76.59562078763052 1546092371.2 +84.44103662165287 1546095205.6 +87.88629162961978 1546156098.7 +82.82403455618177 1546158938.4 +79.06444402653312 1546161778.1 +76.27533563942711 1546164617.8 +74.28764238097955 1546167457.4 +73.05918038804991 1546170297.1 +72.68621663996254 1546173136.8 +73.51510734611841 1546175976.5 +76.50443539601682 1546178816.2 +84.38100387894738 1546181655.9 +87.87071530516567 1546242498.6 +82.7892048358628 1546245344.2 +79.01403798176005 1546248189.7 +76.21303034161072 1546251035.2 +74.21798294034161 1546253880.7 +72.9812987657794 1546256726.2 +72.59503124834883 1546259571.8 +73.41797232798305 1546262417.3 +76.40135075135979 1546265262.8 +84.30907188319854 1546268108.3 +87.85513898071157 1546328895.2 +82.74842548902217 1546331747.2 +78.95400523905455 1546334599.1 +76.14337090097278 1546337451.1 +74.14010131807112 1546340303.1 +72.89011337416571 1546343155.1 +72.49421915880271 1546346007 +73.30753354050448 1546348859 +76.29091196388121 1546351711 +84.22751318951727 1546354562.9 +87.83956265625748 1546415288.4 +82.70764614218153 1546418147.4 +78.89169994123814 1546421006.5 +76.07143890522394 1546423865.5 +74.05486555297908 1546426724.5 +72.79297835603035 1546429583.6 +72.38745744273491 1546432442.6 +73.19114512650424 1546435301.6 +76.16857392335932 1546438160.7 +84.13632779790358 1546441019.7 +87.82030926039262 1546501678.2 +82.65724009740846 1546504544.9 +78.82571757201099 1546507411.6 +75.98620314013192 1546510278.3 +73.95773053484372 1546513145 +72.68621663996254 1546516011.7 +72.27106902873467 1546518878.4 +73.05918038804991 1546521745.1 +76.0306595583833 1546524611.8 +84.03551570835744 1546527478.5 +87.80105586452774 1546588064.7 +82.6068340526354 1546590939.7 +78.75378557626216 1546593814.6 +75.89869481992896 1546596689.6 +73.85691844529758 1546599564.5 +72.57577785248398 1546602439.5 +72.14278136169109 1546605314.4 +72.91531639655224 1546608189.4 +75.87944142406413 1546611064.3 +83.92280436576796 1546613939.3 +87.77952991355197 1546674447.9 +82.55047838134065 1546677331.7 +78.6744994376918 1546680215.5 +75.8015598017936 1546683099.3 +73.75015672922979 1546685983 +72.45343981196207 1546688866.8 +72.00118992530433 1546691750.6 +72.76409826223305 1546694634.4 +75.72000110811234 1546697518.2 +83.80046632524606 1546700402 +87.7602765176871 1546760827.7 +82.49044563863517 1546763720.9 +78.59294074401053 1546766614.1 +75.70074771224748 1546769507.3 +73.63149576011864 1546772400.6 +72.32147507350774 1546775293.8 +71.8536488623959 1546778187 +72.6009808748705 1546781080.2 +75.54725702281738 1546783973.4 +83.66850158679173 1546786866.6 +87.73280094018968 1546847204.3 +82.42814034081877 1546850107.5 +78.50175535239683 1546853010.7 +75.59398599617968 1546855913.9 +73.50548064818598 1546858817 +72.17988363712097 1546861720.2 +71.69648110155504 1546864623.4 +72.42228716305388 1546867526.6 +75.36120916817922 1546870429.8 +83.5209605238833 1546873332.9 +87.70759791780314 1546933577.7 +82.35848090018084 1546936491.4 +78.40829740567222 1546939405.1 +75.48127465359022 1546942318.8 +73.37351590973164 1546945232.5 +72.03234257421254 1546948146.2 +71.5333637141925 1546951059.9 +72.23991637982647 1546953973.6 +75.16098950538681 1546956887.3 +83.36379276304243 1546959801 +87.6823948954166 1547019947.8 +82.286548904432 1547022872.5 +78.30748531612609 1547025797.3 +75.36120916817922 1547028722.1 +73.23560154475564 1547031646.9 +71.87517481337167 1547034571.6 +71.35694255748678 1547037496.4 +72.04196927214497 1547040421.2 +74.94973862836211 1547043345.9 +83.19104867774747 1547046270.7 +87.65351480161931 1547106314.7 +82.21461690868317 1547109251.1 +78.20072360005828 1547112187.4 +75.23292150113564 1547115123.8 +73.09401010836888 1547118060.2 +71.71205742600914 1547120996.5 +71.17229921914847 1547123932.9 +71.83439546653103 1547126869.2 +74.72431594318317 1547129805.6 +83.00272826799839 1547132742 +87.62236215271112 1547192678.5 +82.1330582150019 1547195627 +78.08801225746882 1547198575.4 +75.1009567626813 1547201523.9 +72.94051941893876 1547204472.4 +71.53931334071416 1547207420.8 +70.97435211146697 1547210369.3 +71.60897278135211 1547213317.8 +74.48558948866105 1547216266.2 +82.80478116031689 1547219214.7 +87.59120950380292 1547279039.2 +82.05377207643153 1547282000.3 +77.97757346999026 1547284961.4 +74.95936532629455 1547287922.4 +72.77967458668715 1547290883.5 +71.35694255748678 1547293844.6 +70.7704553772638 1547296805.7 +71.38214557987331 1547299766.7 +74.23128670968481 1547302727.8 +82.58530810165963 1547305688.9 +87.55637978348395 1547365396.9 +81.9662637562286 1547368371 +77.85523542946835 1547371345.2 +74.81182426338611 1547374319.4 +72.61060757280295 1547377293.5 +71.1686221477377 1547380267.7 +70.5592045002391 1547383241.9 +71.1374694988295 1547386216 +73.96368016136539 1547389190.2 +82.3465816471375 1547392164.4 +87.52155006316498 1547451751.5 +81.87507836461491 1547454739.2 +77.72922031753568 1547457727 +74.66428320047767 1547460714.7 +72.43786348750798 1547463702.4 +70.97067504005621 1547466690.2 +70.33378181506016 1547469677.9 +70.88316671985325 1547472665.7 +73.68417436000261 1547475653.4 +82.08860179675051 1547478641.2 +87.48444778773512 1547538103.1 +81.77794334647953 1547541104.9 +77.59498302397046 1547544106.7 +74.50116581311514 1547547108.5 +72.25549270428057 1547550110.2 +70.76677830585304 1547553112 +70.1010049870597 1547556113.8 +70.6192372429446 1547559115.6 +73.38314260766407 1547562117.4 +81.8127730667985 1547565119.2 +87.44961806741615 1547624451.8 +81.68080832834417 1547627468.1 +77.45934121410535 1547630484.4 +74.33804842575262 1547633500.6 +72.07312192105316 1547636516.9 +70.55325487371744 1547639533.2 +69.86227853253757 1547642549.5 +70.33973144158183 1547645565.7 +73.0724841573931 1547648582 +81.50806424304919 1547651598.3 +87.40883872057552 1547710797.7 +81.57999623879803 1547713828.9 +77.32142684912935 1547716860.1 +74.17125396697931 1547719891.3 +71.87517481337167 1547722922.5 +70.33378181506016 1547725953.7 +69.61392538008299 1547728984.9 +70.0542760136974 1547732016 +72.74257231125726 1547735047.2 +81.18410202343503 1547738078.4 +87.36805937373488 1547797140.7 +81.47323452273022 1547800187.2 +77.17388578622092 1547803233.8 +73.99850988168434 1547806280.3 +71.67495515057927 1547809326.9 +70.10695461358137 1547812373.4 +69.3536729745851 1547815420 +69.75551681646976 1547818466.5 +72.40303376718902 1547821513.1 +80.82898715491265 1547824559.6 +87.32133040037257 1547883480.9 +81.36052318014076 1547886543.2 +77.02266765190171 1547889605.5 +73.81613909845694 1547892667.9 +71.46738134496533 1547895730.2 +69.87190523046999 1547898792.5 +69.08379387115477 1547901854.8 +69.44118129478804 1547904917.1 +72.04196927214497 1547907979.4 +80.4427196374821 1547911041.7 +87.27687398212119 1547969818.5 +81.2500843926622 1547972896.9 +76.86917696247161 1547975975.4 +73.63149576011864 1547979053.8 +71.25385791282974 1547982132.3 +69.63317877594785 1547985210.8 +68.804288069792 1547988289.2 +69.11494652006297 1547991367.7 +71.66165138123607 1547994446.1 +80.02529947114333 1547997524.6 +87.23014500875888 1548056153.3 +81.13369597866196 1548059248.3 +76.70605957510908 1548062343.3 +73.43949827895881 1548065438.3 +71.03665740928338 1548068533.3 +69.37887599697163 1548071628.3 +68.52110519701846 1548074723.3 +68.77908504740547 1548077818.3 +71.26348461076216 1548080913.3 +79.57304958448559 1548084008.3 +87.18568859050748 1548142485.6 +81.01135793814007 1548145597.5 +76.54521474285744 1548148709.4 +73.24155117127731 1548151821.3 +70.81123472410442 1548154933.2 +69.1245732179954 1548158045.1 +68.2260230712016 1548161157 +68.43359687681554 1548164268.9 +70.85201407094507 1548167380.8 +79.08002035098723 1548170492.8 +87.13528254573441 1548228815.2 +80.88901989761816 1548231944.4 +76.37247065756249 1548235073.6 +73.03765443707414 1548238202.8 +70.57845789610397 1548241332 +68.86064374108672 1548244461.1 +67.92131424745229 1548247590.3 +68.0725323817715 1548250719.5 +70.41534050874144 1548253848.7 +78.54026214412656 1548256977.9 +87.08260394585045 1548315142.4 +80.75705515916383 1548318289.2 +76.19972657226752 1548321436 +72.83375770287097 1548324582.8 +70.3456810681035 1548327729.6 +68.5907646376564 1548330876.4 +67.61065579718134 1548334023.2 +67.70184118879504 1548337170 +69.9630906220837 1548340316.7 +77.95604751901448 1548343463.5 +87.03219790107738 1548401467.2 +80.6250904207095 1548404631.9 +76.02103286045089 1548407796.6 +72.62023427073537 1548410961.4 +70.1010049870597 1548414126.1 +68.31720846281529 1548417290.8 +67.28669357756716 1548420455.6 +67.32152329788613 1548423620.3 +69.4915873395611 1548426785 +77.32142684912935 1548429949.8 +86.97584222978264 1548487789.5 +80.49312568225517 1548490972.5 +75.83866207722347 1548494155.5 +72.40303376718902 1548497338.5 +69.85265183460514 1548500521.5 +68.03175303493086 1548503704.5 +66.95450917632044 1548506887.5 +66.92562908252313 1548510070.5 +68.99855810606273 1548513253.5 +76.63640013447113 1548516436.5 +86.92175911359881 1548574109.5 +80.3492616907575 1548577311.1 +75.65034166747442 1548580512.6 +72.17988363712097 1548583714.2 +69.59834905562889 1548586915.8 +67.74262053563567 1548590117.3 +66.62092025877384 1548593318.9 +66.51415854270603 1548596520.5 +68.4840029215886 1548599722 +75.89274519340732 1548602923.6 +86.86540344230409 1548660427.2 +80.20767025437073 1548663647.6 +75.45607163120368 1548666868.1 +71.95446095194204 1548670088.5 +69.338096650131 1548673308.9 +67.44753840981879 1548676529.4 +66.2754320881839 1548679749.8 +66.09673837636727 1548682970.2 +67.94651726983884 1548686190.7 +75.09133006474887 1548689411.1 +86.80309814448768 1548746742.7 +80.0601291914623 1548749982.3 +75.25812452352218 1548753221.9 +71.72168412394157 1548756461.4 +69.07416717322234 1548759701 +67.1428295860695 1548762940.6 +65.91804466455064 1548766180.2 +65.6637418855744 1548769419.8 +67.3875056671133 1548772659.3 +74.23128670968481 1548775898.9 +86.74306540178219 1548833056 +79.91258812855385 1548836315 +75.06017741584068 1548839574 +71.48295766941943 1548842833 +68.804288069792 1548846092 +66.83444369090944 1548849351 +65.55698016950659 1548852610 +65.21744162543833 1548855869 +66.80329104200123 1548859128 +73.31121061191524 1548862387 +86.68303265907669 1548919367.2 +79.75542036771299 1548922645.9 +74.85260361022674 1548925924.6 +71.24423121489731 1548929203.3 +68.5307318949509 1548932481.9 +66.52378524063846 1548935760.6 +65.18628897653012 1548939039.3 +64.75924211225893 1548942318 +66.1975504659134 1548945596.6 +72.33110177144017 1548948875.3 +86.61705028984952 1549005676.4 +79.59825260687212 1549008975 +74.6427572495019 1549012273.6 +70.9995551338535 1549015572.2 +68.25122609358813 1549018870.8 +66.20350009243506 1549022169.4 +64.80597108562124 1549025468 +64.28773882973633 1549028766.6 +65.56292979602826 1549032065.2 +71.29463725967037 1549035363.8 +86.54879536551145 1549091983.5 +79.44108484603126 1549095302.3 +74.42923381736631 1549098621.1 +70.75120198139894 1549101939.8 +67.96577066570369 1549105258.6 +65.87358824629922 1549108577.4 +64.41970356819066 1549111896.1 +63.80433629417038 1549115214.9 +64.90678317516736 1549118533.6 +70.2077667031275 1549121852.4 +86.48281299628427 1549178288.7 +79.27201783214706 1549181627.9 +74.21203331381994 1549184967 +70.49689920242271 1549188306.2 +67.6766381664085 1549191645.3 +65.54367640016339 1549194984.5 +64.02748642423842 1549198323.6 +63.30762998926126 1549201662.8 +64.22175646050916 1549205002 +69.0645404752899 1549208341.1 +86.41315355564635 1549264592 +79.10522337337376 1549267951.8 +73.99256025516267 1549271311.5 +70.2389193520357 1549274671.3 +67.3875056671133 1549278031.1 +65.2078149275059 1549281390.8 +63.62791513746466 1549284750.6 +62.79902443130879 1549288110.3 +63.50925416835352 1549291470.1 +67.86495857615756 1549294829.9 +86.3412215598975 1549350893.5 +78.93247928807878 1549354274 +73.76941012509464 1549357654.6 +69.97271732001613 1549361035.2 +67.08647391477476 1549364415.8 +64.86232675691596 1549367796.3 +63.21417204253665 1549371176.9 +62.28079217542389 1549374557.5 +62.76787178240059 1549377938.1 +66.6090210057305 1549381318.6 +86.26928956414868 1549437193.1 +78.75973520278383 1549440594.7 +73.53663329709417 1549443996.3 +69.70878784310746 1549447397.9 +66.78771471754713 1549450799.5 +64.51683858632603 1549454201.1 +62.79902443130879 1549457602.6 +61.74698359508488 1549461004.2 +61.995336747539454 1549464405.8 +65.29305069259793 1549467807.4 +86.19368049698907 1549523491 +78.57736441955643 1549526913.8 +73.30158391398281 1549530336.6 +69.44118129478804 1549533759.4 +66.47705626727617 1549537182.2 +64.15945116269275 1549540605 +62.37565463844835 1549544027.7 +61.19759869029178 1549547450.5 +61.19759869029178 1549550873.3 +63.90742093882743 1549554296.1 +86.1121218033078 1549609787.3 +78.39499363632902 1549613231.4 +73.06880708598234 1549616675.6 +69.16535256483604 1549620119.8 +66.1686703721161 1549623563.9 +63.80433629417038 1549627008.1 +61.94493070276638 1549630452.2 +60.63858708756624 1549633896.4 +60.36503091272515 1549637340.6 +62.45721333212962 1549640784.7 +86.03651273614821 1549696081.9 +78.20667322657995 1549699547.6 +72.82413100493854 1549703013.3 +68.88584676347327 1549706479 +65.85801192184513 1549709944.7 +63.439594727715594 1549713410.4 +61.50825714056275 1549716876.1 +60.06399916038662 1549720341.8 +59.50131048625032 1549723807.5 +60.92771958686144 1549727273.2 +85.95495404246694 1549782374.9 +78.01835281683088 1549785862.3 +72.57945492389474 1549789349.7 +68.60634096211051 1549792837.1 +65.53772677364172 1549796324.5 +63.07258060614989 1549799811.9 +61.05968432531578 1549803299.3 +59.476107463863784 1549806786.8 +58.60643741086728 1549810274.2 +63.17934232221768 1549813761.6 +85.8697182773749 1549868666.3 +77.82408278056015 1549872175.6 +72.33705139796184 1549875684.9 +68.32315808933696 1549879194.2 +65.21744162543833 1549882703.4 +62.701889413173426 1549886212.7 +60.607434438658046 1549889722 +58.879993585708384 1549893231.2 +57.67673461516528 1549896740.5 +57.62632857039221 1549900249.8 +85.78220995717197 1549954956.3 +77.62613567287866 1549958487.6 +72.0827486189856 1549962018.9 +68.03175303493086 1549965550.1 +64.89120685071326 1549969081.4 +62.32524859367529 1549972612.7 +60.15150748058955 1549976144 +58.264626311688104 1549979675.2 +56.71587917055508 1549983206.5 +59.45458151288801 1549986737.8 +85.69697419207995 1550041244.9 +77.42223893867549 1550044798.3 +71.82844584000937 1550048351.7 +67.74262053563567 1550051905.1 +64.56129500457743 1550055458.5 +61.94493070276638 1550059011.9 +59.68368126947772 1550062565.4 +57.63963233973541 1550066118.8 +55.720194005625906 1550069672.2 +53.95565087724636 1550073225.6 +85.60578880046624 1550127532 +77.22061475958321 1550131107.7 +71.57046598962236 1550134683.4 +67.44753840981879 1550138259.1 +64.23138315844157 1550141834.7 +61.55866318533581 1550145410.4 +59.21585505836588 1550148986.1 +57.00133459843951 1550152561.8 +54.68740656526686 1550156137.5 +50.73581855445839 1550159713.2 +85.51233085374164 1550213817.8 +77.01076839885837 1550217415.9 +71.3042639576028 1550221014 +67.14877921259117 1550224612 +63.891844614373326 1550228210.1 +61.17239566790526 1550231808.2 +58.738402149321615 1550235406.3 +56.34886504898937 1550239004.4 +53.622061959699764 1550242602.4 +49.86019887494023 1550246200.5 +85.41746839071718 1550300102.3 +76.79724496672279 1550303722.9 +71.04033448069414 1550307343.5 +66.84774746025262 1550310964.1 +63.55598314171582 1550314584.6 +60.78017852395301 1550318205.2 +58.25132254234491 1550321825.8 +55.6890413567177 1550325446.4 +52.52329215011356 1550329067 +45.46003804888479 1550332687.6 +85.3203333725818 1550386385.5 +76.5800444631764 1550390028.7 +70.7704553772638 1550393671.9 +66.54303863650333 1550397315.1 +63.21417204253665 1550400958.4 +60.38428430859002 1550404601.6 +57.76197038025731 1550408244.8 +55.007691713470265 1550411888 +51.38601554879763 1550415531.2 +0.0 1550419174.4 +85.21952128303568 1550472667.5 +76.36057140451915 1550476333.5 +70.49689920242271 1550479999.4 +66.23832981275403 1550483665.3 +62.86868387194672 1550487331.3 +59.98244046670535 1550490997.2 +57.26526407534818 1550494663.1 +54.32266499881207 1550498329.1 +50.217586298573494 1550501995 +0.0 1550505660.9 +85.11643663837864 1550558948.4 +76.13742127445111 1550562637.1 +70.22334302758159 1550566325.9 +65.92767136248307 1550570014.6 +62.523195701356784 1550573703.4 +59.576919553409915 1550577392.1 +56.762608143917376 1550581080.9 +53.616112333178094 1550584769.7 +49.012054772919484 1550588458.4 +0.0 1550592147.2 +85.00967492231084 1550645228.1 +75.90832151786141 1550648939.7 +69.94383722621883 1550652651.4 +65.619285467323 1550656363.1 +62.17403045935609 1550660074.8 +59.17139864011449 1550663786.4 +56.25767965737567 1550667498.1 +52.90361004102246 1550671209.8 +47.76801645553575 1550674921.4 +0.0 1550678633.1 +84.90291320624304 1550731506.7 +75.67554468986096 1550735241.4 +69.66433142485607 1550738976 +65.30267739053036 1550742710.7 +61.82259266224449 1550746445.4 +58.76360517170814 1550750180 +55.745397028012434 1550753914.7 +52.17780397952363 1550757649.4 +46.49282548924383 1550761384 +0.0 1550765118.7 +84.79247441876447 1550817784.3 +75.44049530674958 1550821542 +69.37887599697163 1550825299.8 +64.98466479743786 1550829057.5 +61.46747779372211 1550832815.3 +58.35213463189105 1550836573 +55.22716477212754 1550840330.8 +51.43642159357069 1550844088.5 +45.18053224752202 1550847846.3 +0.0 1550851604 +84.67976307617499 1550904060.9 +75.20176885222745 1550907841.8 +69.08974349767644 1550911622.7 +64.66437964923446 1550915403.6 +61.11236292519976 1550919184.5 +57.934714465552275 1550922965.4 +54.702982889720964 1550926746.3 +50.68313995457442 1550930527.2 +43.83340928548126 1550934308.1 +0.0 1550938089 +84.56337466217477 1550990336.5 +74.95936532629455 1550994140.6 +68.79466137185956 1550997944.7 +64.34409450103105 1551001748.9 +60.751298430155714 1551005553 +57.51956685432441 1551009357.1 +54.175123935903635 1551013161.3 +49.916554546234956 1551016965.4 +42.45145660312151 1551020769.5 +0.0 1551024573.6 +84.44103662165287 1551076611.2 +74.70873961872908 1551080438.6 +68.50552887256437 1551084266 +64.01785972630599 1551088093.4 +60.39023393511169 1551091920.9 +57.09619706146397 1551095748.3 +53.64131535556463 1551099575.7 +49.14401951137382 1551103403.1 +41.03835127185358 1551107230.5 +0.0 1551111057.9 +84.31502150972021 1551162885 +74.45670939486375 1551166735.8 +68.20449712022582 1551170586.5 +63.693897506691826 1551174437.3 +60.02916944006765 1551178288.1 +56.67509982371444 1551182138.9 +53.10750677522563 1551185989.6 +48.35590815205858 1551189840.4 +39.590416220266675 1551193691.2 +0.0 1551197541.9 +84.18673384267663 1551249158 +74.20240661588751 1551253032.1 +67.9057379229982 1551256906.3 +63.361713105445084 1551260780.5 +59.662155318501945 1551264654.7 +56.248052959443235 1551268528.9 +52.5640714969542 1551272403.1 +47.554493023400155 1551276277.2 +38.107651448360805 1551280151.4 +0.4581995131794051 1551284025.6 +84.06071873074397 1551335430.1 +73.94215421038962 1551339327.8 +67.6010290992489 1551343225.4 +63.03180125930926 1551347123.1 +59.29741375204715 1551351020.7 +55.82100609517204 1551354918.3 +52.02063621868277 1551358816 +46.74485571310915 1551362713.6 +36.58778440102507 1551366611.3 +0.47377583763350667 1551370508.9 +83.92280436576796 1551421701.5 +73.67822473348095 1551425622.7 +67.2963202754996 1551429543.8 +62.701889413173426 1551433465 +58.930399630481446 1551437386.1 +55.39028215949007 1551441307.3 +51.4675742424789 1551445228.5 +45.92191463347495 1551449149.6 +35.03676470478113 1551453070.8 +0.4834025355659376 1551456991.9 +83.78489000079198 1551507972.2 +73.40834563005062 1551511916.9 +66.98566182522862 1551515861.6 +62.36602794051592 1551519806.3 +58.55970843750497 1551523751 +54.9572856686972 1551527695.7 +50.91223971116412 1551531640.5 +45.08934685590832 1551535585.2 +33.44723821680746 1551539529.9 +0.0 1551543474.6 +83.64329856440521 1551594242.1 +73.13478945520951 1551598210.4 +66.67500337495767 1551602178.7 +62.03016646785842 1551606147.1 +58.18901724452851 1551610115.4 +54.526561733015235 1551614083.7 +50.359177734960255 1551618052 +44.250829451820024 1551622020.3 +31.826559079925595 1551625988.7 +0.0 1551629957 +83.49575750149677 1551680511.4 +72.85528365384674 1551684503.3 +66.36066785327594 1551688495.3 +61.690627923790146 1551692487.3 +57.81832605155204 1551696479.2 +54.0876156157007 1551700471.2 +49.79421650571305 1551704463.1 +43.396735723277615 1551708455.1 +30.174727294135522 1551712447.1 +0.0 1551716439 +83.34226681206667 1551766780 +72.57577785248398 1551770795.7 +66.04038270507253 1551774811.3 +61.35108937972188 1551778827 +57.441685232053906 1551782842.6 +53.65094205349706 1551786858.2 +49.231527831576756 1551790873.9 +42.53301529680278 1551794889.5 +28.48211616150482 1551798905.1 +0.0 1551802920.8 +83.1850990512258 1551853048.1 +72.28664535318877 1551857087.5 +65.72009755686912 1551861126.8 +61.00927828054271 1551865166.1 +57.06731696766668 1551869205.5 +53.214268491293424 1551873244.8 +48.66656660232955 1551877284.2 +41.663345243806276 1551881323.5 +26.754675308555157 1551885362.9 +0.0 1551889402.2 +83.02425421897416 1551939315.6 +71.99524029878266 1551943378.7 +65.39981240866572 1551947441.8 +60.66973973647445 1551951504.9 +56.69662577469021 1551955567.9 +52.7775949290898 1551959631 +48.091978675149925 1551963694.1 +40.784048492877346 1551967757.2 +24.986455108764847 1551971820.3 +0.0 1551975883.4 +82.85518720508996 1552025582.6 +71.7024307280767 1552029669.4 +65.07585018905155 1552033756.3 +60.32425156588452 1552037843.1 +56.31998495519207 1552041930 +52.334971740364495 1552046016.8 +47.52334037449195 1552050103.7 +39.895125044015984 1552054190.5 +23.187082260066344 1552058277.4 +0.0 1552062364.2 +82.67876604838423 1552111849.1 +71.40139897573816 1552115959.7 +64.74366578780483 1552120070.3 +59.978763395294585 1552124181 +55.943344135693934 1552128291.6 +51.892348551639195 1552132402.2 +46.94507537590157 1552136512.9 +38.996574897222175 1552140623.5 +21.346930064527204 1552144734.2 +0.0 1552148844.8 +82.5000723365676 1552198115.1 +71.0907405254672 1552202249.5 +64.41375394166899 1552206384 +59.63327522470465 1552210518.4 +55.563026244785036 1552214652.9 +51.451997918024794 1552218787.3 +46.370487448721924 1552222921.8 +38.09207512390671 1552227056.2 +19.471948148669103 1552231190.7 +0.0 1552235325.1 +82.31175192681853 1552284380.7 +70.78235463030713 1552288539 +64.0801650241224 1552292697.2 +59.287787054114716 1552296855.5 +55.1863854252869 1552301013.8 +51.009374729299495 1552305172.1 +45.78994989502062 1552309330.3 +37.177948652658806 1552313488.6 +17.56213651249203 1552317646.9 +0.0 1552321805.2 +82.12343151706946 1552370645.9 +70.4657465535145 1552374828 +63.74430355146489 1552379010.1 +58.936349257003116 1552383192.2 +54.806067534378 1552387374.4 +50.56675154057418 1552391556.5 +45.205735269908544 1552395738.6 +36.261549626299995 1552399920.7 +15.615222600885092 1552404102.8 +0.0 1552408285 +81.9195347828663 1552456910.7 +70.1454614053111 1552461116.7 +63.40844207880739 1552465322.7 +58.58491145989151 1552469528.7 +54.42942671487987 1552473734.6 +50.12045128043812 1552477940.6 +44.62152064479649 1552482146.6 +35.337796457119666 1552486352.6 +13.639428595480865 1552490558.5 +0.0 1552494764.5 +81.71196097725237 1552543175.2 +69.82149918569694 1552547405.1 +63.068903534739135 1552551634.9 +58.23574621789081 1552555864.8 +54.04910882397097 1552560094.6 +49.677828091712826 1552564324.5 +44.03730601968442 1552568554.3 +34.40809366141767 1552572784.2 +11.632481941168429 1552577014 +0.0 1552581243.9 +81.49843754511676 1552629439.4 +69.4915873395611 1552633693.2 +62.7234153641492 1552637946.9 +57.884308420779206 1552642200.6 +53.67246800447283 1552646454.3 +49.23520490298752 1552650708.1 +43.447141768050685 1552654961.8 +33.472441239194 1552659215.5 +9.59438263794779 1552663469.3 +0.0 1552667723 +81.27528741504874 1552715703.4 +69.1557258669036 1552719981 +62.38160426497002 1552724258.6 +57.532870623667606 1552728536.2 +53.28987755845303 1552732813.8 +48.78890464285146 1552737091.4 +42.86292714293862 1552741369.1 +32.5271621190379 1552745646.7 +7.540707010273048 1552749924.3 +0.0 1552754201.9 +81.0365609605266 1552801967.1 +68.81618732283533 1552806268.6 +62.03016646785842 1552810570.1 +57.18370538166691 1552814871.6 +52.90955966754413 1552819173.1 +48.34628145412615 1552823474.6 +42.275035446415785 1552827776.1 +31.58783262540346 1552832077.6 +5.473727613255116 1552836379.1 +0.0 1552840680.6 +80.7918848794828 1552888230.6 +68.4706991522454 1552892556 +61.684678297268476 1552896881.4 +56.82859051314455 1552901206.8 +52.532918848045995 1552905532.2 +47.89998119399009 1552909857.6 +41.68487119478205 1552914183 +30.63660387872569 1552918508.4 +3.394848963193843 1552922833.8 +0.0 1552927159.2 +80.53758210050657 1552974493.9 +68.1192613551338 1552978843.2 +61.329563428746106 1552983192.5 +56.47715271603294 1552987541.8 +52.152600957137096 1552991891.1 +47.457358005264794 1552996240.4 +41.09470694314831 1553000589.7 +29.687647687158826 1553004938.9 +1.3219199396542398 1553009288.2 +0.0 1553013637.5 +80.2736526235979 1553060757.1 +67.75819686008977 1553065130.3 +60.98039818674542 1553069503.4 +56.122037847510576 1553073876.6 +51.77596013763896 1553078249.8 +47.01473481653949 1553082623 +40.50454269151457 1553086996.2 +28.73641894048105 1553091369.4 +0.0 1553095742.6 +0.0 1553100115.7 +79.99414682223512 1553147020.1 +67.39713236504574 1553151417.2 +60.62301076311215 1553155814.3 +55.764650423877306 1553160211.4 +51.39564224673006 1553164608.4 +46.57211162781418 1553169005.5 +39.91070136847008 1553173402.6 +27.78151312239253 1553177799.7 +0.0 1553182196.7 +0.0 1553186593.8 +79.69906469641826 1553233283.1 +67.02644117206926 1553237704.1 +60.261946268068115 1553242125 +55.40953555535493 1553246546 +51.01900142723192 1553250967 +46.13176099419979 1553255387.9 +39.32053711683634 1553259808.9 +26.82065767778232 1553264229.8 +0.0 1553268650.8 +0.0 1553273071.8 +79.39067880125819 1553319546 +66.64980035257113 1553323990.9 +59.90315432813499 1553328435.7 +55.05442068683257 1553332880.5 +50.64236060773379 1553337325.4 +45.68913780547449 1553341770.2 +38.73264542031351 1553346215.1 +25.865751859693784 1553350659.9 +0.0 1553355104.7 +0.0 1553359549.6 +79.0703936530548 1553405808.9 +66.26948246166224 1553410277.6 +59.54208983309095 1553414746.3 +54.702982889720964 1553419215 +50.267992343346556 1553423683.7 +45.24651461674918 1553428152.5 +38.14248116867977 1553432621.2 +24.910846041605247 1553437089.9 +0.0 1553441558.6 +0.0 1553446027.3 +78.72858255387563 1553492071.8 +65.88321494423167 1553496564.4 +59.181025338046915 1553501057 +54.34786802119861 1553505549.5 +49.89135152384843 1553510042.1 +44.80984105454556 1553514534.6 +37.552316917046035 1553519027.2 +23.955940223516716 1553523519.8 +0.0 1553528012.3 +0.0 1553532504.9 +78.36751805883158 1553578334.8 +65.49099780027943 1553582851.2 +58.81401121648121 1553587367.6 +53.99275315267623 1553591884 +49.514710704350286 1553596400.4 +44.36721786582025 1553600916.8 +36.964425220523204 1553605433.2 +22.998761850317273 1553609949.6 +0.0 1553614466 +0.0 1553618982.4 +77.99314979444435 1553664597.8 +65.09142651350565 1553669138 +58.44926965002641 1553673678.2 +53.63536572904296 1553678218.5 +49.14401951137382 1553682758.7 +43.93054430361662 1553687298.9 +36.380210595411135 1553691839.2 +22.049805658750408 1553696379.4 +0.0 1553700919.6 +0.0 1553705459.8 +77.5913059525597 1553750860.9 +64.68363304509931 1553755424.9 +58.07857845704995 1553759989 +53.28025086052059 1553764553 +48.77332831839737 1553769117 +43.49754781282375 1553773681.1 +35.79004634377741 1553778245.1 +21.09857691207264 1553782809.2 +0.0 1553787373.2 +0.0 1553791937.2 +77.16425908828847 1553837124.1 +64.27216250528222 1553841711.9 +57.707887264073484 1553846299.8 +52.92513599199823 1553850887.6 +48.39668749889922 1553855475.4 +43.06087425062012 1553860063.3 +35.20583171866533 1553864651.1 +20.153297791916536 1553869238.9 +0.0 1553873826.7 +0.0 1553878414.6 +76.71200920163075 1553923387.5 +63.85474233894345 1553927999.1 +57.334923515986105 1553932610.7 +52.57369819488663 1553937222.3 +48.03194593244443 1553941833.9 +42.630150314938156 1553946445.5 +34.625294164964025 1553951057.1 +19.208018671760435 1553955668.7 +0.0 1553960280.3 +0.0 1553964891.8 +76.23455629258649 1554009651.1 +63.427695474672255 1554014286.4 +56.96055525159888 1554018921.8 +52.21858332636427 1554023557.1 +47.66125473946796 1554028192.4 +42.20310345066695 1554032827.8 +34.04107953985197 1554037463.1 +18.268689178126003 1554042098.4 +0.0 1554046733.8 +0.0 1554051369.1 +75.72595073463401 1554095914.9 +62.996971538990294 1554100573.9 +56.58391443210074 1554105233 +51.86714552925266 1554109892 +47.294240617902254 1554114551.1 +41.770106959874084 1554119210.1 +33.46649161267233 1554123869.2 +17.33303675590233 1554128528.2 +0.0 1554133187.3 +0.0 1554137846.4 +75.18251545636258 1554182178.9 +62.55434835026499 1554186861.7 +56.2072736126026 1554191544.4 +51.51203066073029 1554196227.1 +46.929499051447465 1554200909.9 +41.34306009560288 1554205592.6 +32.88822661408194 1554210275.4 +16.403333960200335 1554214958.1 +0.0 1554219640.8 +0.0 1554224323.6 +74.60792752918293 1554268443.3 +62.111725161539674 1554273149.7 +55.83063279310447 1554277856 +51.16059286361869 1554282562.4 +46.56248492988175 1554287268.8 +40.91828578644258 1554291975.2 +32.31363868690229 1554296681.6 +15.48325786243076 1554301388 +0.0 1554306094.4 +0.0 1554310800.8 +73.9888831837519 1554354707.9 +61.65579820347118 1554359437.9 +55.450314902195565 1554364167.9 +50.811427621617995 1554368897.9 +46.20142043483772 1554373628 +40.49491599358214 1554378358 +31.745000386244328 1554383088 +14.563181764661195 1554387818 +0.0 1554392548 +0.0 1554397278 +73.332736562891 1554440972.9 +61.19759869029178 1554445726.5 +55.07367408269743 1554450480.1 +50.45998982450638 1554455233.7 +45.84035593979368 1554459987.3 +40.07976838235428 1554464740.9 +31.176362085586362 1554469494.5 +13.655004919934967 1554474248.1 +0.0 1554479001.7 +0.0 1554483755.3 +72.63581059518947 1554527238.2 +60.72977247917994 1554532015.4 +54.69335619178854 1554536792.5 +50.11082458250569 1554541569.7 +45.481563999860555 1554546346.8 +39.65639858949384 1554551124 +30.607723784928396 1554555901.1 +12.754182218030259 1554560678.3 +0.0 1554565455.4 +0.0 1554570232.6 +71.89442820923652 1554613504 +60.25826919665735 1554618304.7 +54.30708867435797 1554623105.3 +49.76533641191576 1554627906 +45.12417657622728 1554632706.6 +39.24492804967674 1554637507.3 +30.048712182202863 1554642307.9 +11.85563207123646 1554647108.6 +0.0 1554651909.2 +0.0 1554656709.9 +71.1063168499213 1554699770.2 +59.774866661091416 1554704594.3 +53.92677078344907 1554709418.4 +49.413898614804154 1554714242.5 +44.76906170770493 1554719066.6 +38.829780438448886 1554723890.8 +29.483750952955656 1554728714.9 +10.970385693785852 1554733539 +0.0 1554738363.1 +0.0 1554743187.2 +70.27374907235466 1554786036.9 +59.28183742759305 1554790884.4 +53.5405032660185 1554795731.9 +49.06841044421422 1554800579.4 +44.41394683918256 1554805427 +38.42198697004254 1554810274.5 +28.930688976751792 1554815122 +10.093361497967829 1554819969.5 +0.0 1554824817 +0.0 1554829664.6 +69.39445232142573 1554872304.1 +58.78880819409468 1554877174.9 +53.15423574858793 1554882045.8 +48.7229222736243 1554886916.7 +44.06250904207096 1554891787.6 +38.01051643022544 1554896658.5 +28.381304071958688 1554901529.3 +9.223691444971323 1554906400.2 +0.0 1554911271.1 +0.0 1554916142 +68.47437622365617 1554958571.8 +58.286152262663876 1554963465.9 +52.771645302568125 1554968360.1 +48.38111117444512 1554973254.3 +43.71702087148102 1554978148.5 +37.60867258834077 1554983042.7 +27.831919167165584 1554987936.9 +8.363648089907247 1554992831.1 +0.0 1554997725.3 +0.0 1555002619.4 +67.51947040556763 1555044840 +57.77386963330065 1555049757.5 +52.385377785137564 1555054674.9 +48.04157263037687 1555059592.3 +43.37153270089109 1555064509.8 +37.2068287464561 1555069427.2 +27.28848388889416 1555074344.6 +7.515503987886515 1555079262.1 +0.0 1555084179.5 +0.0 1555089097 +66.5334119385709 1555131108.9 +57.25563737741575 1555136049.6 +51.99543319629623 1555140990.2 +47.696084459786924 1555145930.8 +43.02604453030116 1555150871.4 +36.80725745968235 1555155812 +26.745048610622714 1555160752.7 +6.676986583798212 1555165693.3 +0.0 1555170633.9 +0.0 1555175574.5 +65.51620082266595 1555217378.5 +56.73145549500917 1555222342.2 +51.60916567886566 1555227305.9 +47.36022298712942 1555232269.7 +42.68055635971122 1555237233.4 +36.40909068920843 1555242197.2 +26.211240030283715 1555247160.9 +5.848095877642341 1555252124.6 +0.0 1555257088.4 +0.0 1555262052.1 +64.47973631089616 1555303648.7 +56.19764691467017 1555308635.4 +51.2228981614351 1555313622.2 +47.02436151447192 1555318609 +42.344694887053706 1555323595.8 +36.0191461003671 1555328582.6 +25.677431449944713 1555333569.4 +5.031104424529811 1555338556.2 +0.0 1555343543 +0.0 1555348529.8 +63.42401840326149 1555389919.6 +55.65421163639874 1555394929.3 +50.83663064400453 1555399939.1 +46.68482297040365 1555404948.9 +42.00883341439621 1555409958.7 +35.63287858293654 1555414968.4 +25.153249567538143 1555419978.2 +4.223739669349713 1555424988 +0.0 1555429997.8 +0.0 1555435007.5 +62.35045161606182 1555476191.2 +55.104826731605634 1555481223.9 +50.444413500052285 1555486256.6 +46.35491112426782 1555491289.2 +41.675244496849615 1555496321.9 +35.24661106550597 1555501354.6 +24.631340240242483 1555506387.3 +3.4260016121020462 1555511419.9 +0.0 1555516452.6 +0.0 1555521485.3 +61.26358105951894 1555562463.6 +54.55176475540177 1555567519.1 +50.05814598262172 1555572574.6 +46.02499927813199 1555577630.1 +41.34306009560288 1555582685.6 +34.864020619486176 1555587741.1 +24.113107984357583 1555592796.6 +2.641567324197569 1555597852.1 +0.0 1555602907.6 +0.0 1555607963.1 +60.16113417852199 1555648736.9 +53.98680352615456 1555653815.1 +49.67187846519115 1555658893.3 +45.69281487688525 1555663971.6 +41.01909787598872 1555669049.8 +34.48370272857726 1555674128 +23.604502426405116 1555679206.3 +1.871304844447344 1555684284.5 +0.0 1555689362.7 +0.0 1555694441 +59.04311097307091 1555735011 +53.4181652254966 1555740111.9 +49.28561094776059 1555745212.7 +45.368852657271084 1555750313.6 +40.69286310126364 1555755414.5 +34.11301153560081 1555760515.4 +23.095896868452645 1555765616.2 +1.108396507518639 1555770717.1 +0.0 1555775818 +0.0 1555780918.9 +57.90583437175498 1555821286 +52.843577298316966 1555826409.4 +48.89934343033003 1555831532.8 +45.04261788254601 1555836656.2 +40.37257795306024 1555841779.7 +33.74232034262434 1555846903.1 +22.593240937021843 1555852026.5 +0.36106449504403554 1555857149.9 +0.0 1555862273.4 +0.0 1555867396.8 +56.75070889087404 1555907561.9 +52.259362673204905 1555912707.8 +48.513075912899446 1555917853.6 +44.71865566293186 1555922999.5 +40.05229280485684 1555928145.4 +33.371629149647866 1555933291.2 +22.100211703523478 1555938437.1 +0.0 1555943583 +0.0 1555948728.9 +0.0 1555953874.7 +55.57860256923914 1555993838.8 +51.66919842157116 1555999007 +48.12908095057979 1556004175.2 +44.398370514728455 1556009343.4 +39.737957283175106 1556014511.6 +33.01056465460383 1556019679.8 +21.60718247002511 1556024848 +0.0 1556030016.3 +0.0 1556035184.5 +0.0 1556040352.7 +54.38269774151757 1556080116.7 +51.075357098526666 1556085307.1 +47.74281343314922 1556090497.5 +44.08403499304673 1556095688 +39.42729883290414 1556100878.4 +32.6495001595598 1556106068.9 +21.123779934459172 1556111259.3 +0.0 1556116449.8 +0.0 1556121640.2 +0.0 1556126830.6 +53.173489144452795 1556166395.6 +50.46961652243882 1556171608.1 +47.35654591571866 1556176820.7 +43.76742691625409 1556182033.3 +39.11891293774408 1556187245.8 +32.29806236244819 1556192458.4 +20.646327025414905 1556197670.9 +0.0 1556202883.5 +0.0 1556208096 +0.0 1556213308.6 +51.9390775250015 1556252675.6 +49.860198874940224 1556257910.1 +46.97395546969886 1556263144.7 +43.453091394572354 1556268379.2 +38.81420411399478 1556273613.8 +31.9488971204475 1556278848.3 +20.174823742892308 1556284082.9 +0.0 1556289317.4 +0.0 1556294552 +0.0 1556299786.5 +50.68908958109609 1556338956.8 +49.24483160091995 1556344213.2 +46.59363757878995 1556349469.6 +43.14838257082305 1556354726 +38.51317236165623 1556359982.4 +31.603408949857563 1556365238.8 +19.70699753178047 1556370495.2 +0.0 1556375751.6 +0.0 1556381008 +0.0 1556386264.4 +49.417575686214924 1556425239.1 +48.625787255488916 1556430517.2 +46.21331968788106 1556435795.3 +42.83772412055208 1556441073.4 +38.214413164428606 1556446351.6 +31.261597850678392 1556451629.7 +19.24512094719031 1556456907.8 +0.0 1556462185.9 +0.0 1556467464.1 +0.0 1556472742.2 +48.12313132405812 1556511522.6 +48.00079328353622 1556516822.3 +45.83667886838292 1556522122 +42.53896492332445 1556527421.7 +37.919331038611745 1556532721.4 +30.922059306610127 1556538021.1 +18.792871060532573 1556543320.8 +0.0 1556548620.5 +0.0 1556553920.2 +0.0 1556559219.9 +46.80121138440389 1556597807.4 +47.37579931158353 1556603128.5 +45.46003804888478 1556608449.6 +42.23793317098591 1556613770.8 +37.630198539316545 1556619091.9 +30.592147460474298 1556624413 +18.3442982452856 1556629734.2 +0.0 1556635055.3 +0.0 1556640376.4 +0.0 1556645697.6 +45.27766726565739 1556684093.5 +46.74117864169839 1556689435.9 +45.08339722938665 1556694778.3 +41.93917397375828 1556700120.7 +37.3447431114321 1556705463.1 +30.26223561433846 1556710805.5 +17.907624683081966 1556716147.9 +0.0 1556721490.3 +0.0 1556726832.7 +0.0 1556732175.1 +40.739592074625946 1556770380.9 +46.10060834529159 1556775744.4 +44.71270603641018 1556781107.9 +41.64409184794142 1556786471.4 +37.065237310069335 1556791834.9 +29.94195046613506 1556797198.4 +17.470951120878333 1556802561.9 +0.0 1556807925.5 +0.0 1556813289 +0.0 1556818652.5 +42.715386080030186 1556856669.7 +45.46003804888478 1556862054.1 +44.342014843433724 1556867438.6 +41.35863642005698 1556872823 +36.78573150870657 1556878207.5 +29.62166531793166 1556883591.9 +17.04390425660713 1556888976.4 +0.0 1556894360.8 +0.0 1556899745.3 +0.0 1556905129.7 +35.56094658718771 1556942959.9 +44.81579068106723 1556948365.1 +43.97727327697892 1556953770.3 +41.06950392076178 1556959175.5 +36.51217533386547 1556964580.7 +29.31100686766069 1556969985.9 +16.622807018857607 1556975391.1 +0.0 1556980796.3 +0.0 1556986201.5 +0.0 1556991606.7 +29.982729812975695 1557029251.6 +44.16927075813876 1557034677.4 +43.61025915541322 1557040103.1 +40.789998119399016 1557045528.9 +36.24229623043514 1557050954.7 +29.00034841738972 1557056380.5 +16.2113364790405 1557061806.2 +0.0 1557067232 +0.0 1557072657.8 +0.0 1557078083.6 +32.84744726724129 1557115544.8 +43.52502339032119 1557120991 +43.24919466036918 1557126437.1 +40.51049231803624 1557131883.3 +35.972417127004796 1557137329.4 +28.701589220162088 1557142775.5 +15.803543010634161 1557148221.7 +0.0 1557153667.8 +0.0 1557159114 +0.0 1557164560.1 +31.9644734449016 1557201839.6 +42.87255384087105 1557207305.9 +42.89407979184682 1557212772.2 +40.236936143195145 1557218238.5 +35.714437276617815 1557223704.9 +28.40055746782355 1557229171.2 +15.401699168749493 1557234637.5 +0.0 1557240103.8 +0.0 1557245570.1 +0.0 1557251036.4 +25.45428131987668 1557288136 +42.22235684653181 1557293622.3 +42.53896492332445 1557299108.6 +39.96110741324314 1557304594.8 +35.46013449764156 1557310081.1 +28.111424968528354 1557315567.3 +15.011754579908166 1557321053.6 +0.0 1557326539.9 +0.0 1557332026.1 +0.0 1557337512.4 +18.227909831285366 1557374434.1 +41.57215985219258 1557379940.1 +42.18157749969118 1557385446.1 +39.69717793633447 1557390952.1 +35.20583171866533 1557396458.1 +27.82229246923315 1557401964 +14.62916413388836 1557407470 +0.0 1557412976 +0.0 1557418482 +0.0 1557423988 +0.0 1557460733.9 +40.921962857853345 1557466259.4 +41.83608932910125 1557471784.9 +39.43324845942581 1557477310.3 +34.95747856621077 1557482835.8 +27.542786667870388 1557488361.3 +14.248846242979461 1557493886.8 +0.0 1557499412.3 +0.0 1557504937.8 +0.0 1557510463.2 +0.0 1557547035.4 +40.27771549003578 1557552580.2 +41.49060115851131 1557558124.9 +39.17526860903882 1557563669.6 +34.71280248516697 1557569214.4 +27.266957937918388 1557574759.1 +13.884104676524666 1557580303.9 +0.0 1557585848.6 +0.0 1557591393.3 +0.0 1557596938.1 +0.0 1557633338.8 +39.62751849569655 1557638902.5 +41.15106261444305 1557644466.3 +38.92464290147334 1557650030 +34.477753102055594 1557655593.7 +26.99340176307729 1557661157.5 +13.517090554958958 1557666721.2 +0.0 1557672284.9 +0.0 1557677848.7 +0.0 1557683412.4 +0.0 1557719644 +38.98694819928974 1557725226.5 +40.81520114178554 1557730808.9 +38.67628974901878 1557736391.4 +34.24497627405514 1557741973.9 +26.729472286168615 1557747556.4 +13.165652757847354 1557753138.8 +0.0 1557758721.3 +0.0 1557764303.8 +0.0 1557769886.3 +0.0 1557805951.1 +38.340428276361266 1557811552 +40.485289295649714 1557817153 +38.42793659656421 1557822753.9 +34.015876517465436 1557828354.9 +26.469219880670714 1557833955.8 +12.820164587257425 1557839556.8 +0.0 1557845157.7 +0.0 1557850758.6 +0.0 1557856359.6 +0.0 1557892260.2 +37.70580760647614 1557897879.3 +40.15537744951388 1557903498.4 +38.18921014204207 1557909117.5 +33.79272638739741 1557914736.7 +26.217189656805385 1557920355.8 +12.480626043189162 1557925974.9 +0.0 1557931594.1 +0.0 1557937213.2 +0.0 1557942832.3 +0.0 1557978571.2 +37.07486400800177 1557984208.3 +39.83509230131048 1557989845.3 +37.954160758930705 1557995482.3 +33.57325332874013 1558001119.3 +25.97251357576158 1558006756.3 +12.150714197053329 1558012393.3 +0.0 1558018030.4 +0.0 1558023667.4 +0.0 1558029304.4 +0.0 1558064884.4 +36.44619296463831 1558070539 +39.52075677962875 1558076193.6 +37.725061002341 1558081848.2 +33.36200245171544 1558087502.8 +25.727837494717775 1558093157.4 +11.830429048849927 1558098812 +0.0 1558104466.6 +0.0 1558110121.2 +0.0 1558115775.8 +0.0 1558151199.6 +35.82487606409637 1558156871.5 +39.20414870283611 1558162543.4 +37.49823380086221 1558168215.2 +33.152156090990594 1558173887.1 +25.495060666717315 1558179559 +11.516093527168199 1558185230.9 +0.0 1558190902.7 +0.0 1558196574.6 +0.0 1558202246.5 +0.0 1558237517 +35.20950879007609 1558243205.8 +38.899439879086806 1558248894.7 +37.27876074220493 1558254583.5 +32.94825935678743 1558260272.3 +25.265960910127614 1558265961.1 +11.211384703418897 1558271649.9 +0.0 1558277338.7 +0.0 1558283027.5 +0.0 1558288716.4 +0.0 1558323836.6 +34.60604076909917 1558329542 +38.600680681859174 1558335247.5 +37.065237310069335 1558340952.9 +32.750312249105924 1558346658.3 +25.042810780059582 1558352363.7 +10.910352951080357 1558358069.2 +0.0 1558363774.6 +0.0 1558369480 +0.0 1558375185.4 +0.0 1558410158.5 +34.006249819533004 1558415880.2 +38.30927562745307 1558421601.8 +36.8576635044554 1558427323.5 +32.5583147679461 1558433045.2 +24.82333772140231 1558438766.9 +10.62489752319592 1558444488.6 +0.0 1558450210.2 +0.0 1558455931.9 +0.0 1558461653.6 +0.0 1558496482.7 +33.416085567899266 1558502220.2 +38.02014312815787 1558507957.8 +36.65376677025224 1558513695.4 +32.369994358197026 1558519433 +24.615763915788378 1558525170.5 +10.341714650422393 1558530908.1 +0.0 1558536645.7 +0.0 1558542383.2 +0.0 1558548120.8 +0.0 1558582809.2 +32.83782056930887 1558588562.3 +37.7406373267951 1558594315.4 +36.45581966257074 1558600068.5 +32.1913006463804 1558605821.6 +24.41186718158521 1558611574.7 +10.071835546992055 1558617327.8 +0.0 1558623080.9 +0.0 1558628834 +0.0 1558634587 +0.0 1558669138.1 +32.269182268650894 1558674906.4 +37.467081151954005 1558680674.6 +36.261549626299995 1558686442.8 +32.01487948967466 1558692211.1 +24.21392007390371 1558697979.3 +9.807906070083389 1558703747.5 +0.0 1558709515.8 +0.0 1558715284 +0.0 1558721052.2 +0.0 1558755469.5 +31.713847737336128 1558761252.5 +37.197202048523664 1558767035.5 +36.07550177166184 1558772818.4 +31.842135404379697 1558778601.4 +24.021922592743884 1558784384.4 +9.553603291107153 1558790167.4 +0.0 1558795950.4 +0.0 1558801733.3 +0.0 1558807516.3 +0.0 1558841803.4 +31.166735387653933 1558847600.7 +36.93922219813667 1558853398 +35.89085843332353 1558859195.3 +31.679018017017164 1558864992.6 +23.837279254405576 1558870790 +9.30892721006335 1558876587.3 +0.0 1558882384.6 +0.0 1558888181.9 +0.0 1558893979.2 +0.0 1558928139.8 +30.63660387872569 1558933951 +36.68491941916044 1558939762.3 +35.71811434802858 1558945573.5 +31.521850256176297 1558951384.7 +23.65490847117818 1558957196 +9.070200755541217 1558963007.2 +0.0 1558968818.4 +0.0 1558974629.7 +0.0 1558980440.9 +0.0 1559014478.8 +30.118371622840794 1559020303.6 +36.44024333811664 1559026128.3 +35.55131988925527 1559031953 +31.368359566746193 1559037777.7 +23.488114012404882 1559043602.4 +8.841100998951514 1559049427.2 +0.0 1559055251.9 +0.0 1559061076.6 +0.0 1559066901.3 +0.0 1559100820.5 +29.609766064888323 1559106658.3 +36.20746651011617 1559112496 +35.38820250189273 1559118333.8 +31.22081850383776 1559124171.6 +23.31904699852068 1559130009.3 +8.623900495405152 1559135847.1 +0.0 1559141684.9 +0.0 1559147522.6 +0.0 1559153360.4 +0.0 1559187164.8 +29.122686457911623 1559193015.2 +35.97836675352647 1559198865.5 +35.231034741051865 1559204715.9 +31.079227067450994 1559210566.3 +23.161879237679813 1559216416.6 +8.410377063269554 1559222267 +0.0 1559228117.3 +0.0 1559233967.7 +0.0 1559239818.1 +0.0 1559273511.9 +28.645233548867353 1559279374.4 +35.755216623458445 1559285236.9 +35.07754405162176 1559291099.3 +30.941312702474992 1559296961.8 +23.01066110336061 1559302824.3 +8.212429955588053 1559308686.8 +0.0 1559314549.3 +0.0 1559320411.8 +0.0 1559326274.3 +0.0 1559359861.7 +28.18703403568795 1559365735.8 +35.5453702627336 1559371610 +34.935952615234996 1559377484.1 +30.815297590542325 1559383358.3 +22.863120040452177 1559389232.4 +8.018159919317315 1559395106.5 +0.0 1559400980.7 +0.0 1559406854.8 +0.0 1559412729 +0.0 1559446214.3 +27.746683402073565 1559452099.6 +35.337796457119666 1559457984.9 +34.798038250259 1559463870.2 +30.687009923498756 1559469755.5 +22.72520567547618 1559475640.8 +7.835789136089917 1559481526.2 +0.0 1559487411.5 +0.0 1559493296.8 +0.0 1559499182.1 +0.0 1559532569.8 +27.323313609213123 1559538465.7 +35.14352642084893 1559544361.7 +34.66607351180466 1559550257.7 +30.570621509498523 1559556153.7 +22.593240937021843 1559562049.6 +7.66304505079495 1559567945.6 +0.0 1559573841.6 +0.0 1559579737.6 +0.0 1559585633.6 +0.0 1559618928.1 +26.91779269591769 1559624834.2 +34.96115563762154 1559630740.4 +34.540058399872 1559636646.5 +30.460182722019965 1559642552.6 +22.470902896499943 1559648458.8 +7.499927663432414 1559654364.9 +0.0 1559660271.1 +0.0 1559666177.2 +0.0 1559672083.4 +0.0 1559705289.3 +26.531525178487122 1559711205.1 +34.7847344809158 1559717120.9 +34.42366998587177 1559723036.7 +30.357098077362924 1559728952.5 +22.35451448249971 1559734868.2 +7.342759902591548 1559740784 +0.0 1559746699.8 +0.0 1559752615.6 +0.0 1559758531.4 +0.0 1559791653.5 +26.164511056921413 1559797578.4 +34.61566746703159 1559803503.3 +34.310958643282305 1559809428.2 +30.256285987816792 1559815353.1 +22.24180313991024 1559821278 +7.201168466204784 1559827202.9 +0.0 1559833127.8 +0.0 1559839052.7 +0.0 1559844977.6 +0.0 1559878020.6 +25.81902288633148 1559883954.1 +34.45849970619073 1559889887.6 +34.21014655373617 1559895821.1 +30.165100596203093 1559901754.5 +22.14099105036411 1559907688 +7.063254101228781 1559913621.5 +0.0 1559919555 +0.0 1559925488.5 +0.0 1559931422 +0.0 1559964390.7 +25.48911104019565 1559970332.2 +34.316908269803974 1559976273.7 +34.11301153560081 1559982215.3 +30.077592276000157 1559988156.8 +22.04385603222874 1559994098.3 +6.937238989296119 1560000039.9 +0.0 1560005981.4 +0.0 1560011922.9 +0.0 1560017864.5 +0.0 1560050763.8 +25.184402216446347 1560056712.8 +34.178993904827976 1560062661.8 +34.021826143987106 1560068610.9 +29.99603358231889 1560074559.9 +21.952670640615043 1560080508.9 +6.820850575295886 1560086457.9 +0.0 1560092406.9 +0.0 1560098355.9 +0.0 1560104305 +0.0 1560137139.9 +24.89894678856191 1560143095.9 +34.04702916637364 1560149051.8 +33.93431782378416 1560155007.8 +29.92637414168096 1560160963.7 +21.871111946933773 1560166919.7 +6.714088859228085 1560172875.6 +0.0 1560178831.5 +0.0 1560184787.5 +0.0 1560190743.4 +0.0 1560223519.1 +24.640966938174916 1560229481.4 +33.93431782378416 1560235443.7 +33.85870875662457 1560241406 +29.854442145932126 1560247368.3 +21.79917995118494 1560253330.6 +6.611004214571046 1560259292.9 +0.0 1560265255.2 +0.0 1560271217.5 +0.0 1560277179.8 +0.0 1560309901.4 +24.40224048365278 1560315869.5 +33.82755610771637 1560321837.5 +33.78677676087574 1560327805.6 +29.794409403226627 1560333773.7 +21.729520510547008 1560339741.8 +6.525768449479018 1560345709.9 +0.0 1560351678 +0.0 1560357646 +0.0 1560363614.1 +0.0 1560396286.7 +24.18276742499551 1560402260 +33.732693644691906 1560408233.3 +33.726744018170244 1560414206.5 +29.741730803342655 1560420179.8 +21.673164839252273 1560426153.1 +6.447886827208512 1560432126.4 +0.0 1560438099.7 +0.0 1560444073 +0.0 1560450046.2 +0.0 1560482675.1 +23.99076994383568 1560488653 +33.64518532448897 1560494630.9 +33.670388346875505 1560500608.8 +29.69132475856959 1560506586.7 +21.616809167957538 1560512564.6 +6.378227386570585 1560518542.5 +0.0 1560524520.4 +0.0 1560530498.3 +0.0 1560536476.2 +0.0 1560569066.6 +23.81802585854071 1560575048.5 +33.569576257329366 1560581030.4 +33.619982302102436 1560587012.3 +29.650545411728956 1560592994.2 +21.572352749706145 1560598976.2 +6.315922088754178 1560604958.1 +0.0 1560610940 +0.0 1560616921.9 +0.0 1560622903.8 +0.0 1560655461.1 +23.670484795632277 1560661446.5 +33.507270959512965 1560667431.8 +33.5792029552618 1560673417.2 +29.61571569140999 1560679402.5 +21.53157340286551 1560685387.9 +6.265516043981114 1560691373.2 +0.0 1560697358.5 +0.0 1560703343.9 +0.0 1560709329.2 +0.0 1560741858.8 +23.54814675511038 1560747846.9 +33.45318784332913 1560753835.1 +33.548050306353595 1560759823.3 +29.584563042501788 1560765811.5 +21.500420753957307 1560771799.6 +6.22473669714048 1560777787.8 +0.0 1560783776 +0.0 1560789764.1 +0.0 1560795752.3 +0.0 1560828259.5 +23.451011736975012 1560834249.9 +33.4124084964885 1560840240.3 +33.519170212556304 1560846230.7 +29.559360020115253 1560852221.1 +21.475217731570773 1560858211.4 +6.195856603343185 1560864201.8 +0.0 1560870192.2 +0.0 1560876182.6 +0.0 1560882173 +0.0 1560914663.3 +23.375402669815415 1560920655.3 +33.37530622105863 1560926647.3 +33.497644261580525 1560932639.3 +29.543783695661155 1560938631.3 +21.459641407116674 1560944623.3 +6.174330652367414 1560950615.3 +0.0 1560956607.3 +0.0 1560962599.3 +0.0 1560968591.3 +0.0 1561001070.1 +23.32499662504235 1561007063.1 +33.35605282519377 1561013056.1 +33.4880175636481 1561019049.1 +29.534156997728722 1561025042.2 +21.450014709184238 1561031035.2 +6.164703954434982 1561037028.2 +0.0 1561043021.2 +0.0 1561049014.2 +0.0 1561055007.3 +0.0 1561087479.9 +23.303470674066578 1561093473.4 +33.34642612726134 1561099466.8 +33.48206793712643 1561105460.2 +29.534156997728722 1561111453.6 +21.450014709184238 1561117447 +6.164703954434982 1561123440.5 +0.0 1561129433.9 +0.0 1561135427.3 +0.0 1561141420.7 +0.0 1561173892.8 +23.303470674066578 1561179886 +33.3501031986721 1561185879.2 +33.48206793712643 1561191872.4 +29.534156997728722 1561197865.7 +21.453691780595 1561203858.9 +6.1683810258457425 1561209852.1 +0.0 1561215845.3 +0.0 1561221838.5 +0.0 1561227831.7 +0.0 1561260308.6 +23.32499662504235 1561266301 +33.36200245171544 1561272293.4 +33.49396719016977 1561278285.8 +29.543783695661155 1561284278.3 +21.465591033638344 1561290270.7 +6.189906976821515 1561296263.1 +0.0 1561302255.5 +0.0 1561308247.9 +0.0 1561314240.3 +0.0 1561346727.4 +23.375402669815415 1561352718.4 +33.3812558475803 1561358709.4 +33.513220586034635 1561364700.4 +29.559360020115253 1561370691.4 +21.484844429503205 1561376682.4 +6.215109999208049 1561382673.3 +0.0 1561388664.3 +0.0 1561394655.3 +0.0 1561400646.3 +0.0 1561433149.2 +23.451011736975012 1561439138.1 +33.416085567899266 1561445127.1 +33.534746537010406 1561451116.1 +29.584563042501788 1561457105 +21.510047451889736 1561463094 +6.255889346048683 1561469082.9 +0.0 1561475071.9 +0.0 1561481060.8 +0.0 1561487049.8 +0.0 1561519573.8 +23.54814675511038 1561525560.1 +33.462814541261565 1561531546.5 +33.5636266308077 1561537532.8 +29.609766064888323 1561543519.1 +21.547149727319614 1561549505.5 +6.300345764300077 1561555491.8 +0.0 1561561478.1 +0.0 1561567464.5 +0.0 1561573450.8 +0.0 1561606001.3 +23.670484795632277 1561611984.4 +33.519170212556304 1561617967.5 +33.60440597764833 1561623950.6 +29.646868340318193 1561629933.7 +21.587929074160247 1561635916.8 +6.356701435594813 1561641899.9 +0.0 1561647883 +0.0 1561653866.1 +0.0 1561659849.2 +0.0 1561692431.6 +23.81802585854071 1561698410.9 +33.58515258178347 1561704390.2 +33.65113495101064 1561710369.4 +29.687647687158826 1561716348.7 +21.63238549241164 1561722328 +6.42268380482198 1561728307.3 +0.0 1561734286.6 +0.0 1561740265.9 +0.0 1561746245.1 +0.0 1561778864.6 +23.98482031731401 1561784839.5 +33.66076164894307 1561790814.4 +33.70154099578371 1561796789.3 +29.738053731931892 1561802764.1 +21.688741163706375 1561808739 +6.494615800570815 1561814713.9 +0.0 1561820688.8 +0.0 1561826663.6 +0.0 1561832638.5 +0.0 1561865300.4 +24.179090353584748 1561871270.3 +33.751947040556765 1561877240.2 +33.7615737384892 1561883210.1 +29.788459776704958 1561889179.9 +21.748773906411873 1561895149.8 +6.5798515656628425 1561901119.7 +0.0 1561907089.6 +0.0 1561913059.5 +0.0 1561919029.3 +0.0 1561951738.9 +24.39629085713111 1561957703.2 +33.84908205869214 1561963667.5 +33.82755610771637 1561969631.8 +29.854442145932126 1561975596.1 +21.820705902160707 1561981560.4 +6.676986583798212 1561987524.7 +0.0 1561993489 +0.0 1561999453.3 +0.0 1562005417.6 +0.0 1562038180 +24.635017311653247 1562044138.1 +33.955843774759934 1562050096.3 +33.8994881034652 1562056054.4 +29.92042451515929 1562062012.6 +21.896314969320304 1562067970.7 +6.7800712284552525 1562073928.9 +0.0 1562079887.1 +0.0 1562085845.2 +0.0 1562091803.4 +0.0 1562124623.6 +24.89894678856191 1562130575 +34.078181815281845 1562136526.5 +33.98104679714647 1562142477.9 +29.992356510908127 1562148429.4 +21.983823289523244 1562154380.8 +6.890510015933813 1562160332.3 +0.0 1562166283.7 +0.0 1562172235.2 +0.0 1562178186.6 +0.0 1562211069.7 +25.184402216446347 1562217013.9 +34.204196927214504 1562222958.1 +34.066282562238506 1562228902.3 +30.073915204589397 1562234846.4 +22.069059054615273 1562240790.6 +7.012848056455716 1562246734.8 +0.0 1562252679 +0.0 1562258623.1 +0.0 1562264567.3 +0.0 1562297518.3 +25.48911104019565 1562303454.7 +34.345788363601265 1562309391 +34.16341758037387 1562315327.4 +30.15547389827066 1562321263.8 +22.172143699272315 1562327200.1 +7.144812794910049 1562333136.5 +0.0 1562339072.8 +0.0 1562345009.2 +0.0 1562350945.5 +0.0 1562383969.3 +25.81534581492072 1562389897.3 +34.493329426509696 1562395825.3 +34.26650222503091 1562401753.3 +30.250336361295123 1562407681.3 +22.272955788818443 1562413609.3 +7.286404231296814 1562419537.3 +0.0 1562425465.3 +0.0 1562431393.3 +0.0 1562437321.3 +0.0 1562470422.6 +26.16083398551065 1562476341.7 +34.65049718735056 1562482260.8 +34.3709913859878 1562488179.9 +30.34747137943049 1562494099 +22.385667131407914 1562500018.1 +7.433945294205247 1562505937.2 +0.0 1562511856.3 +0.0 1562517775.4 +0.0 1562523694.5 +0.0 1562556878.2 +26.525575551965453 1562562787.8 +34.81956420123477 1562568697.5 +34.48965235509893 1562574607.2 +30.448283468976623 1562580516.9 +22.502055545408144 1562586426.6 +7.597062681567783 1562592336.3 +0.0 1562598246 +0.0 1562604155.7 +0.0 1562610065.3 +0.0 1562643335.9 +26.91184306939602 1562649235.7 +34.998257913051404 1562655135.4 +34.60604076909917 1562661035.2 +30.560994811566093 1562666934.9 +22.628070657340803 1562672834.7 +7.763857140341079 1562678734.5 +0.0 1562684634.2 +0.0 1562690534 +0.0 1562696433.7 +0.0 1562729795.8 +27.31963653780236 1562735685.1 +35.18430576768956 1562741574.4 +34.7380055075535 1562747463.8 +30.677383225566327 1562753353.1 +22.760035395795143 1562759242.4 +7.936601225636046 1562765131.7 +0.0 1562771021.1 +0.0 1562776910.4 +0.0 1562782799.7 +0.0 1562816257.7 +27.740733775551895 1562822136.1 +35.38225287537106 1562828014.5 +34.86997024600783 1562833892.9 +30.799721266088223 1562839771.3 +22.897949760771144 1562845649.7 +8.124921635385114 1562851528.1 +0.0 1562857406.5 +0.0 1562863284.9 +0.0 1562869163.3 +0.0 1562902721.6 +28.183356964277188 1562908588.6 +35.58614960957424 1562914455.6 +35.01156168239459 1562920322.6 +30.92573637802089 1562926189.6 +23.04549082367958 1562932056.6 +8.319191671655854 1562937923.6 +0.0 1562943790.6 +0.0 1562949657.6 +0.0 1562955524.6 +0.0 1562989187.5 +28.639283922345683 1562995042.6 +35.79967304170984 1563000897.7 +35.15910274530303 1563006752.8 +31.059973671586132 1563012607.9 +23.196708957998776 1563018463.1 +8.523088405859024 1563024318.2 +0.0 1563030173.3 +0.0 1563036028.4 +0.0 1563041883.5 +0.0 1563075655.2 +29.11305975997919 1563081498 +36.022823171777866 1563087340.7 +35.31259343473313 1563093183.5 +31.201565107972893 1563099026.3 +23.35614927395055 1563104869.1 +8.736611837994625 1563110711.8 +0.0 1563116554.6 +0.0 1563122397.4 +0.0 1563128240.2 +0.0 1563162124.6 +29.60013936695589 1563167954.6 +36.25192292836756 1563173784.6 +35.469761195573994 1563179614.6 +31.34315654435966 1563185444.6 +23.516994106202176 1563191274.6 +8.953812341540988 1563197104.6 +0.0 1563202934.6 +0.0 1563208764.6 +0.0 1563214594.6 +0.0 1563248595.8 +30.108744924908358 1563254412.6 +36.4906493828897 1563260229.4 +35.636555654347305 1563266046.1 +31.496647233789766 1563271862.9 +23.689738191497142 1563277679.7 +9.182912098130688 1563283496.4 +0.0 1563289313.2 +0.0 1563295130 +0.0 1563300946.7 +0.0 1563335068.6 +30.626977180793258 1563340871.8 +36.735325463933506 1563346674.9 +35.80562266823151 1563352478 +31.65381499463063 1563358281.1 +23.868431903313777 1563364084.2 +9.421638552652821 1563369887.4 +0.0 1563375690.5 +0.0 1563381493.6 +0.0 1563387296.7 +0.0 1563421543 +31.154836134610594 1563427332.1 +36.98962824290973 1563433121.1 +35.982043824937236 1563438910.2 +31.816932381993166 1563444699.3 +24.05080268654118 1563450488.3 +9.669991705107385 1563456277.4 +0.0 1563462066.4 +0.0 1563467855.5 +0.0 1563473644.5 +0.0 1563508018.9 +31.698271412882026 1563513793.5 +37.2535577198184 1563519568.1 +36.16668716327554 1563525342.7 +31.98372684076646 1563531117.3 +24.239123096290243 1563536891.9 +9.924294484083621 1563542666.5 +0.0 1563548441 +0.0 1563554215.6 +0.0 1563559990.2 +0.0 1563594496.3 +32.257283015607555 1563600256 +37.51748719672707 1563606015.7 +36.35500757302461 1563611775.5 +32.15647092606143 1563617535.2 +24.437070203971743 1563623294.9 +10.188223960992287 1563629054.6 +0.0 1563634814.4 +0.0 1563640574.1 +0.0 1563646333.8 +0.0 1563680975 +32.822244244854765 1563686719.5 +37.791043371568165 1563692464 +36.54700505418443 1563698208.4 +32.335164637878066 1563703952.9 +24.640966938174916 1563709697.4 +10.458103064422623 1563715441.9 +0.0 1563721186.4 +0.0 1563726930.9 +0.0 1563732675.4 +0.0 1563767455 +33.400509243445164 1563773183.9 +38.07649879945261 1563778912.7 +36.75090178838761 1563784641.6 +32.51753542110547 1563790370.5 +24.848540743788845 1563796099.4 +10.737608865785388 1563801828.3 +0.0 1563807557.2 +0.0 1563813286 +0.0 1563819014.9 +0.0 1563853936.2 +33.98699642366814 1563859649.1 +38.361954227337044 1563865362.1 +36.952525967479865 1563871075 +32.709532902265295 1563876787.9 +25.062064175924444 1563882500.8 +11.02306429366983 1563888213.7 +0.0 1563893926.7 +0.0 1563899639.6 +0.0 1563905352.5 +0.0 1563940418.6 +34.5845148181234 1563946115.2 +38.65703635315391 1563951811.8 +37.16604939961547 1563957508.5 +32.90380293853604 1563963205.1 +25.28521430599248 1563968901.7 +11.321823490897456 1563974598.3 +0.0 1563980294.9 +0.0 1563985991.5 +0.0 1563991688.2 +0.0 1564026902.1 +35.19025539421123 1564032582.1 +38.95579555038154 1564038262.1 +37.37957283175106 1564043942.1 +33.10175004621753 1564049622 +25.510636991171417 1564055302 +11.622855243235998 1564060982 +0.0 1564066662 +0.0 1564072341.9 +0.0 1564078021.9 +0.0 1564113386.7 +35.80562266823151 1564119049.7 +39.260504374130846 1564124712.7 +37.599045890408334 1564130375.7 +33.309323851831465 1564136038.7 +25.74341381917188 1564141701.8 +11.937190764917728 1564147364.8 +0.0 1564153027.8 +0.0 1564158690.8 +0.0 1564164353.8 +0.0 1564199872.2 +36.42098994225177 1564205518 +39.57483989581257 1564211163.7 +37.82814564699804 1564216809.4 +33.519170212556304 1564222455.2 +25.982140273694014 1564228100.9 +12.251526286599459 1564233746.7 +0.0 1564239392.4 +0.0 1564245038.1 +0.0 1564250683.9 +0.0 1564286358.7 +37.04598391420447 1564291986.9 +39.891447972605214 1564297615 +38.05724540358774 1564303243.2 +33.732693644691906 1564308871.4 +26.226816354737817 1564314499.5 +12.581438132735292 1564320127.7 +0.0 1564325755.9 +0.0 1564331384 +0.0 1564337012.2 +0.0 1564372846 +37.68060458408961 1564378456.4 +40.21173312080861 1564384066.7 +38.29597185810987 1564389677 +33.949894148238265 1564395287.3 +26.47516950719239 1564400897.6 +12.913622533982034 1564406507.9 +0.0 1564412118.2 +0.0 1564417728.5 +0.0 1564423338.8 +0.0 1564459334.2 +38.31522525397474 1564464926.4 +40.53569534042277 1564470518.5 +38.53469831263201 1564476110.7 +34.178993904827976 1564481702.8 +26.729472286168622 1564487295 +13.259110704571965 1564492887.2 +0.0 1564498479.3 +0.0 1564504071.5 +0.0 1564509663.6 +0.0 1564545823.1 +38.94984592385987 1564551396.9 +40.871556813080275 1564556970.6 +38.7771018385649 1564562544.4 +34.40809366141767 1564568118.1 +26.98745213655562 1564573691.9 +13.604598875161903 1564579265.6 +0.0 1564584839.4 +0.0 1564590413.1 +0.0 1564595986.9 +0.0 1564632312.8 +39.596365846788345 1564637867.8 +41.20146865921611 1564643422.9 +39.02772754613038 1564648978 +34.64087048941813 1564654533.1 +27.253654168575196 1564660088.1 +13.963390815095023 1564665643.2 +0.0 1564671198.3 +0.0 1564676753.4 +0.0 1564682308.5 +0.0 1564718803.1 +40.24061321460591 1564724339.2 +41.543279758395286 1564729875.4 +39.28203032510662 1564735411.5 +34.8759198725295 1564740947.7 +27.527210343416286 1564746483.8 +14.324455310139061 1564752020 +0.0 1564757556.2 +0.0 1564763092.3 +0.0 1564768628.5 +0.0 1564805294 +40.88713313753438 1564810811 +41.88876792898522 1564816328 +39.54001017549361 1564821845 +35.118323398462394 1564827362 +27.800766518257383 1564832879 +14.695146503115524 1564838396 +0.0 1564843913 +0.0 1564849430 +0.0 1564854947 +21.814756275639038 1564891785.4 +41.53138050535195 1564897283 +42.23425609957515 1564902780.7 +39.800262580991514 1564908278.3 +35.36894910602786 1564913775.9 +28.08622194614182 1564919273.5 +15.077736949135332 1564924771.1 +0.0 1564930268.7 +0.0 1564935766.3 +0.0 1564941264 +21.616809167957534 1564978277.4 +42.18157749969118 1564983755.4 +42.58342134157585 1564989233.4 +40.06786912931094 1564994711.4 +35.61730225848245 1565000189.4 +28.37167737402626 1565005667.5 +15.458054840044227 1565011145.5 +0.0 1565016623.5 +0.0 1565022101.5 +0.0 1565027579.5 +27.16614584837225 1565064769.9 +42.82809742261965 1565070228.1 +42.94080876520913 1565075686.3 +40.337748232741276 1565081144.5 +35.87528210886943 1565086602.6 +28.664486944732214 1565092060.8 +15.853949055407227 1565097519 +0.0 1565102977.2 +0.0 1565108435.4 +0.0 1565113893.6 +34.540058399872 1565151262.8 +43.47829441695889 1565156701 +43.29592363373148 1565162139.1 +40.61130440758238 1565167577.3 +36.135534514367336 1565173015.5 +28.959569070549087 1565178453.6 +16.25211582588114 1565183891.8 +0.0 1565189330 +0.0 1565194768.2 +0.0 1565200206.3 +35.80929973964227 1565237756.1 +44.124814339887365 1565243174.1 +43.656988128775524 1565248592 +40.88713313753438 1565254010 +36.399463991276 1565259427.9 +29.26060082288762 1565264845.9 +16.65763673917657 1565270263.8 +0.0 1565275681.8 +0.0 1565281099.7 +0.0 1565286517.7 +37.49228417434054 1565324249.8 +44.76906170770493 1565329647.3 +44.01805262381956 1565335044.9 +41.16663893889715 1565340442.4 +36.669343094706335 1565345840 +29.568986718047686 1565351237.6 +17.069107278993666 1565356635.1 +0.0 1565362032.7 +0.0 1565367430.2 +0.0 1565372827.8 +34.51485537748547 1565410743.8 +45.409632004111714 1565416120.7 +44.38279419027435 1565421497.7 +41.45577143819235 1565426874.7 +36.94289926954743 1565432251.7 +29.87964516831866 1565437628.7 +17.486527445332435 1565443005.6 +0.0 1565448382.6 +0.0 1565453759.6 +0.0 1565459136.6 +42.960062161073985 1565497238.1 +46.04425267399685 1565502594.3 +44.75348538325082 1565507950.5 +41.74122686607679 1565513306.8 +37.218727999499436 1565518663 +30.193980690000387 1565524019.2 +17.913574309603636 1565529375.5 +0.0 1565534731.7 +0.0 1565540087.9 +0.0 1565545444.2 +45.190158945454456 1565583732.6 +46.67887334388198 1565589067.9 +45.12417657622728 1565594403.3 +42.03403643678274 1565599738.6 +37.49823380086221 1565605073.9 +30.51426583820379 1565610409.2 +18.3442982452856 1565615744.6 +0.0 1565621079.9 +0.0 1565626415.2 +0.0 1565631750.6 +45.196108571976126 1565670227.4 +47.309816942356356 1565675541.7 +45.49486776920374 1565680855.9 +42.32544149118885 1565686170.2 +37.78141667363573 1565691484.5 +30.840500612928864 1565696798.7 +18.780971807489234 1565702113 +0.0 1565707427.2 +0.0 1565712741.5 +0.0 1565718055.8 +47.843625522695355 1565756722.4 +47.94076054083072 1565762015.4 +45.87150858870188 1565767308.5 +42.62420068841648 1565772601.5 +38.07054917293094 1565777894.6 +31.170412459064693 1565783187.7 +19.223594996214533 1565788480.7 +0.0 1565793773.8 +0.0 1565799066.8 +0.0 1565804359.9 +49.140342439963064 1565843217.6 +48.55980488626175 1565848489.3 +46.24219978167835 1565853761 +42.925232440755025 1565859032.7 +38.361954227337044 1565864304.4 +31.506273931722195 1565869576.1 +19.67584488287227 1565874847.8 +0.0 1565880119.5 +0.0 1565885391.2 +0.0 1565890662.9 +50.409583779733325 1565929712.9 +49.17884923169279 1565934963.1 +46.61884060117649 1565940213.3 +43.22994126450432 1565945463.5 +38.65703635315391 1565950713.8 +31.842135404379697 1565955964 +20.13404439605167 1565961214.2 +0.0 1565966464.4 +0.0 1565971714.6 +0.0 1565976964.9 +51.65957172363873 1566016208.4 +49.79053943430229 1566021437 +46.99915849208539 1566026665.6 +43.53465008825362 1566031894.2 +38.95579555038154 1566037122.8 +32.187623574969635 1566042351.4 +20.595920980641836 1566047580 +0.0 1566052808.6 +0.0 1566058037.2 +0.0 1566063265.8 +53.62573903111053 1566102703.9 +50.399957081800885 1566107910.8 +47.3817489381052 1566113117.7 +43.8453085385246 1566118324.5 +39.25455474760918 1566123531.4 +32.533111745559566 1566128738.3 +21.057797565232004 1566133945.2 +0.0 1566139152 +0.0 1566144358.9 +0.0 1566149565.8 +54.09356524222237 1566189199.6 +50.99974803136706 1566194384.6 +47.76206682901409 1566199569.7 +44.153694433684656 1566204754.7 +39.561536126469385 1566209939.7 +32.88227698756027 1566215124.7 +21.53157340286551 1566220309.7 +0.0 1566225494.8 +0.0 1566230679.8 +0.0 1566235864.8 +55.28352044342227 1566275695.4 +51.59358935441156 1566280858.4 +48.14238471992298 1566286021.5 +44.470302510477296 1566291184.5 +39.86992202162945 1566296347.6 +33.23371478467187 1566301510.7 +22.012703383320538 1566306673.7 +0.0 1566311836.8 +0.0 1566316999.8 +0.0 1566322162.9 +56.451949693646405 1566362191.2 +52.17780397952363 1566367332.2 +48.524975165942784 1566372473.2 +44.788315103569786 1566377614.2 +40.18058047190041 1566382755.2 +33.5947792797159 1566387896.2 +22.496105918886474 1566393037.1 +0.35143779711160467 1566398178.1 +0.0 1566403319.1 +0.0 1566408460.1 +57.60112554800568 1566448687 +52.758341533224936 1566453805.9 +48.9052930568517 1566458924.7 +45.10492318036241 1566464043.5 +40.49491599358214 1566469162.4 +33.955843774759934 1566474281.2 +22.983185525863174 1566479400 +1.0772438586104358 1566484518.8 +0.0 1566489637.7 +0.0 1566494756.5 +58.732452522799946 1566535182.9 +53.336606531815335 1566540279.5 +49.29156057428226 1566545376.1 +45.42888539997658 1566550472.7 +40.81520114178554 1566555569.2 +34.32058534121474 1566560665.8 +23.476214759361543 1566565762.4 +1.8186262445633683 1566570858.9 +0.0 1566575955.5 +0.0 1566581052.1 +59.84679865684025 1566621678.9 +53.90156776106254 1566626753.1 +49.67187846519115 1566631827.3 +45.74917054817999 1566636901.5 +41.13548628998895 1566641975.8 +34.691276534191196 1566647050 +23.97519361938158 1566652124.2 +2.5719078835596423 1566657198.4 +0.0 1566662272.6 +0.0 1566667346.9 +60.94329591131554 1566708174.8 +54.46057936378807 1566713226.6 +50.05814598262172 1566718278.4 +46.075405322905056 1566723330.2 +41.45577143819235 1566728382 +35.06424028227857 1566733433.7 +24.483799177334046 1566738485.5 +3.338493291899107 1566743537.3 +0.0 1566748589.1 +0.0 1566753640.9 +62.02648939644766 1566794670.8 +55.013641339991935 1566799700 +50.44073642864152 1566804729.3 +46.40531716904089 1566809758.6 +41.78568328432819 1566814787.8 +35.4386085466658 1566819817.1 +24.992404735286517 1566824846.4 +4.111028326760242 1566829875.7 +0.0 1566834904.9 +0.0 1566839934.2 +63.09410655712566 1566881166.7 +55.557076618263366 1566886173.4 +50.8270039460721 1566891180.1 +46.735229015176714 1566896186.7 +42.111918059053245 1566901193.4 +35.82119899268561 1566906200.1 +25.504687364649747 1566911206.8 +4.899139686075479 1566916213.5 +0.0 1566921220.2 +0.0 1566926226.8 +64.14019776682788 1566967662.6 +56.09683482512404 1566972646.7 +51.207321836980995 1566977630.7 +47.06514086131255 1566982614.7 +42.44182990518908 1566987598.7 +36.2015168835945 1566992582.7 +26.022919620534648 1566997566.8 +5.6909281168014765 1567002550.8 +0.0 1567007534.8 +0.0 1567012518.8 +65.17666227859769 1567054158.6 +56.628370850352134 1567059119.9 +51.59358935441156 1567064081.1 +47.3973252625593 1567069042.4 +42.77769137784658 1567074003.7 +36.58778440102507 1567078965 +26.541151876419555 1567083926.3 +6.500565427092485 1567088887.6 +0.0 1567093848.9 +0.0 1567098810.1 +66.18792376798096 1567140654.5 +57.15255273275871 1567145593 +51.97390724532046 1567150531.5 +47.730914180105884 1567155470 +43.11355285050409 1567160408.5 +36.980001544977306 1567165346.9 +27.069010830236888 1567170285.4 +7.317556880205016 1567175223.9 +0.0 1567180162.4 +0.0 1567185100.9 +67.17993186149937 1567227150.4 +57.66710791723285 1567232066 +52.36017476275103 1567236981.7 +48.06677565276338 1567241897.3 +43.453091394572354 1567246812.9 +37.36994613381863 1567251728.6 +27.599142339165123 1567256644.2 +8.140497959839216 1567261559.8 +0.0 1567266475.5 +0.0 1567271391.1 +68.13851475099867 1567313646.3 +58.17939054659608 1567318539 +52.742765208770834 1567323431.7 +48.40858675194256 1567328324.4 +43.792629938640616 1567333217.1 +37.76584034918163 1567338109.9 +28.132950919504122 1567343002.6 +8.975338292516762 1567347895.3 +0.0 1567352788 +0.0 1567357680.7 +69.0645404752899 1567400142.1 +58.67836940661611 1567405011.9 +53.12308309967973 1567409881.6 +48.742175669489164 1567414751.4 +44.138118109230554 1567419621.1 +38.164007119655544 1567424490.9 +28.670436571253887 1567429360.6 +9.823482394537491 1567434230.4 +0.0 1567439100.1 +0.0 1567443969.9 +69.9475142976296 1567486638 +59.17139864011449 1567491484.7 +53.503400990588624 1567496331.5 +49.083986768668325 1567501178.2 +44.483606279820485 1567506024.9 +38.5635784064293 1567510871.6 +29.213871849525322 1567515718.4 +10.671626496558224 1567520565.1 +0.0 1567525411.8 +0.0 1567530258.6 +70.79198132823956 1567573133.8 +59.65847824709118 1567577957.5 +53.885991436608435 1567582781.1 +49.42352531273659 1567587604.8 +44.82909445041042 1567592428.5 +38.96542224831397 1567597252.1 +29.757307127796757 1567602075.8 +11.535346923033059 1567606899.5 +0.0 1567611723.1 +0.0 1567616546.8 +71.59566901200891 1567659629.6 +60.135931156135456 1567664430.2 +54.260359700995664 1567669230.7 +49.76901348332652 1567674031.3 +45.18053224752202 1567678831.8 +39.37321571672031 1567683632.4 +30.306692032589858 1567688432.9 +12.405016976029565 1567693233.5 +0.0 1567698034 +0.0 1567702834.6 +72.35262772241593 1567746125.5 +60.607434438658046 1567750902.9 +54.64295014701547 1567755680.3 +50.11082458250569 1567760457.6 +45.53197004463362 1567765235 +39.77873663001574 1567770012.4 +30.856076937382962 1567774789.8 +13.284313726958496 1567779567.2 +0.0 1567784344.6 +0.0 1567789122 +73.06285745946067 1567832621.3 +61.07526064976988 1567837375.5 +55.019590966513604 1567842129.7 +50.456312753095624 1567846883.9 +45.88708491315598 1567851638.1 +40.19020716983284 1567856392.3 +31.40913891358683 1567861146.5 +14.167287549298193 1567865900.7 +0.0 1567870654.9 +0.0 1567875409.1 +73.73458040477568 1567919117.1 +61.53346016294928 1567923848.1 +55.39395923090083 1567928579 +50.80180092368556 1567933310 +46.24219978167835 1567938041 +40.60167770964995 1567942771.9 +31.968150516312363 1567947502.9 +15.056210998159559 1567952233.9 +0.0 1567956964.8 +0.0 1567961695.8 +74.35957437672838 1568005612.9 +61.97976042308536 1568010320.6 +55.770600050398976 1568015028.3 +51.14728909427549 1568019736 +46.597314650200715 1568024443.7 +41.01909787598872 1568029151.4 +32.5271621190379 1568033859.1 +15.957033700064267 1568038566.8 +0.0 1568043274.5 +0.0 1568047982.2 +74.94973862836211 1568092108.7 +62.42833323833233 1568096793.1 +56.141291243375434 1568101477.5 +51.49277726486543 1568106161.9 +46.95470207383399 1568110846.3 +41.436518042327485 1568115530.7 +33.0921233482851 1568120215.1 +16.85558384685807 1568124899.6 +0.0 1568129584 +0.0 1568134268.4 +75.50280060456599 1568178604.6 +62.86500680053596 1568183265.7 +56.51198243635191 1568187926.7 +51.84194250686613 1568192587.8 +47.315766568878026 1568197248.9 +41.85761528007702 1568201910 +33.6548120224214 1568206571 +17.766033246695198 1568211232.1 +0.0 1568215893.2 +0.0 1568220554.3 +76.02103286045089 1568265100.5 +63.292053664807156 1568269738.2 +56.88267362932837 1568274375.9 +52.187430677456064 1568279013.6 +47.67683106392206 1568283651.3 +42.275035446415785 1568288289.1 +34.219773251668606 1568292926.8 +18.6801597179431 1568297564.5 +0.0 1568302202.2 +0.0 1568306839.9 +76.51406209394925 1568351596.4 +63.71315090255669 1568356210.7 +57.25563737741575 1568360825.1 +52.538868474567664 1568365439.4 +48.04157263037687 1568370053.7 +42.699809755576084 1568374668.1 +34.78841155232656 1568379282.4 +19.600235815712672 1568383896.7 +0.0 1568388511.1 +0.0 1568393125.4 +76.96998905201775 1568438092.4 +64.13424814030621 1568442683.3 +57.62037894387054 1568447274.2 +52.884356645157595 1568451865.2 +48.40263712542089 1568456456.1 +43.12317954843652 1568461047 +35.3629994795062 1568465637.9 +20.52031191348224 1568470228.9 +0.0 1568474819.8 +0.0 1568479410.7 +77.40298554281063 1568524588.4 +64.54204160871255 1568529155.9 +57.98739306543625 1568533723.4 +53.235794442269196 1568538290.9 +48.76737869187569 1568542858.4 +43.55022641270772 1568547425.9 +35.931637780164166 1568551993.4 +21.44406508266257 1568556560.9 +0.0 1568561128.4 +0.0 1568565695.9 +77.8144560826277 1568611084.5 +64.94756252200798 1568615628.5 +58.35213463189104 1568620172.6 +53.5849596842699 1568624716.6 +49.134392813441394 1568629260.7 +43.97727327697892 1568633804.8 +36.5062257073438 1568638348.8 +22.373767878364575 1568642892.9 +0.0 1568647436.9 +0.0 1568651981 +78.20072360005828 1568697580.6 +65.34345673737099 1568702101.2 +58.71914875345675 1568706621.8 +53.936397481381505 1568711142.4 +49.499134379896184 1568715663 +44.40204758613922 1568720183.6 +37.08081363452344 1568724704.2 +23.303470674066578 1568729224.8 +0.0 1568733745.4 +0.0 1568738266 +78.56178809510233 1568784076.9 +65.73567388132324 1568788574 +59.07794069338988 1568793071.1 +54.287835278493105 1568797568.2 +49.86614850146189 1568802065.3 +44.83504407693209 1568806562.5 +37.65540156170307 1568811059.6 +24.235446024879483 1568815556.7 +0.0 1568820053.8 +0.0 1568824550.9 +78.91322589221392 1568870573.2 +66.1219413987538 1568875046.8 +59.43532811702315 1568879520.5 +54.633323449083036 1568883994.1 +50.23683969443835 1568888467.7 +45.26209094120328 1568892941.3 +38.233666560293464 1568897415 +25.168825891992245 1568901888.6 +0.0 1568906362.2 +0.0 1568910835.8 +79.23718811182809 1568957069.7 +66.49858221825193 1568961519.8 +59.79639261206719 1568965969.9 +54.98248869108374 1568970420 +50.607530887414825 1568974870.1 +45.69281487688525 1568979320.3 +38.808254487473114 1568983770.4 +26.104478314215914 1568988220.5 +0.0 1568992670.6 +0.0 1568997120.7 +79.55152363350982 1569043566.2 +66.87295048263915 1569047992.8 +60.15150748058955 1569052419.4 +55.33392648819534 1569056846 +50.97822208039129 1569061272.6 +46.12581136767812 1569065699.3 +39.386519486063506 1569070125.9 +27.034181109917924 1569074552.5 +0.0 1569078979.1 +0.0 1569083405.7 +79.84660575932669 1569130062.9 +67.23996460420486 1569134466 +60.50067272259025 1569138869.1 +55.685364285306946 1569143272.2 +51.34891327336776 1569147675.2 +46.56248492988175 1569152078.3 +39.96705703976481 1569156481.4 +27.96983353214159 1569160884.5 +0.0 1569165287.6 +0.0 1569169690.7 +80.13206118721112 1569216559.7 +67.6010290992489 1569220939.3 +60.852110519701846 1569225318.8 +56.03085245589688 1569229698.4 +51.71960446634422 1569234078 +46.99548142067463 1569238457.5 +40.541644966944446 1569242837.1 +28.90321339925435 1569247216.6 +0.0 1569251596.2 +0.0 1569255975.7 +80.40194029064146 1569303056.7 +67.95614396777125 1569307412.7 +61.203548316813446 1569311768.8 +56.380017697897564 1569316124.8 +52.092568214431594 1569320480.8 +47.43215498287826 1569324836.8 +41.119909965534845 1569329192.9 +29.835188750067264 1569333548.9 +1.8245758710850393 1569337904.9 +0.0 1569342260.9 +80.65992014102846 1569389553.9 +68.30758176488285 1569393886.3 +61.55271355881414 1569398218.8 +56.73145549500917 1569402551.3 +52.46325940740807 1569406883.8 +47.86287891856021 1569411216.3 +41.70044751923615 1569415548.8 +30.758941919247594 1569419881.3 +3.8470988498515775 1569424213.8 +0.0 1569428546.3 +80.90827329348303 1569476051.2 +68.6530699354728 1569480360.1 +61.898201729404086 1569484669.1 +57.07694366559911 1569488978 +52.837627671795296 1569493287 +48.30182503587476 1569497595.9 +42.275035446415785 1569501904.9 +31.684967643538833 1569506213.8 +5.869621828618113 1569510522.8 +0.0 1569514831.7 +81.1433226765944 1569562548.7 +68.9889314081303 1569566834.1 +62.24001282858326 1569571119.5 +57.42243183618905 1569575404.9 +53.21059141988267 1569579690.3 +48.73849859807839 1569583975.8 +42.853300445006184 1569588261.2 +32.60872081271917 1569592546.6 +7.882518109452221 1569596832 +0.0 1569601117.4 +81.37242243318408 1569649046.4 +69.3225203256769 1569653308.2 +62.579551372651515 1569657570.1 +57.77386963330065 1569661832 +53.581282612859134 1569666093.9 +49.175172160282024 1569670355.8 +43.42788837218582 1569674617.7 +33.52879691048874 1569678879.6 +9.883515137242986 1569683141.4 +0.0 1569687403.3 +81.58962293673046 1569735544.3 +69.65470472692363 1569739782.6 +62.92136247183069 1569744021 +58.11935780389058 1569748259.3 +53.95565087724636 1569752497.7 +49.605896095963985 1569756736 +44.002476299365455 1569760974.4 +34.442923381736634 1569765212.8 +11.865258769168891 1569769451.1 +0.0 1569773689.5 +81.7994692974553 1569822042.4 +69.97866694653779 1569826257.2 +63.25495138937728 1569830472 +58.46484597448051 1569834686.9 +54.32861462533374 1569838901.7 +50.04484221327853 1569843116.6 +44.5770642265451 1569847331.4 +35.35337278157376 1569851546.2 +13.821799378708258 1569855761.1 +0.0 1569859975.9 +82.00109347654755 1569908540.7 +70.2989520947412 1569912732 +63.59081286203478 1569916923.4 +58.80438451854878 1569921114.7 +54.6993058183102 1569925306 +50.48151577548216 1569929497.3 +45.14937959861381 1569933688.7 +36.25787255488923 1569937880 +15.753136965861096 1569942071.3 +0.0 1569946262.6 +82.1953635128183 1569995039.3 +70.60961054501216 1569999207.1 +63.92072470817062 1570003374.9 +59.14987268913872 1570007542.7 +55.07367408269743 1570011710.6 +50.91818933768579 1570015878.4 +45.720290454382685 1570020046.2 +37.15642270168303 1570024214.1 +17.649644832694968 1570028381.9 +0.0 1570032549.7 +82.38368392256736 1570081538.1 +70.91799644017223 1570085682.4 +64.25290910941736 1570089826.8 +59.49536085972865 1570093971.1 +55.444365275673896 1570098115.4 +51.34891327336776 1570102259.8 +46.28892875504065 1570106404.1 +38.045346150544404 1570110548.5 +19.512727495509736 1570114692.8 +0.0 1570118837.1 +82.5601050792731 1570168037.2 +71.22270526392154 1570172158 +64.58282095555319 1570176278.9 +59.83489940379691 1570180399.8 +55.817329023761275 1570184520.6 +51.78190976416063 1570188641.5 +46.851617429176954 1570192762.4 +38.93426959940577 1570196883.2 +21.346930064527204 1570201004.1 +0.0 1570205125 +82.73879879108972 1570254536.5 +71.52373701626006 1570258633.9 +64.9031061037566 1570262731.3 +60.176710502976086 1570266828.7 +56.18802021673774 1570270926.1 +52.21858332636427 1570275023.6 +47.41657865842416 1570279121 +39.81356635033471 1570283218.4 +23.146302913225707 1570287315.8 +0.0 1570291413.2 +82.90559324986303 1570341036.1 +71.81881914207693 1570345110.1 +65.22706832337076 1570349184 +60.51257197563359 1570353258 +56.558711409714206 1570357332 +52.651579817157135 1570361406 +47.98153988767137 1570365480 +40.68323640333121 1570369554 +24.910846041605247 1570373627.9 +0.0 1570377701.9 +83.06871063722556 1570427536 +72.10795164137214 1570431586.5 +65.54735347157416 1570435637.1 +60.852110519701846 1570439687.7 +56.923452976169 1570443738.2 +53.082303752839096 1570447788.8 +48.540551490396886 1570451839.4 +41.54695682980604 1570455890 +26.638286894554923 1570459940.5 +0.0 1570463991.1 +83.22587839806643 1570514036.1 +72.39340706925658 1570518063.3 +65.8616889932559 1570522090.5 +61.18797199235936 1570526117.7 +57.294144169145476 1570530144.9 +53.51530024363196 1570534172.1 +49.09956309312243 1570538199.2 +42.401050558348444 1570542226.4 +28.330898027185622 1570546253.6 +0.0 1570550280.8 +83.37936908749653 1570600536.6 +72.67291287061934 1570604540.4 +66.17829707004853 1570608544.2 +61.52383346501685 1570612548.1 +57.66115829071118 1570616551.9 +53.942347107903174 1570620555.7 +49.65262506932629 1570624559.5 +43.24919466036918 1570628563.4 +29.992356510908127 1570632567.2 +0.0 1570636571 +83.53058722181574 1570687037.3 +72.95241867198212 1570691017.8 +66.49263259173026 1570694998.3 +61.857422382563456 1570698978.8 +58.02589985716598 1570702959.3 +54.367121417063466 1570706939.8 +50.20200997411939 1570710920.3 +44.08403499304673 1570714900.8 +31.618985274311665 1570718881.3 +0.0 1570722861.8 +83.6744512133134 1570773538.3 +73.2259748468232 1570777495.6 +66.79734141547958 1570781452.8 +62.18960678381019 1570785410 +58.39291397873168 1570789367.2 +54.79416828133466 1570793324.4 +50.74912232380159 1570797281.6 +44.9106531440917 1570801238.8 +33.20851176228533 1570805196 +0.0 1570809153.3 +83.81604264970017 1570860039.7 +73.48990432373188 1570863973.6 +67.10799986575053 1570867907.6 +62.51951862994602 1570871841.6 +58.75765554518648 1570875775.5 +55.22121514560587 1570879709.5 +51.29483015718393 1570883643.4 +45.729917152315124 1570887577.4 +34.7691581564617 1570891511.3 +0.0 1570895445.3 +83.9480073881545 1570946541.3 +73.75383380064055 1570950452.1 +67.41270868949984 1570954362.8 +62.84943047608186 1570958273.6 +59.118720040230514 1570962184.3 +55.64458493846631 1570966095 +51.83826543545536 1570970005.8 +46.53728190749522 1570973916.5 +36.29865190172987 1570977827.3 +0.0 1570981738 +84.07997212660884 1571033043.3 +74.01408620613844 1571036930.8 +67.71146788672746 1571040818.4 +63.17566525080693 1571044706 +59.47978453527454 1571048593.6 +56.065682176215844 1571052481.1 +52.375751087205124 1571056368.7 +47.33501996474289 1571060256.3 +37.791043371568165 1571064143.9 +0.0 1571068031.4 +84.2082597936524 1571119545.5 +74.27206605652545 1571123410 +68.00655001254432 1571127274.4 +63.49962747042109 1571131138.9 +59.84084903031858 1571135003.3 +56.486779413965365 1571138867.8 +52.90955966754413 1571142732.2 +48.12313132405812 1571146596.7 +39.25455474760918 1571150461.1 +0.0 1571154325.6 +84.33427490558508 1571206048.1 +74.52269176409091 1571209889.5 +68.30758176488285 1571213730.8 +63.825862245146155 1571217572.2 +60.195963898840944 1571221413.6 +56.904199580304144 1571225255 +53.43741862136146 1571229096.4 +48.89934343033003 1571232937.7 +40.68323640333121 1571236779.1 +0.0 1571240620.5 +84.45661294610697 1571292551 +74.77104491654548 1571296369.3 +68.59671426417808 1571300187.7 +64.14614739334955 1571304006 +60.557028393884984 1571307824.4 +57.31567012012125 1571311642.8 +53.96160050376804 1571315461.1 +49.66225176725872 1571319279.5 +42.08076541014505 1571323097.8 +0.0 1571326916.2 +84.5730013601072 1571379054.1 +75.01572099758928 1571382849.5 +68.88584676347327 1571386644.9 +64.46415998644206 1571390440.3 +60.90846619099658 1571394235.7 +57.72714065993834 1571398031.1 +54.479832759652936 1571401826.5 +50.41921047766575 1571405621.9 +43.44346469663992 1571409417.3 +0.0 1571413212.7 +84.68571270269666 1571465557.6 +75.2544474521114 1571469330.1 +69.17497926276846 1571473102.6 +64.7807680632347 1571476875.1 +61.26358105951894 1571480647.6 +58.138611199755445 1571484420.1 +54.99806501553783 1571488192.6 +51.16059286361869 1571491965.1 +44.77501133422659 1571495737.6 +0.0 1571499510.1 +84.79615149017523 1571552061.3 +75.48722428011189 1571555811 +69.45448506413123 1571559560.7 +65.09510358491642 1571563310.4 +61.61501885663054 1571567060 +58.55008173957254 1571570809.7 +55.506670573490304 1571574559.4 +51.892348551639195 1571578309.1 +46.075405322905056 1571582058.7 +0.0 1571585808.4 +84.90886283276471 1571638565.4 +75.72000110811234 1571642292.3 +69.73994049201566 1571646019.2 +65.4057620351874 1571649746.1 +61.960507027220494 1571653473 +58.95192558145722 1571657200 +56.015276131442775 1571660926.9 +52.6108004703165 1571664653.8 +47.34096959126456 1571668380.7 +0.0 1571672107.6 +85.0156245488325 1571725069.7 +75.94910086470205 1571728773.9 +70.01349666685677 1571732478.2 +65.71642048545837 1571736182.4 +62.305995197810425 1571739886.6 +59.35376942334188 1571743590.9 +56.51793206287358 1571747295.1 +53.31735313595047 1571750999.4 +48.569431584194184 1571754703.6 +1.32191993965424 1571758407.8 +85.11643663837864 1571811574.2 +76.17225099477008 1571815255.9 +70.28932539680876 1571818937.5 +66.02480638061844 1571822619.2 +62.651483368400356 1571826300.8 +59.75561326522655 1571829982.5 +57.010961296371946 1571833664.1 +54.012006548541095 1571837345.8 +49.76901348332652 1571841027.4 +0.0 1571844709 +85.21952128303568 1571898079.1 +76.39767367994902 1571901738.2 +70.56288157164987 1571905397.3 +66.32583813295696 1571909056.5 +62.991021912468625 1571912715.6 +60.15150748058955 1571916374.7 +57.50399052987031 1571920033.9 +54.6993058183102 1571923693 +50.93376566213989 1571927352.2 +0.0 1571931011.3 +85.31438374606013 1571984584.1 +76.61119711208462 1571988220.8 +70.82681104855853 1571991857.6 +66.63054695670627 1571995494.3 +63.32688338512612 1571999131 +60.54145206943088 1572002767.7 +57.98739306543625 1572006404.5 +55.3687562085143 1572010041.2 +52.0614155655234 1572013677.9 +28.142577617436558 1572017314.6 +85.4115187641955 1572071089.4 +76.82472054422021 1572074703.8 +71.09669015198887 1572078318.2 +66.9293061539339 1572081932.6 +63.666421929194385 1572085547 +60.92771958686144 1572089161.4 +58.468523045891274 1572092775.8 +56.02490282937521 1572096390.2 +53.15791281999869 1572100004.7 +42.64572663939225 1572103619.1 +85.50270415580921 1572157594.9 +77.03229434983415 1572161187.1 +71.35694255748678 1572164779.3 +67.22438827975076 1572168371.5 +63.99860633044112 1572171963.7 +61.31398710429201 1572175555.9 +58.942298883524785 1572179148.1 +56.67509982371444 1572182740.3 +54.22185290926594 1572186332.5 +49.20632480919022 1572189924.6 +85.5938895474229 1572244100.6 +77.2398681554481 1572247670.7 +71.61492240787375 1572251240.8 +67.51947040556763 1572254810.9 +64.32851817657695 1572258381 +61.696577550311815 1572261951 +59.41012509463662 1572265521.1 +57.30972049359958 1572269091.2 +55.25236779451407 1572272661.3 +53.15423574858793 1572276231.4 +85.68507493903661 1572330606.4 +77.44376488965126 1572334154.5 +71.86922518685 1572337702.6 +67.80860290486282 1572341250.8 +64.65248039619112 1572344798.9 +62.07689544122073 1572348347 +59.872001679226784 1572351895.1 +57.93103739414151 1572355443.2 +56.24437588803248 1572358991.3 +55.05442068683257 1572362539.4 +85.77258325923954 1572417112.4 +77.64171199733275 1572420638.7 +72.12352796582624 1572424164.9 +68.09405833274727 1572427691.2 +64.97871517091619 1572431217.4 +62.44758663419719 1572434743.7 +60.32792863729529 1572438269.9 +58.54045504164011 1572441796.2 +57.208908404053446 1572445322.5 +56.853793535531075 1572448848.7 +85.85781902433156 1572503618.5 +77.83598203360349 1572507123 +72.36820404687005 1572510627.6 +68.37724120552079 1572514132.1 +65.2990003191196 1572517636.6 +62.81827782717365 1572521141.2 +60.77650145254225 1572524645.7 +59.13429636468461 1572528150.2 +58.138611199755445 1572531654.8 +58.55970843750497 1572535159.3 +85.93937771801284 1572590124.7 +78.02797951476332 1572593607.6 +72.6165571993246 1572597090.6 +68.65674700688356 1572600573.5 +65.61333584080133 1572604056.5 +63.185291948739355 1572607539.4 +61.21912464126755 1572611022.4 +59.724460616318346 1572614505.3 +59.03716134654924 1572617988.3 +60.18633720090851 1572621471.2 +86.02093641169411 1572676631 +78.21629992451238 1572680092.5 +72.85528365384674 1572683554 +68.93625280824634 1572687015.5 +65.92767136248307 1572690477 +63.54635644378339 1572693938.5 +61.65579820347118 1572697400 +60.29309891697632 1572700861.5 +59.90315432813499 1572704323.1 +61.725457644109106 1572707784.6 +86.09654547885371 1572763137.2 +78.39867070773978 1572766577.5 +73.09401010836888 1572770017.7 +69.21208153819833 1572773457.9 +66.23832981275403 1572776898.2 +63.90147131230576 1572780338.4 +62.08652213915315 1572783778.6 +60.852110519701846 1572787218.9 +60.739399177112375 1572790659.1 +63.19491864667179 1572794099.3 +86.17442710112421 1572849643.5 +78.5810414909672 1572853062.6 +73.32678693636933 1572856481.8 +69.47968808651777 1572859900.9 +66.54303863650333 1572863320 +64.25290910941736 1572866739.1 +62.509891932013595 1572870158.2 +61.40149542449495 1572873577.3 +61.54308686088171 1572876996.4 +64.59244765348562 1572880415.5 +86.25003616828381 1572936149.8 +78.75973520278383 1572939547.9 +73.55588669295905 1572942946.1 +69.74589011853733 1572946344.3 +66.84407038884186 1572949742.4 +64.60207435141807 1572953140.6 +62.92503954324145 1572956538.8 +61.935304004833945 1572959936.9 +62.32157152226453 1572963335.1 +65.92767136248307 1572966733.3 +86.32196816403264 1573022655.9 +78.93247928807878 1573026033.3 +73.78498644954874 1573029410.7 +70.009819595446 1573032788.2 +67.1428295860695 1573036165.6 +64.94388545059722 1573039543 +63.33283301164779 1573042920.4 +62.45721333212962 1573046297.8 +63.068903534739135 1573049675.2 +67.19918525736423 1573053052.6 +86.39162760467057 1573109162 +79.09927374685209 1573112518.8 +74.00445950820601 1573115875.7 +70.26779944583299 1573119232.5 +67.43791171188636 1573122589.3 +65.27747436814381 1573125946.1 +63.73467685353246 1573129303 +62.96581889008208 1573132659.8 +63.78875996971629 1573136016.6 +68.41434348095066 1573139373.5 +86.4635596004194 1573195667.9 +79.2683407607363 1573199004.3 +74.22166001175238 1573202340.8 +70.52210222480925 1573205677.3 +67.72704421118156 1573209013.7 +65.61333584080133 1573212350.2 +64.13057106889545 1573215686.6 +63.46479775010212 1573219023.1 +64.47973631089616 1573222359.5 +69.57314603324237 1573225696 +86.52954196964659 1573282173.6 +79.43145814809883 1573285489.9 +74.44113307040963 1573288806.2 +70.77640500378546 1573292122.5 +68.012499639066 1573295438.7 +65.9395706155264 1573298755 +64.51683858632603 1573302071.3 +63.95187735707882 1573305387.6 +65.14550962968949 1573308703.9 +70.6792699856501 1573312020.2 +86.59552433887374 1573368679 +79.59230298035045 1573371975.4 +74.64870687602357 1573375271.7 +71.02108108482926 1573378568.1 +68.29200544042877 1573381864.4 +66.2598557637298 1573385160.8 +64.89715647723493 1573388457.1 +64.42565319471232 1573391753.5 +65.7860799260963 1573395049.8 +71.731310821874 1573398346.2 +86.6615067081009 1573455184.1 +79.74579366978055 1573458460.8 +74.8562806816375 1573461737.4 +71.26348461076216 1573465014.1 +68.56556161526987 1573468290.7 +66.57419128541154 1573471567.3 +65.26784767021138 1573474844 +64.8875297793025 1573478120.6 +66.40144720011656 1573481397.2 +72.73294561332483 1573484673.9 +86.72153945080642 1573541688.9 +79.89701180409976 1573544946.1 +75.06017741584068 1573548203.3 +71.5022110652843 1573551460.4 +68.8354407187002 1573554717.6 +66.8848497356825 1573557974.7 +65.6348617917771 1573561231.9 +65.33383003943857 1573564489.1 +66.99528852316105 1573567746.2 +73.67822473348095 1573571003.4 +86.78384474862281 1573628193.3 +80.05050249352986 1573631431.2 +75.25812452352218 1573634669.2 +71.73726044839567 1573637907.1 +69.10531982213053 1573641145.1 +67.18955855943179 1573644383 +65.98997666029948 1573647620.9 +65.77050360164219 1573650858.9 +67.56392682381903 1573654096.8 +74.56714818234231 1573657334.8 +86.84020041991754 1573714697.2 +80.19209392991662 1573717916.2 +75.4523945597929 1573721135.2 +71.96636020498538 1573724354.2 +69.36329967251753 1573727573.1 +67.48831775665943 1573730792.1 +66.34141445741108 1573734011.1 +66.1975504659134 1573737230.1 +68.10963465720137 1573740449.1 +75.39603888849818 1573743668.1 +86.90023316262304 1573801200.6 +80.3359579214143 1573804400.9 +75.64439204095275 1573807601.2 +72.1895103350534 1573810801.5 +69.62355207801542 1573814001.8 +67.78339988247629 1573817202.1 +66.68095300147934 1573820402.4 +66.6090210057305 1573823602.7 +68.63154398449703 1573826803 +76.17225099477008 1573830003.3 +86.95658883391778 1573887703.4 +80.4715997312794 1573890885.3 +75.8327124507018 1573894067.2 +72.40671083859978 1573897249.1 +69.87190523046999 1573900431 +68.06885531036072 1573903612.9 +67.01086484761515 1573906794.8 +67.01086484761515 1573909976.7 +69.13419991592784 1573913158.6 +76.88475328692572 1573916340.5 +87.00699487869083 1573974205.5 +80.6095140962554 1573977369.3 +76.01140616251845 1573980533.1 +72.62618389725704 1573983696.9 +70.1165813115138 1573986860.7 +68.34836111172349 1573990024.6 +67.33709962234022 1573993188.4 +67.39713236504574 1573996352.2 +69.61760245149377 1573999516 +77.55052660571906 1574002679.8 +87.06335054998557 1574060706.9 +80.74147883470972 1574063853 +76.18782731922418 1574066999 +72.83375770287097 1574070145 +70.3589848374467 1574073291 +68.6219172865646 1574076437 +67.65143514402197 1574079583.1 +67.77745025595463 1574082729.1 +70.07947903608392 1574085875.1 +78.15994425321766 1574089021.1 +87.11375659475863 1574147207.6 +80.86976650175329 1574150336.1 +76.36057140451915 1574153464.7 +73.03765443707414 1574156593.2 +70.59403422055807 1574159721.8 +68.88584676347327 1574162850.4 +67.96209359429292 1574165978.9 +68.14446437752034 1574169107.5 +70.52210222480925 1574172236 +78.72490548246485 1574175364.6 +87.16048556812095 1574233707.4 +80.9898319871643 1574236818.8 +76.52963841840334 1574239930.2 +73.24155117127731 1574243041.6 +70.82313397714776 1574246153.1 +69.14609916897116 1574249264.5 +68.26085279152056 1574252375.9 +68.49590217463194 1574255487.4 +70.94914908908044 1574258598.8 +79.24313773834976 1574261710.2 +87.21089161289402 1574320206.2 +81.1121700276862 1574323300.9 +76.69643287717665 1574326395.5 +73.43354865243714 1574329490.2 +71.04628410721581 1574332584.8 +69.4004019479474 1574335679.5 +68.55593491733744 1574338774.1 +68.8354407187002 1574341868.8 +71.3509929309651 1574344963.4 +79.72059064739403 1574348058.1 +87.2553480311454 1574406704 +81.22855844168643 1574409782.3 +76.85360063801751 1574412860.5 +73.62781868870788 1574415938.7 +71.2598075393514 1574419017 +69.64875510040196 1574422095.2 +68.8354407187002 1574425173.5 +69.16535256483604 1574428251.7 +71.74321007491734 1574431329.9 +80.15726420959766 1574434408.2 +87.30207700450771 1574493200.8 +81.3412697842759 1574496263 +77.01076839885837 1574499325.2 +73.81018947193527 1574502387.4 +71.473330971487 1574505449.6 +69.8874815549241 1574508511.8 +69.10899689354129 1574511574 +69.48563771303942 1574514636.2 +72.11390126789381 1574517698.3 +80.56278512289309 1574520760.5 +87.34285635134835 1574579696.4 +81.45398112686536 1574582743 +77.1583094617668 1574585789.5 +73.9888831837519 1574588836 +71.67495515057927 1574591882.6 +70.1165813115138 1574594929.1 +69.37519892556087 1574597975.6 +69.7962961633104 1574601022.2 +72.46901613641617 1574604068.7 +80.93574887098046 1574607115.3 +87.38363569818898 1574666190.8 +81.56074284293317 1574669222.1 +77.30585052467525 1574672253.4 +74.16162726904687 1574675284.6 +71.87517481337167 1574678315.9 +70.3456810681035 1574681347.2 +69.63317877594785 1574684378.5 +70.09137828912726 1574687409.8 +72.80487760907366 1574690441.1 +81.2812370415704 1574693472.4 +87.42441504502962 1574752683.8 +81.6615549324793 1574755700.3 +77.44376488965126 1574758716.7 +74.33437135434185 1574761733.2 +72.06717229453149 1574764749.6 +70.56288157164987 1574767766.1 +69.88153192840242 1574770782.5 +70.3745611619008 1574773799 +73.12883982868784 1574776815.4 +81.59557256325213 1574779831.9 +87.46519439187026 1574839175.5 +81.75868995061467 1574842177.5 +77.58167925462726 1574845179.6 +74.49521618659348 1574848181.6 +72.25549270428057 1574851183.6 +70.7704553772638 1574854185.7 +70.12025838292456 1574857187.7 +70.65038989185281 1574860189.8 +73.43354865243714 1574863191.8 +81.890654689069 1574866193.8 +87.50002411218921 1574925665.7 +81.85355241363914 1574928653.7 +77.71364399308158 1574931641.8 +74.64870687602357 1574934629.9 +72.43418641609722 1574937617.9 +70.97435211146697 1574940606 +70.34935813951428 1574943594.1 +70.9083697422398 1574946582.1 +73.72863077825401 1574949570.2 +82.15826123738843 1574952558.3 +87.53485383250818 1575012154.3 +81.94701036036373 1575015128.8 +77.83965910501425 1575018103.4 +74.80219756545368 1575021077.9 +72.60693050139217 1575024052.5 +71.1686221477377 1575027027 +70.56883119817154 1575030001.6 +71.16267252121602 1575032976.1 +74.00445950820601 1575035950.7 +82.4088869449539 1575038925.3 +87.57195610793804 1575098641.2 +82.03224612545576 1575101602.7 +77.95604751901448 1575104564.2 +74.94973862836211 1575107525.7 +72.77372496016547 1575110487.2 +71.35694255748678 1575113448.8 +70.78235463030713 1575116410.3 +71.40139897573816 1575119371.8 +74.26838898511467 1575122333.3 +82.64166377295437 1575125294.8 +87.60083620173535 1575185126.4 +82.11380481913703 1575188075.4 +78.07470848812562 1575191024.3 +75.08538043822722 1575193973.2 +72.93089272100633 1575196922.2 +71.53931334071416 1575199871.1 +70.9839788093994 1575202820.1 +71.63049873232787 1575205769 +74.51674213756924 1575208718 +82.85518720508996 1575211666.9 +87.63198885064354 1575271609.8 +82.1953635128183 1575274546.7 +78.1851472756042 1575277483.5 +75.21734517668155 1575280420.4 +73.08438341043643 1575283357.3 +71.70610779948747 1575286294.2 +71.17824884567014 1575289231 +71.84997179098514 1575292167.9 +74.75546859209138 1575295104.8 +83.05313431277146 1575298041.7 +87.66314149955174 1575358091.3 +82.2709725799779 1575361016.6 +78.29190899167199 1575363941.9 +75.34563284372511 1575366867.2 +73.23192447334488 1575369792.5 +71.87517481337167 1575372717.8 +71.36061962889754 1575375643.1 +72.0515959700774 1575378568.5 +74.97494165074865 1575381493.8 +83.2318280245881 1575384419.1 +87.69429414845995 1575444570.8 +82.34290457572673 1575447485 +78.38904400980735 1575450399.3 +75.46797088424702 1575453313.6 +73.36756628320997 1575456227.8 +72.02639294769087 1575459142.1 +71.53931334071416 1575462056.4 +72.2495430777589 1575464970.6 +75.18251545636258 1575467884.9 +83.40457210988306 1575470799.2 +87.71949717084648 1575531048.2 +82.41256401636467 1575533951.9 +78.48617902794273 1575536855.7 +75.58435929824725 1575539759.4 +73.49953102166431 1575542663.2 +72.1739340105993 1575545566.9 +71.7024307280767 1575548470.7 +72.43418641609722 1575551374.4 +75.38046256404408 1575554278.2 +83.55579024420227 1575557182 +87.744700193233 1575617523.4 +82.47486931418106 1575620417.2 +78.57736441955643 1575623311 +75.69112101431504 1575626204.8 +73.62186906218622 1575629098.5 +72.31552544698607 1575631992.3 +71.85959848891757 1575634886.1 +72.60693050139217 1575637779.9 +75.56283334727148 1575640673.7 +83.69965423569994 1575643567.5 +87.76990321561954 1575703996.4 +82.53490205688657 1575706880.8 +78.65892311323769 1575709765.1 +75.79193310386117 1575712649.5 +73.73825747618645 1575715533.9 +72.4474901854404 1575718418.2 +72.007139551826 1575721302.6 +72.76777533364381 1575724187 +75.73557743256644 1575727071.4 +83.82566934763261 1575729955.7 +87.7891566114844 1575790467.1 +82.5912577281813 1575793342.6 +78.74048180691896 1575796218.1 +75.88906812199656 1575799093.6 +73.85096881877591 1575801969.1 +72.56982822596231 1575804844.7 +72.14278136169109 1575807720.2 +72.92126602307391 1575810595.7 +75.89274519340732 1575813471.2 +83.9480073881545 1575816346.7 +87.81068256246019 1575876935.3 +82.64761339947603 1575879802.6 +78.81609087407855 1575882669.8 +75.97430388708858 1575885537.1 +73.95178090832205 1575888404.3 +72.68621663996254 1575891271.6 +72.27106902873467 1575894138.8 +73.06285745946067 1575897006.1 +76.04028625631574 1575899873.3 +84.0547691042223 1575902740.5 +87.82993595832505 1575963401.1 +82.69206981772743 1575966260.7 +78.88207324330573 1575969120.2 +76.06181220729152 1575971979.8 +74.04891592645741 1575974839.3 +72.78930128461958 1575977698.9 +72.38745744273491 1575980558.5 +73.194822197915 1575983418 +76.17820062129174 1575986277.6 +84.15558119376843 1575989137.1 +87.84551228277913 1576049864.3 +82.73879879108972 1576052716.8 +78.94210598601121 1576055569.3 +76.13374420304035 1576058421.7 +74.13642424666035 1576061274.2 +72.88643630275494 1576064126.7 +72.49421915880271 1576066979.1 +73.31121061191524 1576069831.6 +76.30053866181365 1576072684.1 +84.24308951397137 1576075536.5 +87.86108860723324 1576136324.9 +82.77957813793036 1576139170.9 +79.00441128382761 1576142016.9 +76.20340364367829 1576144862.8 +74.21203331381994 1576147708.8 +72.97762169436864 1576150554.8 +72.59503124834883 1576153400.8 +73.4239219545047 1576156246.8 +76.41097744929222 1576159092.7 +84.32464820765264 1576161938.7 +87.87666493168734 1576222782.8 +82.81440785824934 1576225622.9 +79.05481732860069 1576228463 +76.2657089414947 1576231303.1 +74.28396530956879 1576234143.2 +73.05918038804991 1576236983.3 +72.68621663996254 1576239823.4 +73.52105697264008 1576242663.5 +76.51406209394925 1576245503.6 +84.39430764829056 1576248343.7 +87.89224125614145 1576309237.9 +82.8515101336792 1576312072.7 +79.09927374685209 1576314907.6 +76.32574168420018 1576317742.4 +74.34994767879596 1576320577.3 +73.12883982868784 1576323412.1 +72.76409826223305 1576326247 +73.60629273773212 1576329081.8 +76.60524748556294 1576331916.6 +84.45661294610697 1576334751.5 +87.90186795407388 1576395690.1 +82.8803902274765 1576398520.3 +79.14005309369271 1576401350.5 +76.37247065756249 1576404180.8 +74.40403079497978 1576407011 +73.19114512650424 1576409841.2 +72.83375770287097 1576412671.4 +73.68417436000261 1576415501.7 +76.68085655272255 1576418331.9 +84.51296861740171 1576421162.1 +87.91149465200631 1576482139.4 +82.90559324986303 1576484965.7 +79.17715536912259 1576487791.9 +76.41692707581387 1576490618.1 +74.45075976834208 1576493444.4 +73.24522824268807 1576496270.6 +72.89606300068738 1576499096.8 +73.75015672922979 1576501923 +76.74683892194972 1576504749.3 +84.55742503565311 1576507575.5 +87.91744427852798 1576568585.8 +82.9271192008388 1576571408.7 +79.20603546291989 1576574231.6 +76.45175679613284 1576577054.4 +74.49521618659348 1576579877.3 +73.29195721605038 1576582700.2 +72.94646904546045 1576585523 +73.8042398454136 1576588345.9 +76.80319459324444 1576591168.8 +84.59452731108297 1576593991.7 +87.92707097646041 1576655029.2 +82.9426955252929 1576657849.3 +79.22756141389566 1576660669.5 +76.47923237363028 1576663489.6 +74.52636883550169 1576666309.8 +73.32678693636933 1576669130 +72.98724839230107 1576671950.1 +73.84501919225424 1576674770.3 +76.84992356660675 1576677590.4 +84.62340740488027 1576680410.6 +87.93302060298208 1576741469.4 +82.958271849747 1576744287.5 +79.24681480976052 1576747105.6 +76.49848576949515 1576749923.7 +74.5515718578882 1576752741.8 +73.35793958527753 1576755559.9 +73.01840104120927 1576758378 +73.8821214676841 1576761196.1 +76.88475328692572 1576764014.2 +84.64861042726679 1576766832.3 +87.93669767439285 1576827906.6 +82.96194892115776 1576830723.3 +79.25871406280386 1576833539.9 +76.51773916536001 1576836356.6 +74.56714818234231 1576839173.3 +73.37351590973164 1576841990 +73.03765443707414 1576844806.6 +73.90137486354898 1576847623.3 +76.90400668279058 1576850440 +84.6641867517209 1576853256.7 +87.93669767439285 1576914340.5 +82.97157561909019 1576917156.5 +79.2683407607363 1576919972.4 +76.52368879188167 1576922788.3 +74.57677488027474 1576925604.2 +73.38314260766407 1576928420.1 +73.04728113500657 1576931236 +73.91695118800307 1576934051.9 +76.9159059358339 1576936867.9 +84.67013637824256 1576939683.8 +87.93669767439285 1577000771.3 +82.97157561909019 1577003587.1 +79.2683407607363 1577006402.9 +76.52368879188167 1577009218.7 +74.58272450679641 1577012034.5 +73.38909223418574 1577014850.3 +73.04728113500657 1577017666.1 +73.91695118800307 1577020481.9 +76.91958300724468 1577023297.7 +84.67013637824256 1577026113.5 +87.93669767439285 1577087198.8 +82.96789854767943 1577090015.2 +79.26239113421462 1577092831.5 +76.51773916536001 1577095647.9 +74.57309780886398 1577098464.2 +73.3794655362533 1577101280.6 +73.04360406359581 1577104096.9 +73.90732449007064 1577106913.3 +76.90995630931224 1577109729.6 +84.6641867517209 1577112545.9 +87.93302060298208 1577173623.1 +82.96194892115776 1577176440.6 +79.25276443628219 1577179258.2 +76.50811246742758 1577182075.7 +74.55752148440988 1577184893.2 +73.3638892117992 1577187710.8 +73.02207811262004 1577190528.3 +73.88579853909486 1577193345.9 +76.88475328692572 1577196163.4 +84.64861042726679 1577198980.9 +87.93302060298208 1577260044 +82.95232222322534 1577262863.4 +79.23718811182809 1577265682.8 +76.48885907156271 1577268502.2 +74.5359955334341 1577271321.6 +73.33868618941267 1577274141 +72.99319801882274 1577276960.3 +73.85691844529758 1577279779.7 +76.85360063801751 1577282599.1 +84.62935703140194 1577285418.5 +87.92707097646041 1577346461.6 +82.93674589877124 1577349283.5 +79.21793471596322 1577352105.4 +76.46365604917618 1577354927.3 +74.5071154396368 1577357749.2 +73.30158391398281 1577360571 +72.95609574339288 1577363392.9 +73.81613909845694 1577366214.8 +76.81282129117687 1577369036.7 +84.59820438249373 1577371858.6 +87.91744427852798 1577432875.9 +82.91749250290637 1577435700.9 +79.18678206705502 1577438525.9 +76.43250340026798 1577441351 +74.47001316420695 1577444176 +73.26080456714217 1577447001 +72.90568969861981 1577449826.1 +73.75978342716222 1577452651.1 +76.75873817499306 1577455476.1 +84.55742503565311 1577458301.2 +87.91149465200631 1577519286.7 +82.8959665519306 1577522115.6 +79.15562941814683 1577524944.4 +76.39172405342735 1577527773.2 +74.41960711943388 1577530602 +73.2103985223691 1577533430.8 +72.84933402732507 1577536259.7 +73.69747812934581 1577539088.5 +76.69643287717665 1577541917.3 +84.51296861740171 1577544746.1 +87.90186795407388 1577605694.3 +82.8648139030224 1577608527.5 +79.12079969782786 1577611360.7 +76.34131800865428 1577614194 +74.36920107466081 1577617027.2 +73.15036577966362 1577619860.5 +72.78335165809791 1577622693.7 +73.62186906218622 1577625527 +76.61487418349539 1577628360.2 +84.46029001751774 1577631193.5 +87.88629162961978 1577692098.4 +82.83593380922508 1577694936.7 +79.07407072446556 1577697775 +76.29091196388121 1577700613.3 +74.30916833195532 1577703451.6 +73.07843378391476 1577706289.9 +72.7077425909383 1577709128.2 +73.54031036850495 1577711966.5 +76.52963841840334 1577714804.8 +84.40025727481223 1577717643.1 +87.87666493168734 1577778499.1 +82.79883153379524 1577781343.1 +79.02366467969249 1577784187.1 +76.22860666606482 1577787031.1 +74.23723633620648 1577789875.1 +73.00282471675517 1577792719.1 +72.62023427073537 1577795563.1 +73.44544790548048 1577798407.1 +76.43250340026798 1577801251.1 +84.3283252790634 1577804095 +87.86108860723324 1577864896.5 +82.75805218695459 1577867746.8 +78.96730900839776 1577870597.1 +76.16262429683765 1577873447.4 +74.16162726904687 1577876297.7 +72.91531639655224 1577879148 +72.5253718077109 1577881998.3 +73.33868618941267 1577884848.6 +76.31979205767851 1577887698.9 +84.24903914049304 1577890549.2 +87.84551228277913 1577951290.5 +82.71727284011396 1577954147.7 +78.90727626569225 1577957004.9 +76.08701522967804 1577959862.2 +74.07411894884395 1577962719.4 +72.82045393352777 1577965576.6 +72.41861009164312 1577968433.8 +73.22002522030154 1577971291 +76.19972657226752 1577974148.2 +84.15558119376843 1577977005.4 +87.82625888691429 1578037681.2 +82.67281642186256 1578040545.9 +78.84129389646509 1578043410.6 +76.00545653599679 1578046275.4 +73.98293355723023 1578049140.1 +72.71736928887074 1578052004.8 +72.30222167764288 1578054869.5 +73.09401010836888 1578057734.3 +76.06548927870229 1578060599 +84.06071873074397 1578063463.7 +87.80473293593852 1578124068.5 +82.6224103770895 1578126941.3 +78.76936190071626 1578129814.2 +75.92022077090475 1578132687 +73.8821214676841 1578135559.8 +72.6009808748705 1578138432.7 +72.1739340105993 1578141305.5 +72.95241867198212 1578144178.4 +75.92022077090475 1578147051.2 +83.95395701467616 1578149924.1 +87.78547954007364 1578210452.4 +82.56605470579477 1578213334 +78.69375283355666 1578216215.5 +75.82676282418014 1578219097.1 +73.7753597516163 1578221978.6 +72.48459246087027 1578224860.1 +72.04196927214497 1578227741.7 +72.80487760907366 1578230623.2 +75.76078045495298 1578233504.8 +83.83161897415427 1578236386.3 +87.76395358909788 1578296833.1 +82.50602196308927 1578299723.9 +78.6121941398754 1578302614.7 +75.72595073463401 1578305505.5 +73.66264840902684 1578308396.4 +72.35262772241593 1578311287.2 +71.89442820923652 1578314178 +72.64176022171114 1578317068.8 +75.58803636965801 1578319959.6 +83.7033313071107 1578322850.4 +87.73875056671133 1578383210.5 +82.44371666527287 1578386111.1 +78.52100874826169 1578389011.8 +75.6191890185662 1578391912.4 +73.54031036850495 1578394813.1 +72.21471335743995 1578397713.7 +71.73726044839567 1578400614.4 +72.46901613641617 1578403515.1 +75.40566558643062 1578406415.7 +83.56173987072393 1578409316.4 +87.71354754432481 1578469584.6 +82.37773429604569 1578472495.6 +78.429823356648 1578475406.7 +75.50647767597675 1578478317.7 +73.40834563005062 1578481228.8 +72.06717229453149 1578484139.8 +71.57414306103314 1578487050.9 +72.28664535318877 1578489961.9 +75.21366810527078 1578492873 +83.40457210988306 1578495784 +87.68834452193828 1578555955.5 +82.30580230029686 1578558877.5 +78.33268833851261 1578561799.5 +75.39008926197651 1578564721.4 +73.27270382018551 1578567643.4 +71.91595416021231 1578570565.4 +71.40139897573816 1578573487.4 +72.08869824550727 1578576409.4 +75.00382174454595 1578579331.4 +83.23777765110977 1578582253.3 +87.65719187303009 1578642323.2 +82.23019323313726 1578645256.6 +78.22592662244482 1578648190.1 +75.26407415004384 1578651123.5 +73.12883982868784 1578654057 +71.75283677284976 1578656990.4 +71.21902819251078 1578659923.9 +71.8848015113041 1578662857.3 +74.78067161447791 1578665790.8 +83.05313431277146 1578668724.2 +87.63198885064354 1578728687.8 +82.15458416597767 1578731633.2 +78.11916490637702 1578734578.6 +75.13210941158951 1578737524 +72.97762169436864 1578740469.5 +71.58009268755481 1578743414.9 +71.02475815624003 1578746360.3 +71.66532845264683 1578749305.8 +74.54194515995577 1578752251.2 +82.85518720508996 1578755196.6 +87.59715913032458 1578815049.2 +82.0730254722964 1578818007.1 +78.00277649237678 1578820965 +74.9941950466135 1578823923 +72.82045393352777 1578826880.9 +71.40139897573816 1578829838.8 +70.82313397714776 1578832796.7 +71.43622869605713 1578835754.6 +74.29359200750122 1578838712.5 +82.64166377295437 1578841670.5 +87.56600648141637 1578901407.6 +81.98551715209346 1578904378.5 +77.88638807837656 1578907349.4 +74.84665398370507 1578910320.3 +72.65138691964357 1578913291.2 +71.21307856598911 1578916262.1 +70.61328761642294 1578919233 +71.197502241535 1578922203.9 +74.02966253059255 1578925174.8 +82.4088869449539 1578928145.7 +87.53117676109741 1578987762.9 +81.89433176047976 1578990747.3 +77.75810041133298 1578993731.6 +74.69911292079665 1578996716 +72.4786428343486 1578999700.4 +71.02108108482926 1579002684.7 +70.3901374863549 1579005669.1 +70.94914908908044 1579008653.4 +73.75383380064055 1579011637.8 +82.15826123738843 1579014622.1 +87.49407448566754 1579074115.3 +81.80314636886607 1579077113.6 +77.63208529940032 1579080111.8 +74.54194515995577 1579083110.1 +72.30222167764288 1579086108.4 +70.81718435062609 1579089106.7 +70.1610377297652 1579092105 +70.68521961217176 1579095103.3 +73.45875167482367 1579098101.6 +81.88470506254733 1579101099.9 +87.45924476534859 1579160464.7 +81.7060113507307 1579163477.4 +77.49417093442432 1579166490 +74.37882777259324 1579169502.7 +72.11757833930457 1579172515.4 +70.60961054501216 1579175528 +69.92231127524306 1579178540.7 +70.41166343733067 1579181553.4 +73.15036577966362 1579184566 +81.58962293673046 1579187578.7 +87.41846541850795 1579246811.2 +81.6015221897738 1579249838.7 +77.35625656944832 1579252866.2 +74.21203331381994 1579255893.7 +71.92558085814474 1579258921.2 +70.3901374863549 1579261948.7 +69.67395812278849 1579264976.2 +70.12620800944623 1579268003.6 +72.8300806314602 1579271031.1 +81.26933778852707 1579274058.6 +87.37768607166731 1579333154.9 +81.49843754511676 1579336197.7 +77.21098806165078 1579339240.4 +74.03928922852498 1579342283.1 +71.72763375046324 1579345325.9 +70.1610377297652 1579348368.6 +69.4137057172906 1579351411.3 +69.8274488122186 1579354454.1 +72.48826953228104 1579357496.8 +80.92017254652635 1579360539.6 +87.33322965341591 1579419495.8 +81.3879987576382 1579422554.2 +77.06344699874235 1579425612.6 +73.86059551670834 1579428671 +71.52373701626006 1579431729.4 +69.92826090176473 1579434787.8 +69.14977624038193 1579437846.2 +69.52046743335839 1579440904.6 +72.127205037237 1579443963 +80.54353172702824 1579447021.4 +87.2865006800536 1579505834 +81.27528741504874 1579508908.5 +76.90400668279058 1579511982.9 +73.67822473348095 1579515057.4 +71.31021358412447 1579518131.9 +69.68953444724261 1579521206.3 +68.87622006554082 1579524280.8 +69.19650521374423 1579527355.2 +71.75651384426052 1579530429.7 +80.13206118721112 1579533504.2 +87.24204426180222 1579592169.5 +81.1588990010485 1579595260.4 +76.74683892194972 1579598351.3 +73.48622725232111 1579601442.2 +71.0907405254672 1579604533.1 +69.4448583661988 1579607624.1 +68.5907646376564 1579610715 +68.86659336760839 1579613805.9 +71.36656925541921 1579616896.8 +79.68576092707505 1579619987.7 +87.19531528843991 1579678502.4 +81.04251058704827 1579681610.1 +76.58599408969808 1579684717.8 +73.29195721605038 1579687825.6 +70.86759039539918 1579690933.3 +69.19055558722256 1579694041 +68.29568251183953 1579697148.8 +68.52110519701846 1579700256.5 +70.9550987156021 1579703364.2 +79.20235839150912 1579706472 +87.14858631507761 1579764832.7 +80.91422292000468 1579767957.6 +76.41692707581387 1579771082.5 +73.08806048184721 1579774207.4 +70.63849063880947 1579777332.3 +68.9266261103139 1579780457.2 +67.99692331461189 1579783582.2 +68.16371777338519 1579786707.1 +70.5280518513309 1579789832 +78.67817650910256 1579792956.9 +87.09818027030455 1579851160.5 +80.78820780807203 1579854302.9 +76.24418299051892 1579857445.3 +72.88643630275494 1579860587.8 +70.405713810809 1579863730.2 +68.65674700688356 1579866872.7 +67.68626486434093 1579870015.1 +67.79302658040872 1579873157.6 +70.07947903608392 1579876300 +78.10358858192292 1579879442.5 +87.04777422553147 1579937485.8 +80.65992014102846 1579940646.1 +76.06181220729152 1579943806.4 +72.67291287061934 1579946966.7 +70.1610377297652 1579950127 +68.38319083204247 1579953287.3 +67.36597971613753 1579956447.6 +67.41270868949984 1579959607.9 +69.60797575356132 1579962768.3 +77.48454423649189 1579965928.6 +86.99141855423674 1580023808.7 +80.52200577605247 1580026987.2 +75.87944142406413 1580030165.7 +72.45938943848374 1580033344.2 +69.91268457731063 1580036522.7 +68.1036850306797 1580039701.2 +67.03606787000169 1580042879.7 +67.02049154554759 1580046058.2 +69.12089614658464 1580049236.7 +76.80914421976611 1580052415.2 +86.935062882942 1580110129.2 +80.38636396618736 1580113326.2 +75.69479808572581 1580116523.2 +72.23396675330481 1580119720.2 +69.66433142485607 1580122917.2 +67.81455253138449 1580126114.2 +66.7002063973442 1580129311.2 +66.61497063225217 1580132508.2 +68.61229058863216 1580135705.2 +76.08106560315638 1580138902.2 +86.88097976675819 1580196447.5 +80.2424999746897 1580199663.3 +75.50280060456599 1580202879.1 +72.01081662323676 1580206094.9 +69.40407901935816 1580209310.7 +67.51947040556763 1580212526.5 +66.36066785327594 1580215742.2 +66.1975504659134 1580218958 +68.08443163481483 1580222173.8 +75.29522679895204 1580225389.6 +86.81867446894178 1580282763.5 +80.09723146689217 1580285998.4 +75.30853056829524 1580289233.3 +71.77803979523631 1580292468.1 +69.14014954244949 1580295703 +67.2184386532291 1580298937.9 +66.00555298475356 1580302172.8 +65.77050360164219 1580305407.6 +67.52909710350006 1580308642.5 +74.44481014182041 1580311877.4 +86.75864172623628 1580369077.4 +79.94969040398372 1580372331.6 +75.10690638920298 1580375585.8 +71.54299041212492 1580378840 +68.87027043901915 1580382094.3 +66.91005275806903 1580385348.5 +65.64448848970953 1580388602.7 +65.32420334150612 1580391856.9 +66.95083210490968 1580395111.2 +73.54031036850495 1580398365.4 +86.69633642841988 1580455389.1 +79.79619971455362 1580458662.9 +74.9030096549998 1580461936.8 +71.3042639576028 1580465210.6 +68.60266389069974 1580468484.4 +66.59939430779805 1580471758.3 +65.27747436814381 1580475032.1 +64.8719534548484 1580478306 +66.35104115534351 1580481579.8 +72.57577785248398 1580484853.7 +86.63035405919271 1580541698.7 +79.63903195371275 1580544992.4 +74.69543584938589 1580548286.1 +71.0618604316699 1580551579.8 +68.32315808933696 1580554873.6 +66.27910915959467 1580558167.3 +64.9031061037566 1580561461 +64.40412724373654 1580564754.7 +65.72009755686912 1580568048.4 +71.55488966516826 1580571342.1 +86.56437168996554 1580628006.3 +79.47591456635023 1580631320.2 +74.48191241725029 1580634634 +70.81123472410442 1580637947.8 +68.03770266145253 1580641261.6 +65.95514693998051 1580644575.4 +64.51683858632603 1580647889.2 +63.926674334692294 1580651203.1 +65.06990056252988 1580654516.9 +70.47764580655785 1580657830.7 +86.49838932073837 1580714312 +79.3127971789877 1580717646.2 +74.26838898511467 1580720980.3 +70.5592045002391 1580724314.5 +67.7522472335681 1580727648.6 +65.62296253873376 1580730982.8 +64.12462144237378 1580734316.9 +63.433645101193925 1580737651.1 +64.38855091928245 1580740985.2 +69.34772334806343 1580744319.4 +86.42872988010045 1580800615.7 +79.1460027202144 1580803970.5 +74.04891592645741 1580807325.2 +70.29895209474121 1580810679.9 +67.45943766286213 1580814034.6 +65.28937362118717 1580817389.3 +63.722777600489124 1580820744 +62.92503954324145 1580824098.7 +63.68794788017016 1580827453.4 +68.16371777338519 1580830808.1 +86.35679788435161 1580886917.6 +78.97325863491943 1580890293.1 +73.8198161698677 1580893668.6 +70.0386996892433 1580897044.1 +67.16435553704527 1580900419.5 +64.94756252200798 1580903795 +63.31725668719369 1580907170.5 +62.40680728735655 1580910546 +62.95024256562799 1580913921.4 +66.91967945600146 1580917296.9 +86.28486588860278 1580973217.7 +78.80051454962445 1580976614.2 +73.59666603979969 1580980010.6 +69.77477021233463 1580983407 +66.85964671329596 1580986803.5 +64.59839728000729 1580990199.9 +62.89983652085492 1580993596.4 +61.87894833353923 1580996992.8 +62.18960678381019 1581000389.2 +65.619285467323 1581003785.7 +86.20925682144316 1581059516.1 +78.62182083780783 1581062933.6 +73.3638892117992 1581066351.2 +69.5071636640152 1581069768.8 +66.55493788954666 1581073186.4 +64.24695948289569 1581076604 +62.47873928310539 1581080021.6 +61.329563428746106 1581083439.2 +61.39554579797327 1581086856.8 +64.25290910941736 1581090274.4 +86.13364775428357 1581145812.7 +78.43945005458042 1581149251.6 +73.12516275727708 1581152690.5 +69.2313349340632 1581156129.5 +66.2442794392757 1581159568.4 +63.891844614373326 1581163007.3 +62.05169241883419 1581166446.3 +60.77650145254225 1581169885.2 +60.572604718339086 1581173324.1 +62.81827782717365 1581176763 +86.05208906060231 1581232107.7 +78.25707927135302 1581235568.1 +72.88643630275494 1581239028.5 +68.95777875922211 1581242489 +65.93362098900474 1581245949.4 +63.530780119329286 1581249409.8 +61.61501885663054 1581252870.3 +60.20786315188428 1581256330.7 +59.714833918385914 1581259791.1 +61.31031003288125 1581263251.6 +85.97053036692104 1581318401.1 +78.06280923508228 1581321883.2 +72.64176022171114 1581325365.3 +68.67232333133767 1581328847.4 +65.61333584080133 1581332329.5 +63.16376599776359 1581335811.6 +61.17239566790526 1581339293.7 +59.62364852677222 1581342775.8 +58.82958754093531 1581346257.9 +59.724460616318346 1581349740 +85.88897167323978 1581404692.9 +77.87081175392245 1581408196.8 +72.39340706925658 1581411700.7 +68.3928175299749 1581415204.7 +65.29305069259793 1581418708.6 +62.79307480478712 1581422212.5 +60.72014578124752 1581425716.4 +59.02753464861681 1581429220.4 +57.90583437175498 1581432724.3 +58.047425808141746 1581436228.2 +85.80373590814774 1581490983.2 +77.67654171765172 1581494509.1 +72.14278136169109 1581498035 +68.1036850306797 1581501560.9 +64.96908847298376 1581505086.8 +62.41643398528899 1581508612.7 +60.261946268068115 1581512138.6 +58.41811700111821 1581515664.5 +56.954605625077214 1581519190.4 +56.28883230628387 1581522716.3 +85.7162275879448 1581577272.1 +77.47491753855945 1581580820.1 +71.88847858271487 1581584368.1 +67.81455253138449 1581587916.1 +64.64285369825869 1581591464.1 +62.03611609438009 1581595012.1 +59.80006968347794 1581598560.1 +57.79312302916551 1581602108.1 +55.964870086669706 1581605656.1 +54.42942671487987 1581609204.2 +85.62504219633111 1581663559.6 +77.27102080435628 1581667129.8 +71.63049873232787 1581670700.1 +67.51947040556763 1581674270.3 +64.31294185212286 1581677840.6 +61.65579820347118 1581681410.8 +59.32856640095535 1581684981.1 +57.15850235928038 1581688551.3 +54.94170934424311 1581692121.5 +52.46325940740807 1581695691.8 +85.53385680471742 1581749845.7 +77.06344699874235 1581753438.3 +71.37024632682997 1581757030.9 +67.22438827975076 1581760623.5 +63.97708037946535 1581764216.1 +61.26358105951894 1581767808.7 +58.85111349191108 1581771401.4 +56.51198243635191 1581774994 +53.885991436608435 1581778586.6 +48.6917696247161 1581782179.2 +85.44267141310371 1581836130.5 +76.84992356660675 1581839745.6 +71.1063168499213 1581843360.7 +66.91967945600146 1581846975.8 +63.63754183539709 1581850590.9 +60.87363647067762 1581854206 +58.371388027755906 1581857821.1 +55.85215874408024 1581861436.2 +52.793171253543896 1581865051.3 +42.81847072468722 1581868666.3 +85.34553639496833 1581922414 +76.63640013447113 1581926051.7 +70.83871030160186 1581929689.4 +66.62092025877384 1581933327.1 +63.29573073621792 1581936964.8 +60.48141932672539 1581940602.5 +57.88063134936845 1581944240.1 +55.17675872735447 1581947877.8 +51.66919842157116 1581951515.5 +0.0 1581955153.2 +85.24472430542221 1582008696.3 +76.41692707581387 1582012356.7 +70.56288157164987 1582016017.1 +66.31393887991364 1582019677.5 +62.95619219214966 1582023337.9 +60.07957548484072 1582026998.3 +57.38760211587008 1582030658.6 +54.48945945758537 1582034319 +50.506718797868686 1582037979.4 +0.0 1582041639.8 +85.14163966076516 1582094977.4 +76.19377694574585 1582098660.6 +70.28932539680876 1582102343.8 +66.00555298475356 1582106027 +62.60475439503806 1582109710.2 +59.67773164295605 1582113393.4 +56.88862325585005 1582117076.6 +53.78885641847307 1582120759.7 +49.30713689873636 1582124442.9 +0.0 1582128126.1 +85.03487794469737 1582181257.4 +75.96467718915615 1582184963.5 +70.01349666685677 1582188669.6 +65.6948945344826 1582192375.6 +62.259266224448126 1582196081.7 +59.272210729660614 1582199787.8 +56.380017697897564 1582203493.9 +53.07635412631743 1582207200 +48.07272527928505 1582210906.1 +0.0 1582214612.1 +84.92811622862956 1582267536.3 +75.73190036115568 1582271265.3 +69.73031379408323 1582274994.4 +65.38055901280086 1582278723.5 +61.904151355925755 1582282452.5 +58.86441726125428 1582286181.6 +55.8714121399451 1582289910.6 +52.356497691340266 1582293639.7 +46.80716101092556 1582297368.8 +0.0 1582301097.8 +84.82135451256177 1582353814.1 +75.49685097804432 1582357566.2 +69.4448583661988 1582361318.4 +65.06027386459745 1582365070.5 +61.55271355881414 1582368822.6 +58.45294672143717 1582372574.7 +55.3531798840602 1582376326.8 +51.61879237679809 1582380079 +45.50081739572541 1582383831.1 +0.0 1582387583.2 +84.70496609856154 1582440090.9 +75.25812452352218 1582443866.2 +69.16167549342526 1582447641.4 +64.74366578780483 1582451416.7 +61.19759869029178 1582455192 +58.03779911020931 1582458967.2 +54.83127055676454 1582462742.5 +50.867783292912726 1582466517.7 +44.16332113161709 1582470293 +0.0 1582474068.3 +84.5885776845613 1582526366.8 +75.01572099758928 1582530165.2 +68.86659336760839 1582533963.7 +64.41970356819066 1582537762.2 +60.83653419524775 1582541560.6 +57.62037894387055 1582545359.1 +54.30708867435797 1582549157.6 +50.10487495598402 1582552956 +42.79326770230068 1582556754.5 +0.0 1582560553 +84.47218927056106 1582612641.7 +74.77104491654548 1582616463.4 +68.5751883132023 1582620285.2 +64.09941841998726 1582624106.9 +60.47546970020372 1582627928.7 +57.19928170612101 1582631750.4 +53.773280094018965 1582635572.2 +49.33233992112289 1582639393.9 +41.38383944244351 1582643215.6 +0.0 1582647037.4 +84.34985123003918 1582698915.7 +74.51674213756924 1582702760.8 +68.27642911597466 1582706605.9 +63.76950657385142 1582710451 +60.114405205159684 1582714296 +56.77591191326057 1582718141.1 +53.235794442269196 1582721986.2 +48.55017818832932 1582725831.3 +39.945531088789046 1582729676.4 +0.0 1582733521.5 +84.2215635629956 1582785188.9 +74.262439358593 1582789057.3 +67.97766991874703 1582792925.8 +63.44327179912636 1582796794.3 +59.74966363870488 1582800662.8 +56.34886504898937 1582804531.3 +52.69603623540853 1582808399.8 +47.75244013108165 1582812268.2 +38.46871594340484 1582816136.7 +0.4485728152469742 1582820005.2 +84.08959882454127 1582871461.2 +74.00445950820601 1582875353.1 +67.6766381664085 1582879245.1 +63.11335995299052 1582883137 +59.38859914366085 1582887028.9 +55.92409073982907 1582890920.9 +52.152600957137096 1582894812.8 +46.94507537590157 1582898704.7 +36.958475594001534 1582902596.7 +0.46782621111183603 1582906488.6 +83.95763408608693 1582957732.8 +73.73825747618645 1582961648.2 +67.3719293426592 1582965563.6 +62.78344810685469 1582969479.1 +59.017907950684375 1582973394.5 +55.49704387555787 1582977310 +51.60321605234399 1582981225.4 +46.125811367678125 1582985140.8 +35.41935515080093 1582989056.3 +0.47745290904426685 1582992971.7 +83.81604264970017 1583044003.6 +73.47432799927778 1583047942.6 +67.06127089238822 1583051881.6 +62.44758663419719 1583055820.5 +58.65089382911867 1583059759.5 +55.064047384765 1583063698.5 +51.05015407614013 1583067637.5 +45.29324359011149 1583071576.5 +33.83945536075971 1583075515.5 +0.0 1583079454.5 +83.6744512133134 1583130273.7 +73.20077182443667 1583134236.3 +66.74693537070651 1583138198.9 +62.111725161539674 1583142161.4 +58.28020263614221 1583146124 +54.62737382256137 1583150086.6 +50.49114247341459 1583154049.2 +44.454726186023194 1583158011.7 +32.228402921810265 1583161974.3 +0.0 1583165936.9 +83.53058722181574 1583216543.1 +72.92126602307391 1583220529.3 +66.43627692043553 1583224515.6 +61.77218661747141 1583228501.8 +57.90583437175498 1583232488 +54.1943773317685 1583236474.2 +49.932130870689065 1583240460.4 +43.60430952889155 1583244446.6 +30.576571136020192 1583248432.8 +0.0 1583252419 +83.37936908749653 1583302811.9 +72.64176022171114 1583306821.8 +66.11599177223212 1583310831.7 +61.43632514481391 1583314841.6 +57.532870623667606 1583318851.5 +53.75770376956487 1583322861.3 +49.367169641441855 1583326871.2 +42.74653872893839 1583330881.1 +28.89358670132192 1583334891 +0.0 1583338900.8 +83.22220132665566 1583389080.1 +72.35630479382671 1583393113.7 +65.8016562505504 1583397147.3 +61.09678660074566 1583401180.9 +57.15850235928038 1583405214.5 +53.321030207361225 1583409248 +48.80448096730555 1583413281.6 +41.87686867594188 1583417315.2 +27.175772546304692 1583421348.8 +0.0 1583425382.4 +83.05908393929313 1583475347.8 +72.06717229453149 1583479405.1 +65.47542147582533 1583483462.4 +60.751298430155714 1583487519.7 +56.78781116630391 1583491577 +52.8843566451576 1583495634.3 +48.23357011153668 1583499691.6 +40.99757192501295 1583503749 +25.419451599557718 1583507806.3 +0.0 1583511863.6 +82.8959665519306 1583561614.9 +71.77209016871464 1583565695.9 +65.15145925621115 1583569777 +60.40948733097655 1583573858.1 +56.411170346805775 1583577939.1 +52.441733456432296 1583582020.2 +47.66125473946796 1583586101.3 +40.10864847615157 1583590182.4 +23.629705448791647 1583594263.4 +0.0 1583598344.5 +82.72322246663562 1583647881.5 +71.473330971487 1583651986.3 +64.82522448148609 1583656091.2 +60.06399916038662 1583660196 +56.03085245589688 1583664300.9 +51.999110267706996 1583668405.7 +47.08666681228832 1583672510.6 +39.21377540076854 1583676615.4 +21.79917995118494 1583680720.3 +0.0 1583684825.2 +82.544528754819 1583734147.6 +71.1686221477377 1583738276.2 +64.49531263535026 1583742404.9 +59.71851098979668 1583746533.6 +55.65421163639874 1583750662.2 +51.558759634092596 1583754790.9 +46.506129258587016 1583758919.6 +38.30927562745307 1583763048.2 +19.930147661848505 1583767176.9 +0.0 1583771305.5 +82.3621579715916 1583820413.3 +70.85796369746674 1583824565.8 +64.16540078921442 1583828718.3 +59.36934574779598 1583832870.7 +55.2775708169006 1583837023.2 +51.116136445367296 1583841175.7 +45.92786425999662 1583845328.2 +37.401098782726834 1583849480.7 +18.02996272360387 1583853633.2 +0.0 1583857785.7 +82.17016049043177 1583906678.6 +70.543628175785 1583910854.9 +63.825862245146155 1583915031.2 +59.023857577206044 1583919207.6 +54.90092999740247 1583923383.9 +50.67351325664199 1583927560.2 +45.34732670629531 1583931736.5 +36.48697231147894 1583935912.9 +16.09267550992936 1583940089.2 +0.0 1583944265.5 +81.97221338275027 1583992943.5 +70.22702009899236 1583997143.7 +63.490000772488656 1584001343.9 +58.672419780094444 1584005544 +54.52061210649357 1584009744.2 +50.23089006791668 1584013944.4 +44.76311208118325 1584018144.6 +35.56094658718771 1584022344.8 +14.1228311310468 1584026545 +0.0 1584030745.1 +81.76236702202543 1584079208.1 +69.9030578793782 1584083432.1 +63.14818967330949 1584087656.2 +58.32098198298284 1584091880.2 +54.140294215584674 1584096104.3 +49.78458980778062 1584100328.3 +44.17889745607119 1584104552.4 +34.631243791485694 1584108776.4 +12.119561548145125 1584113000.5 +0.0 1584117224.5 +81.54884358988983 1584165472.3 +69.57314603324237 1584169720.3 +62.80865112924123 1584173968.2 +57.97181674098215 1584178216.1 +53.76365339608654 1584182464.1 +49.34196661905532 1584186712 +43.59100575954835 1584190959.9 +33.69559136926204 1584195207.9 +10.093361497967829 1584199455.8 +0.0 1584203703.7 +81.32569345982179 1584251736.3 +69.23728456058487 1584256008.2 +62.46316295865129 1584260280 +57.62037894387055 1584264551.8 +53.383335505177634 1584268823.6 +48.895666358919264 1584273095.4 +43.00679113443629 1584277367.2 +32.756261875627594 1584281639 +8.043362941703847 1584285910.9 +0.0 1584290182.7 +81.09659370323209 1584338000.1 +68.90142308792736 1584342295.8 +62.11767478806134 1584346591.5 +57.26894114675894 1584350887.2 +53.006694685679506 1584355182.9 +48.45304317019395 1584359478.6 +42.41662688280255 1584363774.3 +31.816932381993166 1584368070 +5.976383544685914 1584372365.7 +0.0 1584376661.4 +80.85419017729919 1584424263.6 +68.55593491733744 1584428583.2 +61.76623699094974 1584432902.8 +56.91382627823657 1584437222.4 +52.624104239659694 1584441542 +48.010419981468665 1584445861.6 +41.826462631168816 1584450181.2 +30.865703635315395 1584454500.8 +3.8975048946246416 1584458820.4 +0.0 1584463140 +80.60356446973373 1584510527 +68.20082004881506 1584514870.5 +61.41707174894905 1584519214 +56.56238848112497 1584523557.5 +52.243786348750795 1584527901 +47.56411972133259 1584532244.5 +41.23629837953508 1584536588 +29.92042451515929 1584540931.5 +1.8245758710850393 1584545275 +0.0 1584549618.4 +80.33963499282507 1584596790.2 +67.84343262518179 1584601157.6 +61.06563395183745 1584605525 +56.2072736126026 1584609892.4 +51.86714552925266 1584614259.7 +47.12149653260729 1584618627.1 +40.64840668301225 1584622994.5 +28.965518697070756 1584627361.9 +0.0 1584631729.3 +0.0 1584636096.7 +80.0601291914623 1584683053.3 +67.48464068524866 1584687444.6 +60.710519083315084 1584691835.8 +55.85215874408024 1584696227.1 +51.48682763834376 1584700618.4 +46.67887334388198 1584705009.7 +40.05824243137851 1584709401 +28.01061287898222 1584713792.2 +0.0 1584718183.5 +0.0 1584722574.8 +79.77099669216709 1584769316.3 +67.11762656368296 1584773731.4 +60.34945458827106 1584778146.6 +55.49704387555787 1584782561.8 +51.11018681884563 1584786976.9 +46.23852271026759 1584791392.1 +39.46440110833401 1584795807.3 +27.055707060893695 1584800222.4 +0.0 1584804637.6 +0.0 1584809052.8 +79.4662878684178 1584855579.2 +66.74098574418483 1584860018.2 +59.99433971974869 1584864457.3 +55.139656451924594 1584868896.3 +50.73581855445839 1584873335.4 +45.79589952154229 1584877774.4 +38.87423685670028 1584882213.5 +26.098528687694245 1584886652.5 +0.0 1584891091.6 +0.0 1584895530.6 +79.1460027202144 1584941842.1 +66.36066785327594 1584946305 +59.63327522470465 1584950767.9 +54.78454158340223 1584955230.8 +50.359177734960255 1584959693.8 +45.35327633281698 1584964156.7 +38.284072605066534 1584968619.6 +25.14362286960571 1584973082.5 +0.0 1584977545.4 +0.0 1584982008.3 +78.8101412475569 1585028105 +65.98034996236704 1585032591.8 +59.266261103138945 1585037078.5 +54.43310378629063 1585041565.3 +49.98253691546212 1585046052.1 +44.916602770613366 1585050538.9 +37.69618090854371 1585055025.6 +24.18871705151718 1585059512.4 +0.0 1585063999.2 +0.0 1585068486 +78.46097600555619 1585114367.9 +65.58813281841478 1585118878.5 +58.90151953668415 1585123389.2 +54.077988917768266 1585127899.8 +49.605896095963985 1585132410.4 +44.47397958188805 1585136921 +37.106016656909965 1585141431.6 +23.233811233428643 1585145942.3 +0.0 1585150452.9 +0.0 1585154963.5 +78.08433518605806 1585200630.9 +65.18628897653012 1585205165.3 +58.53450541511844 1585209699.8 +53.7228740492459 1585214234.3 +49.23520490298752 1585218768.7 +44.03730601968442 1585223303.2 +36.521802031797904 1585227837.6 +22.278905415340112 1585232372.1 +0.0 1585236906.5 +0.0 1585241441 +77.68844097069505 1585286894 +64.78444513464547 1585291452.2 +58.16976384866364 1585296010.5 +53.36775918072353 1585300568.8 +48.860836638600304 1585305127 +43.60430952889155 1585309685.3 +35.931637780164166 1585314243.6 +21.327676668662342 1585318801.8 +0.0 1585323360.1 +0.0 1585327918.4 +77.27102080435628 1585373157.2 +64.37297459482835 1585377739.2 +57.799072655687176 1585382321.3 +53.01037175709027 1585386903.3 +48.48787289051291 1585391485.4 +43.16763596668792 1585396067.5 +35.34742315505209 1585400649.5 +20.382397548506237 1585405231.6 +0.0 1585409813.7 +0.0 1585414395.7 +76.82472054422021 1585459420.5 +63.95782698360049 1585464026.3 +57.42838146271072 1585468632.2 +52.66120651508957 1585473238 +48.11718169753645 1585477843.8 +42.73691203100595 1585482449.7 +34.76320852994003 1585487055.5 +19.437118428350136 1585491661.4 +0.0 1585496267.2 +0.0 1585500873 +76.3509447065867 1585545684 +63.530780119329286 1585550313.6 +57.051740643212575 1585554943.2 +52.306091646567204 1585559572.8 +47.75244013108165 1585564202.4 +42.303915540213076 1585568832 +34.18494353134964 1585573461.5 +18.4977889347157 1585578091.1 +0.0 1585582720.7 +0.0 1585587350.3 +75.85423840167758 1585631947.8 +63.097783628536426 1585636601.1 +56.67509982371444 1585641254.4 +51.948704222933934 1585645907.7 +47.3817489381052 1585650561 +41.87686867594188 1585655214.3 +33.60440597764833 1585659867.6 +17.56213651249203 1585664520.9 +0.0 1585669174.2 +0.0 1585673827.5 +75.32042982133859 1585718211.7 +62.66111006633279 1585722888.7 +56.298459004216305 1585727565.8 +51.599538980933225 1585732242.8 +47.01473481653949 1585736919.8 +41.44982181167068 1585741596.8 +33.026140979057935 1585746273.8 +16.63243371679004 1585750950.8 +0.0 1585755627.8 +0.0 1585760304.8 +74.7495189655697 1585804476 +62.21848687760749 1585809176.7 +55.92409073982907 1585813877.3 +51.24810118382163 1585818578 +46.64999325008469 1585823278.7 +41.02504750251039 1585827979.3 +32.4515530518783 1585832680 +15.706407992498793 1585837380.7 +0.0 1585842081.3 +0.0 1585846782 +74.14010131807112 1585890740.6 +61.76623699094974 1585895464.9 +55.54744992033093 1585900189.1 +50.89666338671002 1585904913.4 +46.28892875504065 1585909637.7 +40.598000638239185 1585914362 +31.882914751220333 1585919086.3 +14.788604449840134 1585923810.6 +0.0 1585928534.9 +0.0 1585933259.2 +73.49585395025355 1585977005.4 +61.31031003288125 1585981753.3 +55.16485947431113 1585986501.2 +50.54749814470932 1585991249.1 +45.92786425999662 1585995997 +40.18058047190041 1586000744.9 +31.312003895451458 1586005492.8 +13.878155050002995 1586010240.7 +0.0 1586014988.6 +0.0 1586019736.5 +72.80855468048443 1586063270.7 +60.84248382176942 1586068042.2 +54.78454158340223 1586072813.6 +50.19606034759772 1586077585.1 +45.566799764952584 1586082356.5 +39.75948323415088 1586087128 +30.743365594793488 1586091899.4 +12.973655276687529 1586096670.9 +0.0 1586101442.3 +0.0 1586106213.8 +72.07679899246394 1586149536.4 +60.368707984135916 1586154331.3 +54.40422369249333 1586159126.3 +49.84462255048612 1586163921.3 +45.211684896430214 1586168716.2 +39.34206306781211 1586173511.2 +30.180676920657195 1586178306.2 +12.075105129893734 1586183101.1 +0.0 1586187896.1 +0.0 1586192691 +71.30058688619204 1586235802.4 +59.89125507509165 1586240620.9 +54.017956175062764 1586245439.3 +49.499134379896184 1586250257.8 +44.850620401386195 1586255076.2 +38.93059252799501 1586259894.6 +29.62166531793166 1586264713.1 +11.183909125921454 1586269531.5 +0.0 1586274349.9 +0.0 1586279168.4 +70.47764580655785 1586322069 +59.40417546811495 1586326910.9 +53.63536572904296 1586331752.7 +49.15364620930625 1586336594.6 +44.49918260427459 1586341436.4 +38.51912198817791 1586346278.3 +29.066330786616888 1586351120.2 +10.30461237499252 1586355962 +0.0 1586360803.9 +0.0 1586365645.7 +69.60797575356132 1586408336 +58.91114623461659 1586413201.3 +53.24909821161239 1586418066.5 +48.808158038716314 1586422931.7 +44.15001736227389 1586427797 +38.11132851977157 1586432662.2 +28.51326881041302 1586437527.4 +9.437214877106925 1586442392.7 +0.0 1586447257.9 +0.0 1586452123.1 +68.70347598024587 1586494603.6 +58.40849030318578 1586499492.2 +52.86510324929274 1586504380.7 +48.46266986812638 1586509269.3 +43.798579565162285 1586514157.8 +37.70580760647614 1586519046.4 +27.96388390561992 1586523934.9 +8.573494450632088 1586528823.5 +0.0 1586533712 +0.0 1586538600.6 +67.7522472335681 1586580871.8 +57.899884745233315 1586585783.6 +52.47883573186217 1586590695.4 +48.12313132405812 1586595607.2 +43.453091394572354 1586600519 +37.303963764591465 1586605430.8 +27.42044862734849 1586610342.7 +7.719400722089685 1586615254.5 +0.0 1586620166.3 +0.0 1586625078.1 +66.77213839309303 1586667140.5 +57.38165248934841 1586672075.5 +52.092568214431594 1586677010.5 +47.78132022487895 1586681945.5 +43.10760322398242 1586686880.6 +36.9021199227068 1586691815.6 +26.87701334907706 1586696750.6 +6.880883318001382 1586701685.6 +0.0 1586706620.6 +0.0 1586711555.7 +65.76087690370976 1586753409.8 +56.857470606941845 1586758368 +51.706300697001026 1586763326.2 +47.44178168081069 1586768284.3 +42.76579212480325 1586773242.5 +36.5062257073438 1586778200.6 +26.337255142216378 1586783158.8 +6.048315540434751 1586788116.9 +0.0 1586793075.1 +0.0 1586798033.3 +64.73036201846163 1586839679.9 +56.32366202660283 1586844661.1 +51.31408355304879 1586849642.3 +47.10224313674242 1586854623.6 +42.42625358073498 1586859604.8 +36.114008563391565 1586864586 +25.80939618839905 1586869567.2 +5.229051532211311 1586874548.5 +0.0 1586879529.7 +0.0 1586884510.9 +63.678321182237724 1586925950.6 +55.78617637485308 1586930954.8 +50.92781603561822 1586935959.1 +46.766381664084925 1586940963.3 +42.09039210807748 1586945967.5 +35.72406397455025 1586950971.7 +25.281537234581716 1586955976 +4.415737150509542 1586960980.2 +0.0 1586965984.4 +0.0 1586970988.6 +62.61070402155973 1587012222.1 +55.24274109658163 1587017249.2 +50.54154851818765 1587022276.4 +46.43646981794909 1587027303.5 +41.75680319053089 1587032330.7 +35.337796457119666 1587037357.8 +24.757355352175146 1587042385 +3.6179990932618744 1587047412.1 +0.0 1587052439.2 +0.0 1587057466.4 +61.52751053642761 1587098494.3 +54.68740656526686 1587103544.3 +50.155281000757086 1587108594.3 +46.10060834529159 1587113644.3 +41.424618789284146 1587118694.3 +34.95747856621077 1587123744.2 +24.239123096290243 1587128794.2 +2.8298877339466375 1587133844.2 +0.0 1587138894.2 +0.0 1587143944.2 +60.43101328195232 1587184767.3 +54.12471789113057 1587189840.1 +49.76533641191576 1587194912.8 +45.77437357056652 1587199985.6 +41.09470694314831 1587205058.3 +34.57488812019097 1587210131.1 +23.726840466927015 1587215203.8 +2.0536756276747417 1587220276.6 +0.0 1587225349.3 +0.0 1587230422.1 +59.31299007650125 1587271041.2 +53.5560795904726 1587276136.6 +49.379068894485194 1587281232 +45.444461724430674 1587286327.5 +40.77074472353415 1587291422.9 +34.198247300692834 1587296518.3 +23.218234908974548 1587301613.7 +1.2907672907460368 1587306709.1 +0.0 1587311804.5 +0.0 1587316899.9 +58.179390546596075 1587357316 +52.98149166329297 1587362434 +48.99280137705462 1587367552 +45.120499504816515 1587372669.9 +40.45045957533075 1587377787.9 +33.82755610771637 1587382905.9 +22.715578977543746 1587388023.9 +0.539758206860673 1587393141.9 +0.0 1587398259.9 +0.0 1587403377.9 +57.03021469223681 1587443591.7 +52.400954109591666 1587448732.1 +48.60653385962405 1587453872.6 +44.794264730091456 1587459013 +40.13017442712734 1587464153.5 +33.462814541261565 1587469294 +22.216600117523708 1587474434.4 +0.0 1587479574.9 +0.0 1587484715.3 +0.0 1587489855.8 +55.86178544201267 1587529868.3 +51.813062413068835 1587535031.1 +48.22026634219348 1587540194 +44.47397958188805 1587545356.8 +39.81356635033471 1587550519.6 +33.09580041969586 1587555682.4 +21.729520510547008 1587560845.3 +0.0 1587566008.1 +0.0 1587571170.9 +0.0 1587576333.8 +54.67410279592367 1587616145.9 +51.21694853491343 1587621331 +47.83399882476292 1587626516.1 +44.159644060206325 1587631701.2 +39.499230828652976 1587636886.3 +32.74068555117349 1587642071.4 +21.242440903570312 1587647256.5 +0.0 1587652441.5 +0.0 1587657626.6 +0.0 1587662811.7 +53.46857127026966 1587702424.6 +50.61715758534726 1587707631.8 +47.451408378743125 1587712839.1 +43.8453085385246 1587718046.3 +39.19452200490368 1587723253.5 +32.38557068265113 1587728460.8 +20.76271543941514 1587733668 +0.0 1587738875.2 +0.0 1587744082.4 +0.0 1587749289.7 +52.24010927734004 1587788704.4 +50.007739937848655 1587793933.6 +47.06514086131255 1587799162.9 +43.528700461731944 1587804392.1 +38.88386355463271 1587809621.4 +32.030455814128764 1587814850.6 +20.28526253037087 1587820079.9 +0.0 1587825309.1 +0.0 1587830538.3 +0.0 1587835767.6 +50.99379840484539 1587874985.2 +49.39832229035006 1587880236.4 +46.68482297040365 1587885487.5 +43.21804201146098 1587890738.6 +38.58510435740507 1587895989.8 +31.684967643538833 1587901240.9 +19.817436319259034 1587906492.1 +0.0 1587911743.2 +0.0 1587916994.3 +0.0 1587922245.5 +49.724557065075125 1587961267.2 +48.77927794491903 1587966540.1 +46.308182150905516 1587971813 +42.913333187711686 1587977085.9 +38.284072605066534 1587982358.8 +31.34315654435966 1587987631.7 +19.35555973466887 1587992904.6 +0.0 1587998177.5 +0.0 1588003450.4 +0.0 1588008723.3 +48.433789774329085 1588047550.5 +48.15428397296632 1588052845 +45.92786425999662 1588058139.5 +42.60862436396238 1588063434 +37.99126303436058 1588068728.5 +31.003618000291397 1588074023 +18.903309848011137 1588079317.5 +0.0 1588084612.1 +0.0 1588089906.6 +0.0 1588095201.1 +46.60326427672239 1588133834.9 +47.52334037449195 1588139150.9 +45.551223440498475 1588144466.9 +42.309865166734745 1588149782.9 +37.69985797995447 1588155098.9 +30.673706154155564 1588160414.8 +18.4510599613534 1588165730.8 +0.0 1588171046.8 +0.0 1588176362.8 +0.0 1588181678.8 +45.78627282360986 1588220120.7 +46.892396776017584 1588225458 +45.17458262100035 1588230795.3 +42.00883341439621 1588236132.6 +37.410725480659266 1588241469.9 +30.341521752908825 1588246807.2 +18.008436772628098 1588252144.4 +0.0 1588257481.7 +0.0 1588262819 +0.0 1588268156.3 +43.321126656118025 1588306407.8 +46.257776106132454 1588311766.2 +44.80389142802389 1588317124.7 +41.71602384369025 1588322483.1 +37.1312196792965 1588327841.5 +30.01755953329466 1588333200 +17.577712836946134 1588338558.4 +0.0 1588343916.9 +0.0 1588349275.3 +0.0 1588354633.8 +39.71275426078858 1588392696.2 +45.617205809725654 1588398075.7 +44.433200235047416 1588403455.1 +41.424618789284146 1588408834.5 +36.85171387793373 1588414213.9 +29.69727438509126 1588419593.3 +17.144716346153274 1588424972.8 +0.0 1588430352.2 +0.0 1588435731.6 +0.0 1588441111 +37.19352497711291 1588478986.1 +44.97295844190809 1588484386.3 +44.06250904207096 1588489786.5 +41.141435916510616 1588495186.8 +36.578157703092636 1588500587 +29.386615934820288 1588505987.2 +16.72361910840374 1588511387.4 +0.0 1588516787.7 +0.0 1588522187.9 +0.0 1588527588.1 +35.36894910602787 1588565277.4 +44.32643851897962 1588570698.3 +43.701444547026924 1588576119.1 +40.85598048862617 1588581540 +36.30232897314063 1588586960.8 +29.078230039660227 1588592381.6 +16.30619894206497 1588597802.5 +0.0 1588603223.3 +0.0 1588608644.1 +0.0 1588614065 +30.271862312270894 1588651570.3 +43.67624152464039 1588657011.5 +43.33670298057212 1588662452.8 +40.57647468726341 1588667894.1 +36.03839949623197 1588673335.3 +28.77124866080002 1588678776.6 +15.900678028769534 1588684217.8 +0.0 1588689659.1 +0.0 1588695100.3 +0.0 1588700541.6 +29.60013936695589 1588737864.7 +43.03199415682282 1588743326.2 +42.97931555693885 1588748787.6 +40.30291851242231 1588754249.1 +35.77447001932331 1588759710.6 +28.472489463572387 1588765172.1 +15.498834186884864 1588770633.5 +0.0 1588776095 +0.0 1588781556.5 +0.0 1588787018 +23.38135229633708 1588824160.7 +42.381797162483586 1588829642.2 +42.620523617005716 1588835123.7 +40.027089782470306 1588840605.1 +35.52016724034706 1588846086.6 +28.17740733775552 1588851568.1 +15.108889598043534 1588857049.6 +0.0 1588862531.1 +0.0 1588868012.5 +0.0 1588873494 +18.664583393489 1588910458.4 +41.72932761303345 1588915959.6 +42.269085819894116 1588921460.9 +39.75948323415088 1588926962.2 +35.26586446137083 1588932463.4 +27.89422446498199 1588937964.7 +14.722622080612968 1588943465.9 +0.0 1588948967.2 +0.0 1588954468.5 +0.0 1588959969.7 +13.152348988504164 1588996757.7 +41.079130618694215 1589002278.5 +41.917648022782515 1589007799.4 +39.499230828652976 1589013320.2 +35.01751130891627 1589018841 +27.608769037097556 1589024361.8 +14.340031634593164 1589029882.6 +0.0 1589035403.4 +0.0 1589040924.3 +0.0 1589046445.1 +1.453884678108573 1589083058.8 +40.42893362435497 1589088599 +41.57215985219258 1589094139.1 +39.24125097826598 1589099679.2 +34.77283522787246 1589105219.4 +27.329263235734793 1589110759.5 +13.969340441616694 1589116299.6 +0.0 1589121839.7 +0.0 1589127379.9 +0.0 1589132920 +0.0 1589169361.7 +39.78468625653741 1589174920.9 +41.232621308124315 1589180480.1 +38.98099857276807 1589186039.3 +34.53410877335033 1589191598.5 +27.059384132304455 1589197157.7 +13.604598875161903 1589202716.9 +0.0 1589208276.1 +0.0 1589213835.3 +0.0 1589219394.5 +0.0 1589255666.5 +39.13816633360894 1589261244.5 +40.89675983546681 1589266822.5 +38.73264542031351 1589272400.5 +34.30133194534987 1589277978.5 +26.79545465539578 1589283556.5 +13.253161078050294 1589289134.5 +0.0 1589294712.5 +0.0 1589300290.5 +0.0 1589305868.5 +0.0 1589341973.1 +38.497596037202136 1589347569.7 +40.56089836280931 1589353166.2 +38.4879693392697 1589358762.7 +34.066282562238506 1589364359.3 +26.535202249897885 1589369955.8 +12.901723280938691 1589375552.3 +0.0 1589381148.9 +0.0 1589386745.4 +0.0 1589392341.9 +0.0 1589428281.7 +37.857025740795336 1589433896.5 +40.236936143195145 1589439511.3 +38.249242884747574 1589445126.1 +33.84313243217047 1589450740.9 +26.27722239951089 1589456355.6 +12.56218473687043 1589461970.4 +0.0 1589467585.2 +0.0 1589473200 +0.0 1589478814.8 +0.0 1589514592.3 +37.2224050709102 1589520225 +39.91070136847008 1589525857.8 +38.010516430225444 1589531490.5 +33.625931928624105 1589537123.3 +26.028869247056317 1589542756 +12.232272890734597 1589548388.8 +0.0 1589554021.5 +0.0 1589559654.3 +0.0 1589565287 +0.0 1589600904.9 +36.597411098957494 1589606555.3 +39.590416220266675 1589612205.7 +37.77773960222497 1589617856.2 +33.4124084964885 1589623506.6 +25.790142792534184 1589629157 +11.906038116009524 1589634807.4 +0.0 1589640457.8 +0.0 1589646108.2 +0.0 1589651758.6 +0.0 1589687219.6 +35.972417127004796 1589692887.4 +39.28203032510662 1589698555.2 +37.552316917046035 1589704222.9 +33.1988850643529 1589709890.7 +25.55141633801205 1589715558.4 +11.591702594327794 1589721226.2 +0.0 1589726894 +0.0 1589732561.7 +0.0 1589738229.5 +0.0 1589773536.5 +35.357049852984524 1589779221.3 +38.9750489462464 1589784906.1 +37.32916678697799 1589790590.9 +32.99498833014973 1589796275.6 +25.32231658142235 1589801960.4 +11.281044144056823 1589807645.2 +0.0 1589813330 +0.0 1589819014.8 +0.0 1589824699.6 +0.0 1589859855.6 +34.74763220548593 1589865557.1 +38.67034012249711 1589871258.5 +37.1156433548424 1589876960 +32.79704122246823 1589882661.5 +25.09321682483265 1589888362.9 +10.982284946829196 1589894064.4 +0.0 1589899765.9 +0.0 1589905467.4 +0.0 1589911168.8 +0.0 1589946176.9 +34.14784125591977 1589951894.7 +38.377530551791146 1589957612.5 +36.90806954922847 1589963330.3 +32.6027711861975 1589969048.1 +24.879693392697046 1589974766 +10.690879892423085 1589980483.8 +0.0 1589986201.6 +0.0 1589991919.4 +0.0 1589997637.2 +0.0 1590032500.5 +33.559949559396934 1590038234.3 +38.08612549738504 1590043968.1 +36.70049574361454 1590049701.9 +32.41672333155933 1590055435.7 +24.666169960561447 1590061169.5 +10.411374091060319 1590066903.3 +0.0 1590072637.1 +0.0 1590078370.9 +0.0 1590084104.7 +0.0 1590118826.4 +32.97573493428487 1590124575.9 +37.80661969602227 1590130325.3 +36.50027608082213 1590136074.7 +32.23207999322103 1590141824.1 +24.458596154947514 1590147573.5 +10.137817916219223 1590153322.9 +0.0 1590159072.3 +0.0 1590164821.8 +0.0 1590170571.2 +0.0 1590205154.8 +32.40482407851599 1590210919.4 +37.53306352118118 1590216684.1 +36.3082785996623 1590222448.7 +32.0556588365153 1590228213.4 +24.260649047266018 1590233978 +9.867938812788884 1590239742.7 +0.0 1590245507.3 +0.0 1590251272 +0.0 1590257036.6 +0.0 1590291485.6 +31.84581247579046 1590297265 +37.26318441775083 1590303044.5 +36.119958189913234 1590308824 +31.882914751220333 1590314603.5 +24.06637901099528 1590320383 +9.613636033812652 1590326162.5 +0.0 1590331942 +0.0 1590337721.5 +0.0 1590343501 +0.0 1590377818.8 +31.298700126108265 1590383612.8 +36.999254940842164 1590389406.7 +35.937587406685836 1590395200.6 +31.719797363857797 1590400994.5 +23.87805860124621 1590406788.5 +9.365282881358086 1590412582.4 +0.0 1590418376.3 +0.0 1590424170.3 +0.0 1590429964.2 +0.0 1590464154.6 +30.758941919247594 1590469962.6 +36.74495216186594 1590475770.5 +35.75889369486921 1590481578.5 +31.55667997649526 1590487386.4 +23.70163744454048 1590493194.4 +9.126556426835952 1590499002.3 +0.0 1590504810.3 +0.0 1590510618.2 +0.0 1590516426.2 +0.0 1590550493 +30.24070966336269 1590556314.6 +36.50027608082213 1590562136.1 +35.59209923609591 1590567957.6 +31.405461842176067 1590573779.2 +23.52294373272385 1590579600.7 +8.897456670246251 1590585422.3 +0.0 1590591243.8 +0.0 1590597065.4 +0.0 1590602886.9 +0.0 1590636834 +29.732104105410222 1590642668.7 +36.261549626299995 1590648503.4 +35.423032222211695 1590654338.1 +31.251971152745963 1590660172.8 +23.35982634536131 1590666007.5 +8.674306540178216 1590671842.2 +0.0 1590677676.9 +0.0 1590683511.6 +0.0 1590689346.3 +0.0 1590723177.7 +29.23539780050109 1590729025.1 +36.028772798299535 1590734872.5 +35.26586446137083 1590740719.9 +31.110379716359194 1590746567.3 +23.196708957998776 1590752414.7 +8.460783108042618 1590758262.1 +0.0 1590764109.5 +0.0 1590769956.9 +0.0 1590775804.3 +0.0 1590809524.1 +28.757944891456823 1590815383.7 +35.80562266823151 1590821243.4 +35.11464632705163 1590827103 +30.972465351383192 1590832962.7 +23.04549082367958 1590838822.3 +8.256886373839448 1590844682 +0.0 1590850541.6 +0.0 1590856401.3 +0.0 1590862260.9 +0.0 1590895873.2 +28.293795751755752 1590901744.6 +35.59209923609591 1590907616.1 +34.97078233555396 1590913487.5 +30.846450239450533 1590919358.9 +22.897949760771144 1590925230.3 +8.06488889267962 1590931101.7 +0.0 1590936973.1 +0.0 1590942844.6 +0.0 1590948716 +0.0 1590982225.2 +27.853445118141355 1590988107.9 +35.38820250189273 1590993990.6 +34.82919089916721 1590999873.3 +30.718162572406957 1591005756 +22.760035395795143 1591011638.7 +7.882518109452221 1591017521.4 +0.0 1591023404.1 +0.0 1591029286.8 +0.0 1591035169.5 +0.0 1591068579.9 +27.42044862734849 1591074473.4 +35.19025539421123 1591080366.9 +34.697226160712866 1591086260.4 +30.601774158406727 1591092153.9 +22.624393585930044 1591098047.4 +7.703824397635584 1591103940.9 +0.0 1591109834.4 +0.0 1591115727.9 +0.0 1591121621.4 +0.0 1591154937.5 +27.014927714053062 1591160841.3 +35.00193498446216 1591166745.1 +34.57121104878021 1591172648.9 +30.485385744406496 1591178552.7 +22.502055545408144 1591184456.5 +7.537029938862287 1591190360.2 +0.0 1591196264 +0.0 1591202167.8 +0.0 1591208071.6 +0.0 1591241298.1 +26.62271057010082 1591247211.6 +34.82551382775644 1591253125.2 +34.45255007966907 1591259038.7 +30.378624028338695 1591264952.3 +22.379717504886244 1591270865.8 +7.379862178021422 1591276779.4 +0.0 1591282692.9 +0.0 1591288606.5 +0.0 1591294520.1 +0.0 1591327661.5 +26.25201937712435 1591333584.3 +34.65644681387223 1591339507.1 +34.33616166566883 1591345429.9 +30.281489010203323 1591351352.7 +22.267006162296774 1591357275.5 +7.232321115112987 1591363198.3 +0.0 1591369121.1 +0.0 1591375043.9 +0.0 1591380966.7 +0.0 1591414027.9 +25.896904508601985 1591419959.4 +34.499279053031366 1591425890.9 +34.22939994960103 1591431822.5 +30.184353992067955 1591437754 +22.166194072750642 1591443685.5 +7.094406750136984 1591449617 +0.0 1591455548.5 +0.0 1591461480.1 +0.0 1591467411.6 +0.0 1591500397.3 +25.564720107355242 1591506337 +34.345788363601265 1591512276.7 +34.13226493146567 1591518216.3 +30.099118226975925 1591524156 +22.065381983204514 1591530095.7 +6.966119083093411 1591536035.4 +0.0 1591541975.1 +0.0 1591547914.8 +0.0 1591553854.5 +0.0 1591586769.7 +25.256334212195185 1591592717 +34.21014655373617 1591598664.3 +34.04107953985197 1591604611.6 +30.01755953329466 1591610558.9 +21.977873663001574 1591616506.2 +6.846053597682419 1591622453.5 +0.0 1591628400.9 +0.0 1591634348.2 +0.0 1591640295.5 +0.0 1591673145.1 +24.967201712899985 1591679099.4 +34.078181815281845 1591685053.8 +33.955843774759934 1591691008.2 +29.94195046613506 1591696962.6 +21.892637897909545 1591702916.9 +6.733342255092947 1591708871.3 +0.0 1591714825.7 +0.0 1591720780.1 +0.0 1591726734.4 +0.0 1591759523.5 +24.697322609469644 1591765484.4 +33.9595208461707 1591771445.3 +33.874285081078675 1591777406.1 +29.870018470386228 1591783367 +21.814756275639038 1591789327.9 +6.636207236957579 1591795288.7 +0.0 1591801249.6 +0.0 1591807210.5 +0.0 1591813171.4 +0.0 1591845905 +24.452646528425845 1591851871.8 +33.84908205869214 1591857838.6 +33.80235308532984 1591863805.4 +29.80998572768073 1591869772.2 +21.74509683500111 1591875739 +6.545021845343882 1591881705.8 +0.0 1591887672.6 +0.0 1591893639.4 +0.0 1591899606.2 +0.0 1591932289.6 +24.229496398357814 1591938261.7 +33.751947040556765 1591944233.9 +33.74232034262434 1591950206 +29.753630056385994 1591956178.1 +21.682791537184706 1591962150.3 +6.463463151662613 1591968122.4 +0.0 1591974094.6 +0.0 1591980066.7 +0.0 1591986038.8 +0.0 1592018677.2 +24.031549290676313 1592024654.1 +33.66076164894307 1592030631 +33.68001504480794 1592036607.9 +29.703224011612928 1592042584.8 +21.62643586588997 1592048561.7 +6.393803711024686 1592054538.6 +0.0 1592060515.5 +0.0 1592066492.4 +0.0 1592072469.3 +0.0 1592105068 +23.85285557885968 1592111049 +33.58515258178347 1592117030.1 +33.63555862655654 1592123011.2 +29.656495038250625 1592128992.2 +21.581979447638577 1592134973.3 +6.33149841320828 1592140954.3 +0.0 1592146935.4 +0.0 1592152916.5 +0.0 1592158897.5 +0.0 1592191461.8 +23.70163744454048 1592197446.4 +33.519170212556304 1592203431 +33.58882965319423 1592209415.7 +29.62166531793166 1592215400.3 +21.541200100797944 1592221384.9 +6.275142741913545 1592227369.6 +0.0 1592233354.2 +0.0 1592239338.8 +0.0 1592245323.5 +0.0 1592277858.7 +23.573349777496915 1592283846.3 +33.462814541261565 1592289833.9 +33.55399993287527 1592295821.5 +29.590512669023457 1592301809.1 +21.506370380478977 1592307796.7 +6.2343633950729105 1592313784.3 +0.0 1592319771.9 +0.0 1592325759.5 +0.0 1592331747.1 +0.0 1592364258.6 +23.466588061429114 1592370248.6 +33.416085567899266 1592376238.6 +33.52284728396707 1592382228.6 +29.565309646636923 1592388218.5 +21.481167358092442 1592394208.5 +6.205483301275618 1592400198.5 +0.0 1592406188.5 +0.0 1592412178.4 +0.0 1592418168.4 +0.0 1592450661.7 +23.390978994269513 1592456653.4 +33.3812558475803 1592462645.2 +33.5035938881022 1592468636.9 +29.549733322182824 1592474628.6 +21.465591033638344 1592480620.4 +6.180280278889084 1592486612.1 +0.0 1592492603.8 +0.0 1592498595.6 +0.0 1592504587.3 +0.0 1592537067.8 +23.334623322974778 1592543060.7 +33.36200245171544 1592549053.6 +33.4880175636481 1592555046.4 +29.54010662425039 1592561039.3 +21.453691780595 1592567032.2 +6.164703954434982 1592573025.1 +0.0 1592579018 +0.0 1592585010.9 +0.0 1592591003.8 +0.0 1592623476.9 +23.303470674066578 1592629470.3 +33.34642612726134 1592635463.8 +33.48206793712643 1592641457.2 +29.530479926317962 1592647450.7 +21.450014709184238 1592653444.1 +6.164703954434982 1592659437.5 +0.0 1592665431 +0.0 1592671424.4 +0.0 1592677417.9 +0.0 1592709889 +23.299793602655814 1592715882.4 +33.34642612726134 1592721875.8 +33.48206793712643 1592727869.2 +29.534156997728722 1592733862.6 +21.450014709184238 1592739855.9 +6.1683810258457425 1592745849.3 +0.0 1592751842.7 +0.0 1592757836.1 +0.0 1592763829.5 +0.0 1592796304.1 +23.315369927109916 1592802296.9 +33.35605282519377 1592808289.6 +33.4880175636481 1592814282.3 +29.54010662425039 1592820275 +21.459641407116674 1592826267.7 +6.183957350299845 1592832260.5 +0.0 1592838253.2 +0.0 1592844245.9 +0.0 1592850238.6 +0.0 1592882722.2 +23.35982634536131 1592888713.7 +33.37530622105863 1592894705.1 +33.5035938881022 1592900696.6 +29.555682948704494 1592906688 +21.481167358092442 1592912679.5 +6.209160372686378 1592918670.9 +0.0 1592924662.4 +0.0 1592930653.8 +0.0 1592936645.3 +0.0 1592969143.3 +23.425808714588477 1592975132.8 +33.40645886996683 1592981122.4 +33.52879691048874 1592987112 +29.57493634456936 1592993101.5 +21.506370380478977 1592999091.1 +6.24031302159458 1593005080.7 +0.0 1593011070.2 +0.0 1593017059.8 +0.0 1593023049.4 +0.0 1593055567.2 +23.516994106202176 1593061554.3 +33.44723821680746 1593067541.4 +33.553999932875264 1593073528.5 +29.60608899347756 1593079515.5 +21.535250474276275 1593085502.6 +6.287041994956885 1593091489.7 +0.0 1593097476.8 +0.0 1593103463.9 +0.0 1593109451 +0.0 1593141994 +23.635655075313313 1593147978 +33.5035938881022 1593153962 +33.5947792797159 1593159946 +29.634969087274854 1593165930 +21.576029821116908 1593171914 +6.341125111140711 1593177898 +0.0 1593183882 +0.0 1593189866 +0.0 1593195850 +0.0 1593228423.6 +23.77724651170008 1593234403.9 +33.569576257329366 1593240384.3 +33.63555862655654 1593246364.6 +29.675748434115487 1593252344.9 +21.622758794479207 1593258325.3 +6.403430408957117 1593264305.6 +0.0 1593270285.9 +0.0 1593276266.2 +0.0 1593282246.6 +0.0 1593314856 +23.940363899062614 1593320832.1 +33.64150825307821 1593326808.1 +33.6859646713296 1593332784.2 +29.722477407477793 1593338760.3 +21.673164839252273 1593344736.3 +6.479039476116713 1593350712.4 +0.0 1593356688.4 +0.0 1593362664.5 +0.0 1593368640.6 +0.0 1593401291.1 +24.128684308811682 1593407262.3 +33.72674401817024 1593413233.6 +33.7459974140351 1593419204.8 +29.778833078772525 1593425176 +21.73319758195777 1593431147.2 +6.560598169797982 1593437118.4 +0.0 1593443089.6 +0.0 1593449060.8 +0.0 1593455032 +0.0 1593487729 +24.342207740947284 1593493694.7 +33.823879036305605 1593499660.5 +33.80830271185151 1593505626.3 +29.835188750067264 1593511592 +21.805129577706605 1593517557.8 +6.65178356141168 1593523523.6 +0.0 1593529489.4 +0.0 1593535455.1 +0.0 1593541420.9 +0.0 1593574169.4 +24.574984568947745 1593580129.2 +33.9306407523734 1593586088.9 +33.880234707600344 1593592048.7 +29.901171119294432 1593598008.5 +21.877061573455443 1593603968.2 +6.752595650957809 1593609928 +0.0 1593615887.7 +0.0 1593621847.5 +0.0 1593627807.3 +0.0 1593660612.4 +24.82928734792398 1593666565.6 +34.04702916637364 1593672518.8 +33.9595208461707 1593678472 +29.97083055993236 1593684425.2 +21.958620267136713 1593690378.4 +6.86530699354728 1593696331.5 +0.0 1593702284.7 +0.0 1593708237.9 +0.0 1593714191.1 +0.0 1593747058 +25.108793149286747 1593753004 +34.1730442783063 1593758950.1 +34.04702916637364 1593764896.1 +30.052389253613626 1593770842.2 +22.049805658750408 1593776788.2 +6.981695407547513 1593782734.3 +0.0 1593788680.3 +0.0 1593794626.4 +0.0 1593800572.4 +0.0 1593833506 +25.40755234651438 1593839444.3 +34.310958643282305 1593845382.7 +34.13821455798734 1593851321.1 +30.13394794729489 1593857259.4 +22.14694067688578 1593863197.8 +7.113660146001846 1593869136.2 +0.0 1593875074.5 +0.0 1593881012.9 +0.0 1593886951.3 +0.0 1593919956.4 +25.733787121239445 1593925886.5 +34.458499706190736 1593931816.7 +34.23902664753347 1593937746.8 +30.22513333890859 1593943676.9 +22.24775276643191 1593949607.1 +7.25157451097785 1593955537.2 +0.0 1593961467.3 +0.0 1593967397.4 +0.0 1593973327.6 +0.0 1594006409.1 +26.073325665307713 1594012330.5 +34.611990395620836 1594018251.9 +34.345788363601265 1594024173.2 +30.32226835704396 1594030094.6 +22.358191553910473 1594036016 +7.399115573886284 1594041937.3 +0.0 1594047858.7 +0.0 1594053780.1 +0.0 1594059701.4 +0.0 1594092864.2 +26.43439016035175 1594098776.2 +34.77878485439413 1594104688.3 +34.458499706190736 1594110600.4 +30.42308044659009 1594116512.5 +22.470902896499943 1594122424.5 +7.55628333472715 1594128336.6 +0.0 1594134248.7 +0.0 1594140160.8 +0.0 1594146072.8 +0.0 1594179321.4 +26.814708051260645 1594185223.7 +34.95747856621077 1594191125.9 +34.57488812019097 1594197028.2 +30.535791789179562 1594202930.5 +22.599190563543512 1594208832.7 +7.719400722089685 1594214735 +0.0 1594220637.3 +0.0 1594226539.5 +0.0 1594232441.8 +0.0 1594265780.8 +27.216551893145322 1594271672.7 +35.139849349438165 1594277564.7 +34.703175787234535 1594283456.6 +30.646230576658123 1594289348.6 +22.72520567547618 1594295240.5 +7.8921448073846525 1594301132.5 +0.0 1594307024.5 +0.0 1594312916.4 +0.0 1594318808.4 +0.0 1594352242.2 +27.633972059484087 1594358123.4 +35.331846830597996 1594364004.5 +34.83514052568888 1594369885.7 +30.768568617180023 1594375766.8 +22.863120040452177 1594381648 +8.080465217133723 1594387529.1 +0.0 1594393410.3 +0.0 1594399291.4 +0.0 1594405172.6 +0.0 1594438705.7 +28.070645621687717 1594444575.5 +35.535743564801166 1594450445.4 +34.97673196207563 1594456315.2 +30.896856284223592 1594462185.1 +23.004711476838942 1594468054.9 +8.272462698293548 1594473924.8 +0.0 1594479794.7 +0.0 1594485664.5 +0.0 1594491534.4 +0.0 1594525171 +28.52289550834545 1594531029.1 +35.74926699693678 1594536887.2 +35.118323398462394 1594542745.3 +31.028821022677928 1594548603.4 +23.15592961115814 1594554461.5 +8.470409805975049 1594560319.6 +0.0 1594566177.7 +0.0 1594572035.8 +0.0 1594577893.9 +0.0 1594611638.3 +28.99667134597896 1594617484.2 +35.96874005559404 1594623330 +35.2718140878925 1594629175.9 +31.166735387653933 1594635021.8 +23.315369927109916 1594640867.6 +8.683933238110647 1594646713.5 +0.0 1594652559.4 +0.0 1594658405.2 +0.0 1594664251.1 +0.0 1594698107.3 +29.477801326433987 1594703940.5 +36.19556725707283 1594709773.7 +35.428981848733365 1594715606.9 +31.308326824040694 1594721440.1 +23.476214759361543 1594727273.3 +8.903406296767923 1594733106.5 +0.0 1594738939.6 +0.0 1594744772.8 +0.0 1594750606 +0.0 1594784578.1 +29.9827298129757 1594790398.2 +36.430616640184205 1594796218.3 +35.595776307506675 1594802038.3 +31.459544958359896 1594807858.4 +23.645281773245742 1594813678.5 +9.126556426835952 1594819498.5 +0.0 1594825318.6 +0.0 1594831138.7 +0.0 1594836958.7 +0.0 1594871050.6 +30.49501244233893 1594876857.1 +36.6730201661171 1594882663.6 +35.76484332139088 1594888470.1 +31.613035647789996 1594894276.6 +23.821702929951474 1594900083.1 +9.365282881358086 1594905889.7 +0.0 1594911696.2 +0.0 1594917502.7 +0.0 1594923309.2 +0.0 1594957524.6 +31.02287139615626 1594963317.1 +36.92732294509333 1594969109.7 +35.9412644780966 1594974902.2 +31.776153035152532 1594980694.8 +24.006346268289782 1594986487.3 +9.609958962401892 1594992279.9 +0.0 1594998072.4 +0.0 1595003865 +0.0 1595009657.5 +0.0 1595044000.1 +31.566306674427693 1595049778.3 +37.18757535059124 1595055556.5 +36.119958189913234 1595061334.7 +31.942947493925832 1595067112.9 +24.19466667803885 1595072891 +9.858312114856453 1595078669.2 +0.0 1595084447.4 +0.0 1595090225.6 +0.0 1595096003.8 +0.0 1595130477.1 +32.115691579220794 1595136240.5 +37.4515048274999 1595142004 +36.3082785996623 1595147767.4 +32.115691579220794 1595153530.8 +24.38666415919868 1595159294.2 +10.122241591765121 1595165057.6 +0.0 1595170821 +0.0 1595176584.4 +0.0 1595182347.9 +0.0 1595216955.5 +32.68432987987877 1595222703.8 +37.725061002341 1595228452 +36.50027608082213 1595234200.3 +32.28843566451576 1595239948.6 +24.590560893401847 1595245696.8 +10.392120695195455 1595251445.1 +0.0 1595257193.4 +0.0 1595262941.6 +0.0 1595268689.9 +0.0 1595303435.2 +33.258917807058396 1595309167.9 +38.00456680370377 1595314900.7 +36.70049574361454 1595320633.4 +32.476756074264834 1595326366.2 +24.79813469901578 1595332098.9 +10.671626496558222 1595337831.7 +0.0 1595343564.4 +0.0 1595349297.2 +0.0 1595355029.9 +0.0 1595389916.1 +33.84313243217047 1595395633 +38.2900222315882 1595401349.9 +36.9021199227068 1595407066.8 +32.65912685749223 1595412783.6 +25.011658131151382 1595418500.5 +10.957081924442662 1595424217.4 +0.0 1595429934.2 +0.0 1595435651.1 +0.0 1595441368 +0.0 1595476398.3 +34.43924631032587 1595482098.9 +38.58510435740507 1595487799.6 +37.111966283431634 1595493500.2 +32.85339689376297 1595499200.9 +25.23113118980865 1595504901.5 +11.246214423737861 1595510602.2 +0.0 1595516302.8 +0.0 1595522003.5 +0.0 1595527704.1 +0.0 1595562881.5 +35.0427143313028 1595568565.6 +38.88386355463271 1595574249.7 +37.32916678697799 1595579933.8 +33.05502107285523 1595585617.9 +25.45428131987668 1595591302 +11.55092324748716 1595596986 +0.0 1595602670.1 +0.0 1595608354.2 +0.0 1595614038.3 +0.0 1595649365.8 +35.65213197880141 1595655033 +39.188572378382005 1595660700.2 +37.54863984563527 1595666367.4 +33.258917807058396 1595672034.6 +25.687058147877146 1595677701.8 +11.85563207123646 1595683369 +0.0 1595689036.2 +0.0 1595694703.4 +0.0 1595700370.6 +0.0 1595735851.2 +36.267499252821665 1595741501.2 +39.499230828652976 1595747151.2 +37.7717899757033 1595752801.2 +33.46649161267233 1595758451.2 +25.922107530988516 1595764101.2 +12.175917219439862 1595769751.2 +0.0 1595775401.2 +0.0 1595781051.2 +0.0 1595786701.2 +0.0 1595822337.4 +36.89249322477437 1595827969.9 +39.81356635033471 1595833602.4 +38.000889732293004 1595839234.9 +33.68001504480794 1595844867.4 +26.164511056921413 1595850499.9 +12.499879439054023 1595856132.4 +0.0 1595861764.9 +0.0 1595867397.4 +0.0 1595873029.9 +0.0 1595908824.6 +37.52343682324874 1595914439.3 +40.13385149853811 1595920054 +38.233666560293464 1595925668.7 +33.89948810346521 1595931283.4 +26.415136764486892 1595936898.1 +12.832063840300766 1595942512.8 +0.0 1595948127.5 +0.0 1595953742.2 +0.0 1595959356.9 +0.0 1595995312.5 +38.158057493133875 1596000909.2 +40.46008627326318 1596006505.8 +38.4723930148156 1596012102.4 +34.12263823353324 1596017699 +26.669439543463128 1596023295.7 +13.171602384369024 1596028892.3 +0.0 1596034488.9 +0.0 1596040085.5 +0.0 1596045682.2 +0.0 1596081801.3 +38.792678163019005 1596087379.6 +40.789998119399016 1596092957.8 +38.717069095859415 1596098536.1 +34.35173799012294 1596104114.4 +26.927419393850126 1596109692.7 +13.52304018148063 1596115270.9 +0.0 1596120849.2 +0.0 1596126427.5 +0.0 1596132005.8 +0.0 1596168290.8 +39.43919808594748 1596173850.4 +41.119909965534845 1596179410.1 +38.96542224831397 1596184969.8 +34.58083774671264 1596190529.4 +27.19134887075879 1596196089.1 +13.872205423481324 1596201648.8 +0.0 1596207208.4 +0.0 1596212768.1 +0.0 1596218327.8 +0.0 1596254780.9 +40.07976838235428 1596260321.7 +41.46172106471402 1596265862.5 +39.21972502729021 1596271403.3 +34.81956420123477 1596276944.1 +27.461227974189125 1596282484.9 +14.23921954504703 1596288025.7 +0.0 1596293566.5 +0.0 1596299107.3 +0.0 1596304648.2 +0.0 1596341271.7 +40.72996537669352 1596346793.4 +41.80125960878228 1596352315.1 +39.47402780626644 1596357836.8 +35.0582906557569 1596363358.5 +27.734784149030226 1596368880.2 +14.603961111501826 1596374401.9 +0.0 1596379923.6 +0.0 1596385445.3 +0.0 1596390967 +21.296524019754134 1596427763 +41.37421274451108 1596433265.4 +42.14674777937221 1596438767.8 +39.737957283175106 1596444270.1 +35.30664380821146 1596449772.5 +28.014289950392982 1596455274.9 +14.980601930999963 1596460777.2 +0.0 1596466279.6 +0.0 1596471782 +0.0 1596477284.4 +18.68978641587553 1596514254.9 +42.02440973885031 1596519737.7 +42.49818557648382 1596525220.5 +40.00188676008378 1596530703.3 +35.55726951577694 1596536186.1 +28.29974537827742 1596541669 +15.366869448430528 1596547151.8 +0.0 1596552634.6 +0.0 1596558117.4 +0.0 1596563600.2 +26.37435741764626 1596600747.2 +42.670929661778786 1596606210.3 +42.853300445006184 1596611673.3 +40.27176586351411 1596617136.4 +35.81524936616395 1596622599.4 +28.594827504094287 1596628062.5 +15.759086592382769 1596633525.5 +0.0 1596638988.6 +0.0 1596644451.6 +0.0 1596649914.7 +29.914474888637624 1596687240 +43.32112665611802 1596692683.1 +43.20841531352855 1596698126.2 +40.541644966944446 1596703569.3 +36.07550177166184 1596709012.4 +28.88990962991116 1596714455.4 +16.154980807745766 1596719898.5 +0.0 1596725341.6 +0.0 1596730784.7 +0.0 1596736227.7 +34.48370272857726 1596773733.3 +43.96537402393558 1596779156.2 +43.56947980857258 1596784579.1 +40.82115076830721 1596790002 +36.333481622048836 1596795424.9 +29.188668827138788 1596800847.8 +16.556824649630435 1596806270.7 +0.0 1596811693.6 +0.0 1596817116.5 +0.0 1596822539.4 +35.9279607087534 1596860226.9 +44.61189394686406 1596865629.4 +43.93054430361662 1596871032 +41.10065656966998 1596876434.5 +36.60336072547917 1596881837.1 +29.493377650888092 1596887239.6 +16.968295189447534 1596892642.2 +0.0 1596898044.7 +0.0 1596903447.3 +0.0 1596908849.8 +42.105968432531576 1596946720.8 +45.25246424327085 1596952102.8 +44.29755842518233 1596957484.8 +41.38383944244351 1596962866.8 +36.87691690032027 1596968248.8 +29.80403610115906 1596973630.9 +17.383442800675397 1596979012.9 +0.0 1596984394.9 +0.0 1596989776.9 +0.0 1596995158.9 +40.58242431378508 1597033215 +45.89303453967765 1597038576.3 +44.66229999163712 1597043937.6 +41.669294870327946 1597049298.9 +37.15274563027227 1597054660.2 +30.118371622840794 1597060021.6 +17.810489664946598 1597065382.9 +0.0 1597070744.2 +0.0 1597076105.5 +0.0 1597081466.8 +44.48955590634216 1597119709.5 +46.52765520956279 1597125049.9 +45.03299118461358 1597130390.4 +41.958427369623145 1597135730.8 +37.43225143163504 1597141071.3 +30.43865677104419 1597146411.7 +18.2375365292178 1597151752.1 +0.0 1597157092.6 +0.0 1597162433 +0.0 1597167773.5 +46.2073700613594 1597206204.2 +47.162275879447925 1597211523.7 +45.403682377590044 1597216843.1 +42.253509495440014 1597222162.5 +37.71175723299781 1597227481.9 +30.764891545769263 1597232801.3 +18.674210091421433 1597238120.7 +0.0 1597243440.1 +0.0 1597248759.5 +0.0 1597254079 +47.52929000101362 1597292699.2 +47.787269851400616 1597297997.4 +45.780323197088194 1597303295.7 +42.55454124777856 1597308593.9 +38.000889732293004 1597313892.1 +31.088853765383426 1597319190.4 +19.116833280146736 1597324488.6 +0.0 1597329786.9 +0.0 1597335085.1 +0.0 1597340383.3 +48.82373436317042 1597379194.3 +48.412263823353314 1597384471.2 +46.15101439006465 1597389748.2 +42.853300445006184 1597395025.1 +38.2900222315882 1597400302 +31.42471523804093 1597405578.9 +19.56540609539371 1597410855.8 +0.0 1597416132.8 +0.0 1597421409.7 +0.0 1597426686.6 +50.098925329462354 1597465689.6 +49.027631097373586 1597470945.1 +46.53133228097355 1597476200.6 +43.158009268755485 1597481456 +38.58510435740507 1597486711.5 +31.760576710698427 1597491967 +20.021333053462204 1597497222.4 +0.0 1597502477.9 +0.0 1597507733.4 +0.0 1597512988.8 +51.354862899889426 1597552185.1 +49.64299837139386 1597557418.9 +46.907973100471686 1597562652.8 +43.45904102109402 1597567886.7 +38.88386355463271 1597573120.6 +32.10011525476669 1597578354.5 +20.479532566641605 1597583588.4 +0.0 1597588822.2 +0.0 1597594056.1 +0.0 1597599290 +52.58927451934073 1597638680.6 +50.252416018892454 1597643892.8 +47.28461391996983 1597649105 +43.76742691625409 1597654317.1 +39.18489530697124 1597659529.3 +32.44560342535663 1597664741.5 +20.947358777753443 1597669953.7 +0.0 1597675165.9 +0.0 1597680378 +0.0 1597685590.2 +53.80443274292717 1597725176.3 +50.852206968458624 1597730366.6 +47.66493181087872 1597735557 +44.07808536652506 1597740747.3 +39.489604130720544 1597745937.7 +32.79704122246823 1597751128 +21.418862060276037 1597756318.4 +0.0 1597761508.7 +0.0 1597766699.1 +0.0 1597771889.4 +54.99806501553783 1597811672 +51.446048291503125 1597816840.4 +48.04752225689853 1597822008.9 +44.392420888206786 1597827177.3 +39.794312954469845 1597832345.7 +33.14847901957984 1597837514.1 +21.896314969320304 1597842682.5 +0.0 1597847850.9 +0.0 1597853019.4 +0.0 1597858187.8 +56.16649426576197 1597898167.8 +52.03621254313686 1597903314.2 +48.427840147807416 1597908460.6 +44.709028964999426 1597913607 +40.10497140474081 1597918753.3 +33.507270959512965 1597923899.7 +22.379717504886244 1597929046.1 +0.172744085294967 1597934192.5 +0.0 1597939338.8 +0.0 1597944485.2 +57.32161974664292 1597984663.7 +52.62042716824893 1597989787.9 +48.814107665237984 1597994912.1 +45.02931411320282 1598000036.4 +40.41930692642254 1598005160.6 +33.868335454557005 1598010284.8 +22.86679711186294 1598015409.1 +0.9008227019047084 1598020533.3 +0.0 1598025657.5 +0.0 1598030781.8 +58.45889634795884 1598071159.6 +53.195015095428566 1598076261.6 +49.19442555614689 1598081363.6 +45.34732670629531 1598086465.6 +40.73959207462595 1598091567.6 +34.23534957612271 1598096669.6 +23.35982634536131 1598101771.6 +1.6422050878576413 1598106873.5 +0.0 1598111975.5 +0.0 1598117077.5 +59.576919553409915 1598157655.5 +53.76365339608654 1598162735.2 +49.58069307357746 1598167814.8 +45.67356148102039 1598172894.5 +41.05987722282935 1598177974.2 +34.6000911425775 1598183053.8 +23.858805205381348 1598188133.5 +2.3895371003322445 1598193213.2 +0.0 1598198292.8 +0.0 1598203372.5 +60.67936643440688 1598244151.4 +54.32266499881207 1598249208.7 +49.96328351959726 1598254265.9 +45.99979625574546 1598259323.2 +41.380162371032746 1598264380.5 +34.97078233555396 1598269437.7 +24.361461136812146 1598274495 +3.1501728821500383 1598279552.2 +0.0 1598284609.5 +0.0 1598289666.7 +61.76623699094974 1598330647.4 +54.881676601537606 1598335682.2 +50.34955103702782 1598340716.9 +46.32375847535962 1598345751.7 +41.70412459064691 1598350786.4 +35.34742315505209 1598355821.2 +24.864117068242948 1598360855.9 +3.922707917011175 1598365890.7 +0.0 1598370925.4 +0.0 1598375960.2 +62.833854151627754 1598417143.3 +55.42511187980903 1598422155.5 +50.72986892793672 1598427167.7 +46.653670321495454 1598432179.9 +42.03403643678274 1598437192.1 +35.73001360107192 1598442204.3 +25.378672252717084 1598447216.4 +4.70486964980474 1598452228.6 +0.0 1598457240.8 +0.0 1598462253 +63.88589498785166 1598503639.3 +55.96854715808047 1598508628.8 +51.116136445367296 1598513618.4 +46.98358216763129 1598518607.9 +42.366220838029484 1598523597.4 +36.1103314919808 1598528587 +25.896904508601985 1598533576.5 +5.498930635641648 1598538566 +0.0 1598543555.6 +0.0 1598548545.1 +64.92830912614312 1598590135.2 +56.502355738419475 1598595102 +51.502403962797864 1598600068.9 +47.315766568878026 1598605035.7 +42.69613268416532 1598610002.5 +36.49659900941137 1598614969.3 +26.415136764486892 1598619936.1 +6.300345764300077 1598624903 +0.0 1598629869.8 +0.0 1598634836.6 +65.94324768693717 1598676631.2 +57.02653762082605 1598681575.2 +51.88272185370676 1598686519.2 +47.64935548642462 1598691463.3 +43.03199415682282 1598696407.3 +36.88286652684194 1598701351.3 +26.942995718304225 1598706295.4 +7.119609772523517 1598711239.4 +0.0 1598716183.4 +0.0 1598721127.5 +66.93893285186633 1598763127.1 +57.544769876710944 1598768048.3 +52.26531229972657 1598772969.4 +47.98521695908213 1598777890.6 +43.37153270089109 1598782811.8 +37.27281111568326 1598787733 +27.47085467212155 1598792654.2 +7.9425508521577175 1598797575.4 +0.0 1598802496.6 +0.0 1598807417.8 +67.9057379229982 1598849623 +58.05337543466342 1598854521.2 +52.645630190635465 1598859419.5 +48.327028058261284 1598864317.8 +43.711071244959356 1598869216.1 +37.670977886157175 1598874114.4 +28.00466325246055 1598879012.7 +8.775118629724348 1598883911 +0.0 1598888809.3 +0.0 1598893707.6 +68.84139034522187 1598936118.8 +58.55603136609421 1598940994.2 +53.03189770806604 1598945869.5 +48.66061697580788 1598950744.8 +44.05655941554929 1598955620.2 +38.066872101520175 1598960495.5 +28.538471832799555 1598965370.8 +9.613636033812652 1598970246.2 +0.0 1598975121.5 +0.0 1598979996.8 +69.73994049201566 1599022614.7 +59.05273767100334 1599027467 +53.41221559897493 1599032319.3 +49.00242807498705 1599037171.7 +44.398370514728455 1599042024 +38.46871594340484 1599046876.3 +29.08190711107099 1599051728.6 +10.467729762355054 1599056581 +0.0 1599061433.3 +0.0 1599066285.6 +70.59403422055807 1599109110.5 +59.54208983309095 1599113939.8 +53.78885641847307 1599118769.1 +49.34196661905532 1599123598.3 +44.74980831184006 1599128427.6 +38.86828723017861 1599133256.9 +29.62534238934242 1599138086.1 +11.327773117419127 1599142915.4 +0.0 1599147744.7 +0.0 1599152573.9 +71.40734860225983 1599195606.4 +60.02321981354598 1599200412.5 +54.169174309381965 1599205218.7 +49.68377771823449 1599210024.9 +45.09529648242999 1599214831 +39.27608069858495 1599219637.2 +30.174727294135522 1599224443.3 +12.195170615304724 1599229249.5 +0.0 1599234055.7 +0.0 1599238861.8 +72.1739340105993 1599282102.2 +60.49699565117949 1599286885.2 +54.55176475540177 1599291668.2 +50.029265888824426 1599296451.2 +45.444461724430674 1599301234.3 +39.681601611880374 1599306017.3 +30.724112198928626 1599310800.3 +13.070790294822901 1599315583.3 +0.0 1599320366.3 +0.0 1599325149.4 +72.89606300068738 1599368598 +60.964821862291316 1599373357.8 +54.926133019789006 1599378117.7 +50.37475405941436 1599382877.5 +45.79957659295305 1599387637.3 +40.09307215169747 1599392397.2 +31.277174175132494 1599397157 +13.950087045751832 1599401916.8 +0.0 1599406676.7 +0.0 1599411436.5 +73.57146301741315 1599455093.8 +61.42074882035981 1599459830.4 +55.30277383928713 1599464567 +50.72024223000429 1599469303.6 +46.15696401658632 1599474040.2 +40.50454269151457 1599478776.8 +31.836185777858027 1599483513.5 +14.839010494613198 1599488250.1 +0.0 1599492986.7 +0.0 1599497723.3 +74.21203331381994 1599541589.6 +61.87299870701756 1599546303 +55.67941465878528 1599551016.3 +51.06573040059423 1599555729.7 +46.51207888510869 1599560443 +40.91828578644258 1599565156.4 +32.39519738058356 1599569869.7 +15.737560641406995 1599574583.1 +0.0 1599579296.4 +0.0 1599584009.8 +74.81182426338611 1599628085.5 +62.32157152226453 1599632775.5 +56.05010585176174 1599637465.6 +51.41121857118416 1599642155.6 +46.86719375363106 1599646845.7 +41.33343339767044 1599651535.7 +32.9542089833091 1599656225.8 +16.63838334331171 1599660915.9 +0.0 1599665605.9 +0.0 1599670296 +75.37451293752241 1599714581.3 +62.75824508446816 1599719248 +56.42674667125987 1599723914.8 +51.756706741774096 1599728581.5 +47.22825824867509 1599733248.3 +41.75085356400922 1599737915 +33.519170212556304 1599742581.7 +17.546560188037933 1599747248.5 +0.0 1599751915.2 +0.0 1599756581.9 +75.89869481992896 1599801077.2 +63.18896902015012 1599805720.6 +56.79743786423634 1599810364 +52.10587198377479 1599815007.3 +47.58932274371912 1599819650.7 +42.17195080175874 1599824294.1 +34.08185888669261 1599828937.5 +18.457009587875067 1599833580.9 +0.0 1599838224.3 +0.0 1599842867.7 +76.39767367994902 1599887573.1 +63.61233881301056 1599892193.1 +57.16812905721281 1599896813.1 +52.45136015436473 1599901433.1 +47.950387238763156 1599906053.1 +42.59304803950828 1599910673.1 +34.65049718735056 1599915293.2 +19.37708568564464 1599919913.2 +0.0 1599924533.2 +0.0 1599929153.2 +76.86549989106085 1599974069.1 +64.03343605076009 1599978665.7 +57.532870623667606 1599983262.3 +52.80279795147633 1599987858.9 +48.315128805217945 1599992455.5 +43.02009490377948 1599997052.1 +35.22140804311943 1600001648.7 +20.297161783414207 1600006245.3 +0.0 1600010841.9 +0.0 1600015438.5 +77.30217345326449 1600060565.1 +64.44490659057719 1600065138.2 +57.89988474523331 1600069711.4 +53.15423574858793 1600074284.6 +48.676193300261986 1600078857.8 +43.44346469663992 1600083431 +35.79599597029908 1600088004.2 +21.22091495259454 1600092577.4 +0.0 1600097150.6 +0.0 1600101723.8 +77.71732106449234 1600147061.1 +64.85042750387264 1600151610.9 +58.264626311688104 1600156160.6 +53.49972391917786 1600160710.4 +49.043207421827695 1600165260.1 +43.870511560911126 1600169809.9 +36.3683113423678 1600174359.6 +22.14694067688578 1600178909.4 +0.0 1600183459.1 +0.0 1600188008.8 +78.10953820844459 1600233557.3 +65.24859427434653 1600238083.6 +58.62569080673214 1600242609.8 +53.84888916117857 1600247136.1 +49.413898614804154 1600251662.4 +44.29755842518233 1600256188.7 +36.94289926954743 1600260715 +23.07664347258778 1600265241.3 +0.0 1600269767.6 +0.0 1600274293.9 +78.48022940142106 1600320053.5 +65.63853886318786 1600324556.3 +58.99270492829785 1600329059.1 +54.20032695829017 1600333561.9 +49.77864018125895 1600338064.7 +44.72828236086429 1600342567.6 +37.51748719672707 1600347070.4 +24.010023339700545 1600351573.2 +0.0 1600356076 +0.0 1600360578.8 +78.82571757201099 1600406549.8 +66.02480638061844 1600411029.1 +59.34781979682021 1600415508.5 +54.55176475540177 1600419987.8 +50.149331374235416 1600424467.1 +45.16127885165715 1600428946.4 +38.09207512390671 1600433425.7 +24.939726135402545 1600437905.1 +0.0 1600442384.4 +0.0 1600446863.7 +79.1615790446685 1600493046.2 +66.40739682663823 1600497502.1 +59.70888429186425 1600501957.9 +54.90092999740247 1600506413.7 +50.51634549580112 1600510869.5 +45.59200278733912 1600515325.3 +38.67034012249711 1600519781.2 +25.87537855762621 1600524237 +0.0 1600528692.8 +0.0 1600533148.6 +79.47591456635023 1600579542.8 +66.78176509102546 1600583975.1 +60.06399916038662 1600588407.4 +55.246418167992395 1600592839.7 +50.887036688777584 1600597272 +46.02499927813199 1600601704.3 +39.24492804967674 1600606136.6 +26.811030979849882 1600610568.9 +0.0 1600615001.2 +0.0 1600619433.5 +79.77694631868876 1600666039.4 +67.15245628400193 1600670448.2 +60.41543695749822 1600674857 +55.597855965104 1600679265.8 +51.25772788175406 1600683674.6 +46.45572321381395 1600688083.4 +39.82546560337805 1600692492.1 +27.740733775551895 1600696900.9 +0.0 1600701309.7 +0.0 1600705718.5 +80.06607881798396 1600752536.2 +67.51352077904596 1600756921.5 +60.77055182602057 1600761306.7 +55.9492937622156 1600765692 +51.62841907473052 1600770077.3 +46.892396776017584 1600774462.5 +40.40373060196844 1600778847.8 +28.676386197775557 1600783233 +0.0 1600787618.3 +0.0 1600792003.6 +80.3359579214143 1600839033.2 +67.87090820267923 1600843394.9 +61.121989623132194 1600847756.6 +56.298459004216305 1600852118.4 +51.999110267706996 1600856480.1 +47.32539326681046 1600860841.8 +40.97831852914808 1600865203.5 +29.60608899347756 1600869565.3 +1.3374962641083414 1600873927 +0.0 1600878288.7 +80.59988739832296 1600925530.3 +68.22007344467993 1600929868.5 +61.46747779372211 1600934206.7 +56.643947174806236 1600938544.8 +52.375751087205124 1600942883 +47.76206682901409 1600947221.2 +41.556583527738475 1600951559.4 +30.535791789179562 1600955897.6 +3.3540696163532084 1600960235.8 +0.0 1600964574 +80.84824055077752 1601012027.6 +68.56556161526987 1601016342.2 +61.81296596431205 1601020656.9 +56.99538497191785 1601024971.5 +52.7464422801816 1601029286.2 +48.195063319806955 1601033600.8 +42.13712108143978 1601037915.5 +31.46549458488156 1601042230.1 +5.376592595119745 1601046544.8 +0.0 1601050859.4 +81.08696700529966 1601098525 +68.90737271444902 1601102816.1 +62.15845413490198 1601107107.2 +57.34087314250778 1601111398.4 +53.11713347315806 1601115689.5 +48.631736882010586 1601119980.6 +42.71170900861942 1601124271.7 +32.38557068265113 1601128562.8 +7.393165947364613 1601132853.9 +0.0 1601137145.1 +81.31606676188936 1601185022.7 +69.24691125851729 1601189290.2 +62.497992678970256 1601193557.8 +57.68636131309771 1601197825.4 +53.490097221245435 1601202093 +49.06841044421422 1601206360.6 +43.289974007209814 1601210628.2 +33.3056467804207 1601214895.7 +9.40011260167705 1601219163.3 +0.0 1601223430.9 +81.5392168919574 1601271520.5 +69.57314603324237 1601275764.6 +62.839803778149424 1601280008.6 +58.031849483687644 1601284252.7 +53.86446548563267 1601288496.7 +49.50508400641786 1601292740.8 +43.864561934389464 1601296984.8 +34.219773251668606 1601301228.9 +11.387805860124624 1601305472.9 +0.0 1601309717 +81.74679069757133 1601358018.6 +69.89710825285654 1601362239.1 +63.17566525080693 1601366459.6 +58.377337654277575 1601370680.2 +54.23515667860913 1601374900.7 +49.938080497210734 1601379121.2 +44.43914986156909 1601383341.7 +35.13389972291649 1601387562.3 +13.350296096185664 1601391782.8 +0.0 1601396003.3 +81.9506874317745 1601444516.8 +70.21739340105992 1601448713.9 +63.50925416835352 1601452910.9 +58.72282582486751 1601457107.9 +54.60812042669651 1601461304.9 +50.37475405941436 1601465501.9 +45.00778816222705 1601469698.9 +36.03839949623197 1601473896 +15.285310754749261 1601478093 +0.0 1601482290 +82.148634539456 1601531015.4 +70.53172892274166 1601535188.9 +63.84511564101102 1601539362.4 +59.068313995457444 1601543535.9 +54.98248869108374 1601547709.4 +50.811427621617995 1601551882.9 +45.58237608940669 1601556056.4 +36.93922219813667 1601560230 +17.191445319515566 1601564403.5 +0.0 1601568577 +82.33695494920507 1601617514.1 +70.84238737301264 1601621664.1 +64.17502748714685 1601625814.2 +59.41012509463662 1601629964.2 +55.3531798840602 1601634114.2 +51.242151557299955 1601638264.2 +46.15101439006465 1601642414.3 +37.8318227184088 1601646564.3 +19.066427235373673 1601650714.3 +0.0 1601654864.3 +82.51932573243246 1601704013.1 +71.14709619676194 1601708139.7 +64.50126226187193 1601712266.2 +59.74966363870488 1601716392.8 +55.72387107703667 1601720519.3 +51.6810976746145 1601724645.9 +46.715975619311855 1601728772.4 +38.723018722381084 1601732899 +20.90657943091281 1601737025.5 +0.0 1601741152 +82.6980194442491 1601790512.4 +71.45180502051123 1601794615.5 +64.82522448148609 1601798718.6 +60.095151809294826 1601802821.7 +56.09683482512404 1601806924.7 +52.11182161029646 1601811027.8 +47.28461391996983 1601815130.9 +39.60004291819911 1601819234 +22.715578977543746 1601823337.1 +0.0 1601827440.2 +82.8648139030224 1601877011.9 +71.74688714632809 1601881091.6 +65.15145925621115 1601885171.2 +60.43101328195232 1601889250.9 +56.46752601810051 1601893330.5 +52.544818101089334 1601897410.2 +47.843625522695355 1601901489.8 +40.475662597717275 1601905569.5 +24.483799177334046 1601909649.1 +0.0 1601913728.8 +83.02793129038494 1601963511.7 +72.0360196456233 1601967568 +65.47174440441457 1601971624.2 +60.77055182602057 1601975680.4 +56.83821721107698 1601979736.7 +52.9755420367713 1601983792.9 +48.40858675194256 1601987849.1 +41.33938302419212 1601991905.4 +26.220866728216148 1601995961.6 +0.0 1602000017.8 +83.19104867774747 1602050011.8 +72.32147507350774 1602054044.7 +65.7860799260963 1602058077.5 +61.10641329867809 1602062110.4 +57.20295877753178 1602066143.2 +53.40853852756417 1602070176 +48.96532579955719 1602074208.9 +42.19715382414528 1602078241.7 +27.923104558779283 1602082274.6 +0.0 1602086307.4 +83.34226681206667 1602136512.2 +72.60693050139217 1602140521.7 +66.10268800288894 1602144531.2 +61.442274771335576 1602148540.6 +57.57364997050824 1602152550.1 +53.83926246324613 1602156559.6 +49.520660330871955 1602160569.1 +43.045297926166015 1602164578.5 +29.590512669023457 1602168588 +0.0 1602172597.5 +83.49575750149677 1602223012.9 +72.88643630275494 1602226999 +66.41702352457067 1602230985.2 +61.77813624399308 1602234971.3 +57.940664092073945 1602238957.5 +54.266309327517334 1602242943.6 +50.070045235665056 1602246929.7 +43.88381533025432 1602250915.9 +31.226768130359428 1602254902 +0.0 1602258888.2 +83.63734893788354 1602309513.9 +73.15999247759605 1602313476.7 +66.72768197484164 1602317439.5 +62.10804809012891 1602321402.4 +58.30540565852874 1602325365.2 +54.69335619178854 1602329328.1 +50.61715758534726 1602333290.9 +44.71270603641018 1602337253.7 +32.828193871376435 1602341216.6 +0.0 1602345179.4 +83.78121292938121 1602396015.1 +73.42987158102638 1602399954.7 +67.03239079859092 1602403894.3 +62.43795993626476 1602407833.9 +58.666470153572774 1602411773.4 +55.120403056059736 1602415713 +51.16654249014036 1602419652.6 +45.53197004463362 1602423592.2 +34.398466963485234 1602427531.7 +0.0 1602431471.3 +83.91685473924629 1602482516.7 +73.69380105793505 1602486433 +67.33709962234022 1602490349.4 +62.76787178240059 1602494265.7 +59.03348427513848 1602498182.1 +55.541500293809264 1602502098.5 +51.706300697001026 1602506014.8 +46.34528442633539 1602509931.2 +35.931637780164166 1602513847.5 +0.0 1602517763.9 +84.04881947770063 1602569018.6 +73.95178090832205 1602572911.7 +67.63585881956786 1602576804.9 +63.097783628536426 1602580698.1 +59.39454877018252 1602584591.2 +55.964870086669706 1602588484.4 +52.243786348750795 1602592377.6 +47.14302248358306 1602596270.8 +37.43225143163504 1602600163.9 +0.0 1602604057.1 +84.17710714474421 1602655520.8 +74.21203331381994 1602659390.8 +67.9368905719064 1602663260.8 +63.42401840326149 1602667130.9 +59.75561326522655 1602671000.9 +56.38596732441924 1602674870.9 +52.777594929089794 1602678741 +47.934810914309054 1602682611 +38.905389505608476 1602686481 +0.0 1602690351 +84.30312225667687 1602742023.3 +74.46038646627451 1602745870.2 +68.23564976913401 1602749717.1 +63.74430355146489 1602753564.1 +60.11072813374892 1602757411 +56.80338749075801 1602761258 +53.3114035094288 1602765104.9 +48.713295575691866 1602768951.9 +40.343697859262946 1602772798.8 +0.0 1602776645.8 +84.42546029719877 1602828526.1 +74.70873961872908 1602832350 +68.52478226842923 1602836173.9 +64.06826577107906 1602839997.8 +60.471792628792954 1602843821.7 +57.21853510198587 1602847645.6 +53.835585391835366 1602851469.5 +49.479880984031325 1602855293.4 +41.74490393748755 1602859117.4 +0.0 1602862941.3 +84.541848711199 1602915029.1 +74.95341569977288 1602918830.1 +68.81618732283533 1602922631 +64.38487384787169 1602926432 +60.82690749731532 1602930232.9 +57.630005641802974 1602934033.8 +54.35749471913103 1602937834.8 +50.23683969443836 1602941635.7 +43.11722992191485 1602945436.7 +0.0 1602949237.6 +84.66050968031013 1603001532.5 +75.19809178081668 1603005310.6 +69.10531982213053 1603009088.6 +64.7051589960751 1603012866.6 +61.178345294426926 1603016644.6 +58.041476181620084 1603020422.7 +54.87204990360517 1603024200.7 +50.98417170691296 1603027978.7 +44.45840325743396 1603031756.7 +0.0 1603035534.8 +84.7709484677887 1603088036.2 +75.43086860881715 1603091791.4 +69.38850269490406 1603095546.6 +65.01949451775683 1603099301.8 +61.52751053642761 1603103056.9 +58.44926965002641 1603106812.1 +55.3843325329684 1603110567.3 +51.71592739493346 1603114322.5 +45.764746872634085 1603118077.7 +0.0 1603121832.8 +84.88365981037816 1603174540.2 +75.66591799192852 1603178272.6 +69.66800849626684 1603182005 +65.33015296802779 1603185737.4 +61.87894833353923 1603189469.8 +58.85479056332184 1603193202.2 +55.89293809092087 1603196934.6 +52.43805638502153 1603200667 +47.03626076751526 1603204399.4 +0.0 1603208131.8 +84.99042152644597 1603261044.4 +75.89274519340732 1603264754.1 +69.9475142976296 1603268463.9 +65.63853886318786 1603272173.6 +62.22443650412916 1603275883.3 +59.25663440520651 1603279593 +56.39559402235167 1603283302.7 +53.14828612206626 1603287012.4 +48.274349458377316 1603290722.1 +1.3063436152001384 1603294431.8 +85.09123361599211 1603347548.9 +76.12184494999701 1603351236 +70.22334302758159 1603354923.1 +65.94919731345884 1603358610.2 +62.56992467471909 1603362297.3 +59.65847824709118 1603365984.4 +56.89457288237171 1603369671.5 +53.845212089767806 1603373358.6 +49.479880984031325 1603377045.7 +1.3782756109489758 1603380732.8 +85.19204570553823 1603434053.7 +76.34131800865428 1603437718.3 +70.49689920242271 1603441382.8 +66.25390613720813 1603445047.4 +62.90946321878735 1603448711.9 +60.05437246245419 1603452376.5 +57.38760211587008 1603456041.1 +54.53618843094767 1603459705.6 +50.654259860777124 1603463370.2 +0.0 1603467034.7 +85.29513035019527 1603520558.7 +76.55851851220064 1603524200.8 +70.76677830585304 1603527843 +66.55493788954666 1603531485.1 +63.24532469144485 1603535127.2 +60.44658960640642 1603538769.3 +57.87468172284678 1603542411.4 +55.205638821151766 1603546053.6 +51.79153646209306 1603549695.7 +0.0 1603553337.8 +85.38631574180897 1603607064 +76.77204194433624 1603610683.7 +71.03070778276171 1603614303.5 +66.85369708677429 1603617923.3 +63.587135790624025 1603621543.1 +60.83653419524775 1603625162.8 +58.35213463189104 1603628782.6 +55.86773506853434 1603632402.4 +52.8999329696117 1603636022.2 +45.77069649915576 1603639642 +85.48345075994433 1603693569.4 +76.98556537647185 1603697166.9 +71.29463725967037 1603700764.5 +67.15245628400193 1603704362 +63.917047636759854 1603707959.6 +61.22280171267832 1603711557.1 +58.82958754093531 1603715154.6 +56.51793206287358 1603718752.2 +53.9675501302897 1603722349.7 +50.648310234255455 1603725947.3 +85.57463615155804 1603780075 +77.18946211067501 1603783650.4 +71.55488966516826 1603787225.9 +67.44753840981879 1603790801.3 +64.24695948289569 1603794376.7 +61.605392158698116 1603797952.1 +59.29741375204715 1603801527.5 +57.15850235928038 1603805102.9 +55.0040146420595 1603808678.3 +51.66919842157115 1603812253.7 +85.66582154317175 1603866580.8 +77.3933588448782 1603870134.2 +71.8091924441445 1603873687.6 +67.7389434642249 1603877241 +64.57687132903152 1603880794.4 +61.98571004960703 1603884347.8 +59.75929033663731 1603887901.3 +57.783496331233074 1603891454.7 +56.009326504921106 1603895008.1 +54.60217080017484 1603898561.5 +85.75105730826377 1603953086.8 +77.59498302397046 1603956618.3 +72.06122266800983 1603960149.8 +68.0280759635201 1603963681.3 +64.9031061037566 1603967212.9 +62.35640124258349 1603970744.4 +60.217489849816715 1603974275.9 +58.39291397873168 1603977807.4 +56.97980864746374 1603981338.9 +56.94497892714478 1603984870.4 +85.8385656284667 1604039592.9 +77.7892530602412 1604043102.6 +72.31184837557531 1604046612.4 +68.31125883629362 1604050122.1 +65.22339125196 1604053631.9 +62.72709243555995 1604057141.7 +60.66973973647445 1604060651.4 +58.99270492829785 1604064161.2 +57.91546106968741 1604067670.9 +58.16013715073122 1604071180.7 +85.92012432214798 1604126099.1 +77.98125054140102 1604129587.2 +72.55425190150821 1604133075.3 +68.5907646376564 1604136563.5 +65.53772677364172 1604140051.6 +63.097783628536426 1604143539.7 +61.11236292519976 1604147027.9 +59.582869179931585 1604150516 +58.823637914413645 1604154004.1 +62.833854151627754 1604157492.3 +86.00168301582924 1604212605.3 +78.16957095115009 1604216072 +72.79892798255199 1604219538.6 +68.87027043901915 1604223005.3 +65.85206229532346 1604226472 +63.45884812358045 1604229938.6 +61.55271355881414 1604233405.3 +60.155184552000314 1604236871.9 +59.69925759393181 1604240338.6 +61.36071607765431 1604243805.3 +86.07729208298885 1604299111.6 +78.35421428948838 1604302556.9 +73.03397736566338 1604306002.3 +69.14609916897116 1604309447.6 +66.16272074559443 1604312893 +63.813962992102816 1604316338.3 +61.98571004960703 1604319783.6 +60.72014578124752 1604323229 +60.54145206943088 1604326674.3 +62.84943047608186 1604330119.7 +86.1588507766701 1604385617.9 +78.5365850727158 1604389042.1 +73.27270382018551 1604392466.3 +69.4137057172906 1604395890.4 +66.46742956934374 1604399314.6 +64.17135041573609 1604402738.8 +62.40680728735655 1604406163 +61.26953068604061 1604409587.2 +61.35108937972188 1604413011.3 +64.26253580734979 1604416435.5 +86.23078277241895 1604472124.1 +78.71300622942152 1604475527.3 +73.49953102166431 1604478930.5 +69.68358482072094 1604482333.7 +66.77213839309303 1604485736.9 +64.51683858632603 1604489140.1 +62.82422745369532 1604492543.3 +61.80701633779038 1604495946.5 +62.13692818392621 1604499349.7 +65.60965876939056 1604502752.9 +86.30639183957854 1604558630.3 +78.89169994123814 1604562012.7 +73.72863077825401 1604565395.1 +69.9475142976296 1604568777.5 +67.07317014543156 1604572159.9 +64.86232675691596 1604575542.3 +63.235697993512424 1604578924.7 +62.33119822019696 1604582307 +62.89020982292249 1604585689.4 +66.89447643361493 1604589071.8 +86.37605128021647 1604645136.4 +79.05849440001145 1604648498.2 +73.95178090832205 1604651860 +70.2077667031275 1604655221.7 +67.36597971613753 1604658583.5 +65.20186530098422 1604661945.2 +63.63754183539709 1604665307 +62.84348084956019 1604668668.8 +63.61601588442132 1604672030.5 +68.12293842654456 1604675392.3 +86.4479832759653 1604731642.4 +79.22756141389566 1604734983.7 +74.17125396697931 1604738325.1 +70.46206948210374 1604741666.4 +67.65738477054364 1604745007.7 +65.53177714712005 1604748349.1 +64.03343605076009 1604751690.4 +63.348409336101895 1604755031.7 +64.31889147864453 1604758373.1 +69.29731730329037 1604761714.4 +86.51396564519247 1604818148.1 +79.39067880125819 1604821469.2 +74.38477739911491 1604824790.4 +70.7104226345583 1604828111.5 +67.94056764331717 1604831432.6 +65.8616889932559 1604834753.7 +64.42565319471232 1604838074.9 +63.83548894307859 1604841396 +64.98834186884862 1604844717.1 +70.41534050874144 1604848038.2 +86.57994801441966 1604904653.6 +79.55152363350982 1604907954.8 +74.59830083125051 1604911255.9 +70.95877578701287 1604914557 +68.2260230712016 1604917858.1 +66.18197414145929 1604921159.2 +64.80597108562124 1604924460.4 +64.31294185212286 1604927761.5 +65.6348617917771 1604931062.6 +71.48295766941943 1604934363.7 +86.64593038364681 1604991158.8 +79.7109639494616 1604994440.2 +74.80587463686444 1604997721.6 +71.20345186805667 1605001002.9 +68.4995792460427 1605004284.3 +66.50225928966269 1605007565.6 +65.18261190511936 1605010847 +64.77481843671303 1605014128.3 +66.2598557637298 1605017409.7 +72.50016878532438 1605020691 +86.70823568146322 1605077663.7 +79.86218208378078 1605080925.5 +75.00977137106761 1605084187.4 +71.4421783225788 1605087449.2 +68.7754079759947 1605090711 +66.81291773993367 1605093972.8 +65.54735347157416 1605097234.6 +65.22706832337076 1605100496.5 +66.85369708677429 1605103758.3 +73.45875167482367 1605107020.1 +86.76826842416871 1605164168.2 +80.01567277321088 1605167410.7 +75.21366810527078 1605170653.3 +71.68090477710093 1605173895.8 +69.03933745290337 1605177138.3 +67.11762656368296 1605180380.9 +65.90246834009653 1605183623.4 +65.66969151209607 1605186866 +67.42828501395392 1605190108.5 +74.35957437672838 1605193351 +86.82830116687421 1605250672.2 +80.15726420959766 1605253895.7 +75.40566558643062 1605257119.3 +71.91000453369064 1605260342.8 +69.30326692981204 1605263566.3 +67.4186583160215 1605266789.8 +66.25390613720813 1605270013.3 +66.09673837636727 1605273236.8 +67.9813469901578 1605276460.3 +75.20176885222745 1605279683.8 +86.88465683816895 1605337175.8 +80.30480527250609 1605340380.5 +75.59993562270135 1605343585.3 +72.13315466375866 1605346790 +69.56124678019903 1605349994.8 +67.71146788672746 1605353199.6 +66.59939430779805 1605356404.3 +66.50820891618436 1605359609.1 +68.50920594397513 1605362813.8 +75.98988021154268 1605366018.6 +86.94101250946368 1605423678.7 +80.4427196374821 1605426865 +75.78598347733951 1605430051.3 +72.35630479382671 1605433237.6 +69.8118724877645 1605436423.9 +67.99692331461189 1605439610.2 +66.93525578045556 1605442796.5 +66.91372982947979 1605445982.7 +69.0178115019276 1605449169 +76.72163589956318 1605452355.3 +86.99736818075841 1605510181 +80.57836144734719 1605513349.1 +75.97062681567782 1605516517.2 +72.56982822596231 1605519685.4 +70.06022564021907 1605522853.5 +68.28237874249633 1605526021.6 +67.25921800006972 1605529189.7 +67.30594697343203 1605532357.9 +69.5071636640152 1605535526 +77.3933588448782 1605538694.1 +87.04777422553147 1605596682.6 +80.71032618580152 1605599832.9 +76.14704797238355 1605602983.1 +72.78335165809791 1605606133.4 +70.29895209474121 1605609283.6 +68.55593491733744 1605612433.9 +67.57950314827313 1605615584.2 +67.68626486434093 1605618734.4 +69.97271732001613 1605621884.7 +78.01835281683088 1605625034.9 +87.09818027030455 1605683183.5 +80.83861385284509 1605686316.2 +76.31979205767851 1605689448.9 +72.99319801882274 1605692581.6 +70.53767854926333 1605695714.3 +68.82581402076777 1605698847 +67.8901615985441 1605701979.7 +68.05327898590663 1605705112.4 +70.4212901352631 1605708245.2 +78.59294074401053 1605711377.9 +87.14858631507761 1605769683.4 +80.960951893367 1605772799 +76.49253614297348 1605775914.5 +73.19114512650424 1605779030 +70.76677830585304 1605782145.5 +69.08379387115477 1605785261 +68.19119335088263 1605788376.5 +68.41434348095066 1605791492 +70.84833699953431 1605794607.5 +79.12079969782786 1605797723 +87.19531528843991 1605856182.5 +81.081017378778 1605859281.2 +76.65565353033601 1605862379.8 +73.38909223418574 1605865478.4 +70.98992843592107 1605868577.1 +69.338096650131 1605871675.7 +68.4840029215886 1605874774.4 +68.75388202501892 1605877873 +71.2598075393514 1605880971.6 +79.60787930480456 1605884070.3 +87.24572133321297 1605942680.6 +81.2033554192999 1605945762.8 +76.81877091769854 1605948844.9 +73.58108971534558 1605951927 +71.20940149457834 1605955009.2 +69.58644980258556 1605958091.3 +68.76945834947303 1605961173.4 +69.08974349767644 1605964255.5 +71.64975212819273 1605967337.7 +80.05645212005153 1605970419.8 +87.29245030657528 1606029177.7 +81.31606676188936 1606032243.7 +76.96998905201775 1606035309.7 +73.76346049857298 1606038375.7 +71.42292492671393 1606041441.7 +69.8274488122186 1606044507.6 +69.04301452431413 1606047573.6 +69.41002864587983 1606050639.6 +72.02639294769087 1606053705.6 +80.46792265986862 1606056771.6 +87.33322965341591 1606115673.6 +81.42650554936793 1606118723.8 +77.12347974144785 1606121774.1 +73.94810383691129 1606124824.3 +71.63049873232787 1606127874.6 +70.06617526674074 1606130924.8 +69.31289362774447 1606133975 +69.7206870961508 1606137025.3 +72.38150781621324 1606140075.5 +80.84824055077752 1606143125.8 +87.37400900025655 1606202168.3 +81.53326726543574 1606205203.1 +77.27102080435628 1606208238 +74.12084792220624 1606211272.9 +71.82844584000937 1606214307.8 +70.28932539680876 1606217342.7 +69.57314603324237 1606220377.6 +70.01944629337844 1606223412.5 +72.72699598680316 1606226447.4 +81.19967834788912 1606229482.3 +87.41478834709719 1606288661.6 +81.63635191009277 1606291681.6 +77.41261224074306 1606294701.5 +74.29359200750122 1606297721.5 +72.0227158762801 1606300741.4 +70.51247552687681 1606303761.4 +69.82149918569694 1606306781.4 +70.30857879267364 1606309801.3 +73.05323076152824 1606312821.3 +81.5236405675033 1606315841.2 +87.45329513882692 1606375153.6 +81.73348692822815 1606378159.1 +77.55052660571906 1606381164.5 +74.45670939486375 1606384170 +72.20876373091826 1606387175.4 +70.72004933249073 1606390180.8 +70.06022564021907 1606393186.3 +70.58440752262564 1606396191.7 +73.3638892117992 1606399197.1 +81.82467231984182 1606402202.6 +87.49039741425678 1606461644.2 +81.8283493912526 1606464635.5 +77.68249134417339 1606467626.9 +74.6138771557046 1606470618.3 +72.39340706925658 1606473609.6 +70.9239460666939 1606476601 +70.29300246821953 1606479592.3 +70.84833699953431 1606482583.7 +73.65897133761608 1606485575.1 +82.09822849468291 1606488566.4 +87.52522713457574 1606548133.2 +81.92548440938796 1606551110.9 +77.80850645610606 1606554088.6 +74.76509529002381 1606557066.4 +72.56615115455155 1606560044.1 +71.1218931743754 1606563021.8 +70.51842515339848 1606565999.6 +71.10263977851054 1606568977.3 +73.93847713897884 1606571955 +82.35253127365917 1606574932.8 +87.56005685489471 1606634620.5 +82.01299272959089 1606637585.1 +77.93084449662796 1606640549.7 +74.91263635293225 1606643514.3 +72.73294561332483 1606646478.8 +71.31021358412447 1606649443.4 +70.73194858553407 1606652408 +71.34504330444344 1606655372.5 +74.20608368729827 1606658337.1 +82.5912577281813 1606661301.7 +87.59715913032458 1606721106.2 +82.09822849468291 1606724058.1 +78.04950546573909 1606727010 +75.05422778931901 1606729961.8 +72.89606300068738 1606732913.7 +71.49258436735187 1606735865.6 +70.93357276462633 1606738817.5 +71.57414306103314 1606741769.4 +74.46038646627451 1606744721.3 +82.8047811603169 1606747673.2 +87.62603922412188 1606807590 +82.17383756184253 1606810529.7 +78.15994425321766 1606813469.4 +75.18846508288425 1606816409.1 +73.04728113500657 1606819348.8 +71.6712780791685 1606822288.5 +71.13151987230783 1606825228.2 +71.79729319110116 1606828167.9 +74.69911292079665 1606831107.6 +83.00867789452006 1606834047.3 +87.65719187303009 1606894072 +82.25171918411304 1606897000 +78.26670596928544 1606899928 +75.31448019481692 1606902856 +73.194822197915 1606905784 +71.83439546653103 1606908712 +71.3198402820569 1606911640 +72.007139551826 1606914568 +74.92226305086467 1606917496.1 +83.19104867774747 1606920424.1 +87.6823948954166 1606980551.9 +82.32732825127263 1606983468.8 +78.36751805883158 1606986385.6 +75.44049530674958 1606989302.5 +73.33868618941267 1606992219.3 +71.9915632273719 1606995136.1 +71.49853399387354 1606998053 +72.2050866595075 1607000969.8 +75.13578648300027 1607003886.7 +83.36379276304243 1607006803.5 +87.71354754432481 1607067029.9 +82.3933106204998 1607069936.1 +78.46465307696697 1607072842.3 +75.55320664933905 1607075748.4 +73.47065092786701 1607078654.6 +72.14278136169109 1607081560.8 +71.66532845264683 1607084467 +72.39340706925658 1607087373.2 +75.33373359068179 1607090279.4 +83.5209605238833 1607093185.6 +87.73875056671133 1607153505.6 +82.45929298972698 1607156401.7 +78.55583846858066 1607159297.8 +75.66591799192852 1607162193.9 +73.59666603979969 1607165090 +72.2806957266671 1607167986.1 +71.8224962134877 1607170882.2 +72.56615115455155 1607173778.3 +75.52205400043086 1607176674.4 +83.66850158679173 1607179570.5 +87.7602765176871 1607239979.2 +82.51932573243246 1607242865.7 +78.64334678878359 1607245752.3 +75.76673008147465 1607248638.8 +73.71305445379991 1607251525.4 +72.41861009164312 1607254411.9 +71.97003727639614 1607257298.4 +72.73294561332483 1607260185 +75.69479808572581 1607263071.5 +83.80046632524606 1607265958.1 +87.78547954007364 1607326450.4 +82.58163103024887 1607329328 +78.71895585594318 1607332205.5 +75.86754217102079 1607335083.1 +73.82576579638938 1607337960.7 +72.54094813216501 1607340838.2 +72.10795164137214 1607343715.8 +72.88643630275494 1607346593.3 +75.85791547308835 1607349470.9 +83.92280436576796 1607352348.4 +87.80473293593852 1607412919.3 +82.63203707502193 1607415788.4 +78.79456492310278 1607418657.6 +75.95505049122372 1607421526.7 +73.9265778859355 1607424395.9 +72.65733654616524 1607427265 +72.23991637982647 1607430134.1 +73.03397736566338 1607433003.3 +76.01140616251845 1607435872.4 +84.02956608183577 1607438741.5 +87.82625888691429 1607499385.7 +82.682443119795 1607502247 +78.86649691885162 1607505108.3 +76.04028625631574 1607507969.6 +74.02371290407088 1607510830.9 +72.76777533364381 1607513692.2 +72.36225442034838 1607516553.5 +73.16594210411772 1607519414.8 +76.14704797238355 1607522276.1 +84.1303781713819 1607525137.5 +87.83956265625748 1607585849.5 +82.72917209315729 1607588703.6 +78.93247928807878 1607591557.7 +76.11816787858625 1607594411.7 +74.11489829568457 1607597265.8 +72.86491035177917 1607600119.9 +72.46901613641617 1607602974 +73.28600758952871 1607605828 +76.27533563942711 1607608682.1 +84.2215635629956 1607611536.2 +87.86108860723324 1607672310.8 +82.76995143999793 1607675158.2 +78.98883495937353 1607678005.6 +76.18782731922418 1607680853.1 +74.19645698936584 1607683700.5 +72.95609574339288 1607686547.9 +72.57577785248398 1607689395.4 +73.39871893211817 1607692242.8 +76.38577442690568 1607695090.2 +84.30312225667687 1607697937.7 +87.87071530516567 1607758769.3 +82.81073078683858 1607761610.7 +79.03924100414659 1607764452.1 +76.25380968845135 1607767293.5 +74.26838898511467 1607770134.9 +73.03765443707414 1607772976.3 +72.66696324409767 1607775817.8 +73.49585395025355 1607778659.2 +76.49253614297348 1607781500.6 +84.38100387894738 1607784342 +87.88629162961978 1607845225.1 +82.84556050715753 1607848061.1 +79.08964704891966 1607850897.1 +76.31016535974608 1607853733.1 +74.33437135434185 1607856569.1 +73.11326350423374 1607859405.1 +72.74852193777893 1607862241.1 +73.58703934186725 1607865077.1 +76.58599408969808 1607867913.1 +84.44103662165287 1607870749.1 +87.89591832755221 1607931678 +82.87076352954406 1607934509.2 +79.13042639576028 1607937340.5 +76.36057140451915 1607940171.7 +74.39440409704734 1607943002.9 +73.1792458734609 1607945834.1 +72.82045393352777 1607948665.4 +73.66859803554851 1607951496.6 +76.66528022826844 1607954327.8 +84.50106936435837 1607957159 +87.90554502548464 1608018128.1 +82.8959665519306 1608020955.1 +79.16525611607926 1608023782.2 +76.40730037788146 1608026609.3 +74.44481014182041 1608029436.4 +73.23560154475564 1608032263.4 +72.88048667623328 1608035090.5 +73.73458040477568 1608037917.6 +76.73126259749561 1608040744.7 +84.54779833772066 1608043571.7 +87.91744427852798 1608104575.2 +82.92116957431713 1608107398.7 +79.19640876498747 1608110222.3 +76.44213009820042 1608113045.8 +74.48558948866105 1608115869.4 +73.28233051811794 1608118693 +72.936842347528 1608121516.5 +73.79093607607041 1608124340.1 +76.79356789531202 1608127163.7 +84.5885776845613 1608129987.2 +87.92707097646041 1608191019.2 +82.93674589877124 1608193839.9 +79.22161178737399 1608196660.6 +76.47328274710861 1608199481.3 +74.52269176409091 1608202302 +73.32310986495857 1608205122.7 +72.97762169436864 1608207943.4 +73.83539249432181 1608210764.1 +76.83802431356341 1608213584.8 +84.6197303334695 1608216405.5 +87.92707097646041 1608277460.3 +82.95232222322534 1608280278.7 +79.24313773834976 1608283097.2 +76.49848576949515 1608285915.7 +74.54789478647744 1608288734.2 +73.35198995875587 1608291552.6 +73.0124514146876 1608294371.1 +73.87617184116243 1608297189.6 +76.87512658899328 1608300008 +84.64493335585603 1608302826.5 +87.93302060298208 1608363898.2 +82.96194892115776 1608366715.1 +79.25871406280386 1608369532 +76.51406209394925 1608372348.9 +74.56714818234231 1608375165.8 +73.37351590973164 1608377982.7 +73.03397736566338 1608380799.6 +73.8976977921382 1608383616.5 +76.90032961137982 1608386433.4 +84.66050968031013 1608389250.3 +87.93669767439285 1608450332.9 +82.96789854767943 1608453148.9 +79.2683407607363 1608455964.9 +76.52368879188167 1608458780.9 +74.57677488027474 1608461596.8 +73.38314260766407 1608464412.8 +73.04728113500657 1608467228.8 +73.91695118800307 1608470044.8 +76.9159059358339 1608472860.7 +84.67013637824256 1608475676.7 +87.93669767439285 1608536764.5 +82.97157561909019 1608539580.2 +79.2683407607363 1608542395.9 +76.52963841840334 1608545211.6 +74.58272450679641 1608548027.3 +73.38909223418574 1608550843 +73.05323076152824 1608553658.7 +73.91695118800307 1608556474.4 +76.91958300724468 1608559290.1 +84.67381344965332 1608562105.8 +87.93669767439285 1608623192.8 +82.96789854767943 1608626008.9 +79.2683407607363 1608628825 +76.52368879188167 1608631641.1 +74.57677488027474 1608634457.2 +73.38314260766407 1608637273.2 +73.04360406359581 1608640089.3 +73.9110015614814 1608642905.4 +76.9159059358339 1608645721.5 +84.67013637824256 1608648537.6 +87.93669767439285 1608709617.8 +82.96194892115776 1608712434.9 +79.25871406280386 1608715252.1 +76.51406209394925 1608718069.2 +74.56347111093154 1608720886.3 +73.36756628320997 1608723703.5 +73.0280277391417 1608726520.6 +73.89174816561653 1608729337.7 +76.89437998485815 1608732154.9 +84.65456005378846 1608734972 +87.93302060298208 1608796039.5 +82.95232222322534 1608798858.4 +79.24313773834976 1608801677.2 +76.49253614297348 1608804496 +74.54194515995577 1608807314.8 +73.3483128873451 1608810133.7 +73.00282471675517 1608812952.5 +73.86654514323001 1608815771.3 +76.86549989106085 1608818590.1 +84.6330341028127 1608821409 +87.92707097646041 1608882458 +82.93674589877124 1608885279.1 +79.22161178737399 1608888100.3 +76.46733312058694 1608890921.4 +74.51674213756924 1608893742.6 +73.31121061191524 1608896563.8 +72.96572244132531 1608899384.9 +73.82576579638938 1608902206.1 +76.82472054422021 1608905027.3 +84.6041540090154 1608907848.4 +87.92112134993874 1608968873 +82.92116957431713 1608971697.2 +79.19640876498747 1608974521.3 +76.43845302678965 1608977345.5 +74.48191241725029 1608980169.6 +73.27270382018551 1608982993.8 +72.92126602307391 1608985817.9 +73.7753597516163 1608988642.1 +76.77204194433624 1608991466.2 +84.5730013601072 1608994290.4 +87.91149465200631 1609055284.7 +82.90191617845227 1609058112.5 +79.16525611607926 1609060940.3 +76.40135075135979 1609063768.1 +74.43518344388796 1609066595.9 +73.2259748468232 1609069423.7 +72.86491035177917 1609072251.4 +73.71305445379991 1609075079.2 +76.71200920163075 1609077907 +84.5262723867449 1609080734.8 +87.90186795407388 1609141693.1 +82.87076352954406 1609144525.1 +79.13042639576028 1609147357.2 +76.35689433310837 1609150189.2 +74.38477739911491 1609153021.3 +73.16594210411772 1609155853.3 +72.79892798255199 1609158685.4 +73.64339501316198 1609161517.5 +76.64007720588191 1609164349.5 +84.47586634197184 1609167181.6 +87.89224125614145 1609228098 +82.84556050715753 1609230935 +79.0859699775089 1609233771.9 +76.30648828833532 1609236608.9 +74.32247210129852 1609239445.9 +73.09995973489055 1609242282.8 +72.72699598680316 1609245119.8 +73.56183631948072 1609247956.8 +76.55484144078987 1609250793.7 +84.41583359926634 1609253630.7 +87.88034200309811 1609314499.6 +82.81073078683858 1609317342.1 +79.03924100414659 1609320184.6 +76.24418299051892 1609323027.1 +74.25648973207134 1609325869.6 +73.02207811262004 1609328712.1 +72.64176022171114 1609331554.6 +73.47065092786701 1609334397.1 +76.45770642265451 1609337239.6 +84.34390160351751 1609340082.1 +87.86703823375491 1609400897.8 +82.76995143999793 1609403746.4 +78.98288533285186 1609406595.1 +76.17820062129174 1609409443.7 +74.18088066491175 1609412292.4 +72.936842347528 1609415141 +72.55057483009745 1609417989.7 +73.3638892117992 1609420838.3 +76.3509447065867 1609423687 +84.2682925363579 1609426535.6 +87.84551228277913 1609487292.6 +82.72917209315729 1609490148 +78.92652966155711 1609493003.4 +76.10626862554291 1609495858.9 +74.09932197123048 1609498714.3 +72.84565695591431 1609501569.7 +72.44381311402964 1609504425.1 +73.25117786920973 1609507280.5 +76.22860666606482 1609510136 +84.18078421615498 1609512991.4 +87.82993595832505 1609573684.1 +82.682443119795 1609576546.9 +78.86054729232995 1609579409.7 +76.0306595583833 1609582272.4 +74.00813657961677 1609585135.2 +72.74257231125726 1609587998 +72.33110177144017 1609590860.8 +73.12516275727708 1609593723.6 +76.09664192761049 1609596586.4 +84.0859217531305 1609599449.2 +87.81068256246019 1609660072.2 +82.63203707502193 1609662942.9 +78.79088785169202 1609665813.7 +75.94542379329128 1609668684.5 +73.9110015614814 1609671555.2 +72.6321335237787 1609674426 +72.2050866595075 1609677296.8 +72.98724839230107 1609680167.5 +75.95505049122372 1609683038.3 +83.97916003706271 1609685909.1 +87.7891566114844 1609746456.9 +82.58163103024887 1609749336.3 +78.71300622942152 1609752215.6 +75.85423840167758 1609755094.9 +73.8042398454136 1609757974.2 +72.51347255466757 1609760853.6 +72.07312192105316 1609763732.9 +72.83970732939264 1609766612.2 +75.8015598017936 1609769491.5 +83.86277162306247 1609772370.9 +87.76990321561954 1609832838.4 +82.51932573243246 1609835726.9 +78.63372009085117 1609838615.3 +75.75115375702055 1609841503.8 +73.68785143141338 1609844392.2 +72.38745744273491 1609847280.7 +71.9292579295555 1609850169.2 +72.68253956855177 1609853057.6 +75.63476534302032 1609855946.1 +83.73448395601889 1609858834.6 +87.744700193233 1609919216.6 +82.45929298972698 1609922114.7 +78.54621177064821 1609925012.9 +75.65034166747442 1609927911.1 +73.57146301741315 1609930809.2 +72.2495430777589 1609933707.4 +71.77803979523631 1609936605.6 +72.51347255466757 1609939503.7 +75.4523945597929 1609942401.9 +83.59656959104291 1609945300.1 +87.72317424225724 1610005591.5 +82.3933106204998 1610008499.9 +78.45502637903452 1610011408.3 +75.53763032488496 1610014316.7 +73.43949827895881 1610017225.2 +72.10795164137214 1610020133.6 +71.61492240787375 1610023042 +72.33110177144017 1610025950.5 +75.26407415004384 1610028858.9 +83.44535145672371 1610031767.3 +87.69429414845995 1610091963.1 +82.32137862475096 1610094882.4 +78.35789136089916 1610097801.6 +75.42124191088472 1610100720.8 +73.30753354050448 1610103640.1 +71.95446095194204 1610106559.3 +71.44812794910047 1610109478.5 +72.13910429028033 1610112397.8 +75.05422778931901 1610115317 +83.28223406936115 1610118236.2 +87.6668185709625 1610178331.6 +82.25171918411304 1610181262.2 +78.25112964483135 1610184192.8 +75.29522679895204 1610187123.3 +73.16594210411772 1610190053.9 +71.7936161196904 1610192984.5 +71.26348461076216 1610195915 +71.93520755607717 1610198845.6 +74.83702728577265 1610201776.2 +83.09986328613377 1610204706.7 +87.6379384771652 1610264696.9 +82.17383756184253 1610267639.4 +78.14436792876356 1610270581.8 +75.16693913190846 1610273524.2 +73.0124514146876 1610276466.6 +71.6245491058062 1610279409.1 +71.07148712960233 1610282351.5 +71.72168412394157 1610285293.9 +74.60197790266128 1610288236.4 +82.90559324986303 1610291178.8 +87.60678582825702 1610351059.1 +82.09227886816127 1610354013.9 +78.03392914128499 1610356968.7 +75.02902476693248 1610359923.5 +72.8589607252575 1610362878.3 +71.44812794910047 1610365833.1 +70.87354002192085 1610368787.9 +71.49853399387354 1610371742.7 +74.35957437672838 1610374697.5 +82.6980194442491 1610377652.3 +87.57195610793804 1610437418.2 +82.00704310306922 1610440385.9 +77.91526817217385 1610443353.6 +74.8874333305457 1610446321.2 +72.6921662664842 1610449288.9 +71.2598075393514 1610452256.5 +70.663693661196 1610455224.2 +71.2598075393514 1610458191.8 +74.09932197123048 1610461159.5 +82.46891968765941 1610464127.2 +87.54080345902985 1610523774.3 +81.9195347828663 1610526755.3 +77.7892530602412 1610529736.3 +74.73621519622651 1610532717.3 +72.5253718077109 1610535698.3 +71.07148712960233 1610538679.3 +70.44649315764964 1610541660.3 +71.01145438689684 1610544641.3 +73.82576579638938 1610547622.3 +82.22056653520484 1610550603.3 +87.50002411218921 1610610127.4 +81.82467231984182 1610613122.2 +77.66323794830852 1610616117 +74.58272450679641 1610619111.8 +72.34667809589426 1610622106.7 +70.86759039539918 1610625101.5 +70.21739340105992 1610628096.3 +70.75120198139894 1610631091.1 +73.53663329709417 1610634085.9 +81.95663705829617 1610637080.8 +87.46519439187026 1610696477.5 +81.72753730170648 1610699486.6 +77.52900065474329 1610702495.7 +74.41960711943388 1610705504.8 +72.16430731266686 1610708513.9 +70.66001658978524 1610711523 +69.97866694653779 1610714532.1 +70.48132287796861 1610717541.2 +73.23192447334488 1610720550.3 +81.6615549324793 1610723559.4 +87.42809211644038 1610782824.7 +81.62672521216034 1610785848.5 +77.38740921835652 1610788872.4 +74.25648973207134 1610791896.2 +71.97003727639614 1610794920 +70.44649315764964 1610797943.8 +69.733990865494 1610800967.6 +70.19814000519507 1610803991.4 +72.90568969861981 1610807015.2 +81.35089648220833 1610810039 +87.38731276959975 1610869169.1 +81.5236405675033 1610872208.1 +77.24581778196976 1610875247 +74.08374564677638 1610878286 +71.77803979523631 1610881324.9 +70.21739340105992 1610884363.9 +69.47968808651777 1610887402.9 +69.9030578793782 1610890441.8 +72.56982822596231 1610893480.8 +81.01135793814007 1610896519.7 +87.34285635134835 1610955510.7 +81.4168788514355 1610958565.2 +77.09827671906132 1610961619.7 +73.90732449007064 1610964674.2 +71.57046598962236 1610967728.8 +69.98829364447023 1610970783.3 +69.2157586096091 1610973837.8 +69.59834905562889 1610976892.3 +72.22066298396162 1610979946.9 +80.64066674516359 1610983001.4 +87.30207700450771 1611041849.5 +81.30644006395693 1611044920 +76.94478602963122 1611047990.5 +73.72495370684325 1611051061 +71.36061962889754 1611054131.5 +69.7495671899481 1611057202 +68.942202434768 1611060272.4 +69.2780639074255 1611063342.9 +71.84997179098514 1611066413.4 +80.23882290327893 1611069483.9 +87.2553480311454 1611128185.7 +81.1877790948458 1611131272.5 +76.78761826879035 1611134359.3 +73.5306836705725 1611137446.2 +71.14709619676194 1611140533 +69.5071636640152 1611143619.9 +68.66269663340523 1611146706.7 +68.94815206128968 1611149793.6 +71.46370427355457 1611152880.4 +79.80214934107529 1611155967.3 +87.21089161289402 1611214519.1 +81.07139068084557 1611217622.7 +76.62450088142782 1611220726.3 +73.33868618941267 1611223829.9 +70.9239460666939 1611226933.5 +69.25286088503896 1611230037 +68.36761450758836 1611233140.6 +68.60634096211051 1611236244.2 +71.05591080514823 1611239347.8 +79.3283735034418 1611242451.4 +87.16048556812095 1611300850.1 +80.94905264032366 1611303970.7 +76.45770642265451 1611307091.4 +73.13846652662028 1611310212.1 +70.69484631010421 1611313332.8 +68.99260847954106 1611316453.4 +68.06885531036072 1611319574.1 +68.25122609358813 1611322694.8 +70.63481356739871 1611325815.5 +78.8101412475569 1611328936.2 +87.10780696823699 1611387178.4 +80.82303752839098 1611390316.6 +76.28496233735954 1611393454.7 +72.936842347528 1611396592.8 +70.46206948210374 1611399730.9 +68.7286790026324 1611402869.1 +67.76414648661144 1611406007.2 +67.88421197202243 1611409145.3 +70.1921903786734 1611412283.4 +78.25112964483135 1611415421.6 +87.0574009234639 1611473504.3 +80.69107278993667 1611476660.3 +76.10626862554291 1611479816.2 +72.7233189153924 1611482972.1 +70.22334302758159 1611486128 +68.4551228277913 1611489283.9 +67.44386133840803 1611492439.8 +67.50984370763518 1611495595.7 +69.72436416756156 1611498751.6 +77.64171199733275 1611501907.5 +87.00699487869083 1611559827.8 +80.55910805148233 1611563001.8 +75.92389784231551 1611566175.9 +72.50979548325681 1611569349.9 +69.97271732001613 1611572523.9 +68.16966739990686 1611575697.9 +67.11762656368296 1611578872 +67.11762656368296 1611582046 +69.24691125851729 1611585220 +76.98188830506109 1611588394 +86.95063920739611 1611646148.9 +80.42119368650633 1611649341.4 +75.74152705908811 1611652533.8 +72.29032242459954 1611655726.3 +69.72436416756156 1611658918.7 +67.88421197202243 1611662111.2 +66.78771471754713 1611665303.6 +66.7157827217983 1611668496.1 +68.73830570056484 1611671688.5 +76.2657089414947 1611674881 +86.89428353610138 1611732467.8 +80.27960225011955 1611735678.9 +75.55320664933905 1611738890.1 +72.06717229453149 1611742101.3 +69.46638431717457 1611745312.4 +67.59140240131647 1611748523.6 +66.4422265469572 1611751734.8 +66.3043121819812 1611754946 +68.21639637326916 1611758157.1 +75.49317390663356 1611761368.3 +86.83425079339587 1611818784.3 +80.13206118721112 1611822014.5 +75.35525954165755 1611825244.7 +71.83439546653103 1611828474.9 +69.20613191167666 1611831705.1 +67.29037064897793 1611834935.2 +66.0907887498456 1611838165.4 +65.87726531771 1611841395.6 +67.66701146847608 1611844625.8 +74.658333573956 1611847856 +86.77421805069038 1611905098.7 +79.98452012430269 1611908348.2 +75.15731243397605 1611911597.6 +71.59934608341968 1611914847.1 +68.93625280824634 1611918096.6 +66.98566182522862 1611921346.1 +65.73567388132324 1611924595.5 +65.4369146840956 1611927845 +67.09242354129643 1611931094.5 +73.76941012509464 1611934344 +86.71191275287399 1611991410.9 +79.83102943487259 1611994679.9 +74.95341569977288 1611997949 +71.36061962889754 1612001218 +68.6686462599269 1612004487 +66.67500337495767 1612007756 +65.37093231486843 1612011025.1 +64.98466479743786 1612014294.1 +66.49858221825193 1612017563.1 +72.82045393352777 1612020832.2 +86.64593038364681 1612077721 +79.67981130055338 1612081009.9 +74.74584189415894 1612084298.7 +71.11821610296464 1612087587.5 +68.38914045856414 1612090876.4 +66.36066785327594 1612094165.2 +64.99429149537029 1612097454.1 +64.5205156577368 1612100742.9 +65.87726531771 1612104031.7 +71.8091924441445 1612107320.6 +86.58589764094131 1612164029.1 +79.51669391319085 1612167338 +74.5359955334341 1612170646.9 +70.87354002192085 1612173955.8 +68.10963465720137 1612177264.7 +66.03443307855088 1612180573.6 +64.61170104935049 1612183882.5 +64.04306274869252 1612187191.4 +65.23301794989243 1612190500.3 +70.74525235487727 1612193809.1 +86.51396564519247 1612250335.3 +79.35357652582833 1612253664.4 +74.31879502988775 1612256993.6 +70.6192372429446 1612260322.8 +67.82417922931693 1612263651.9 +65.70452123241503 1612266981.1 +64.22175646050916 1612270310.3 +63.55598314171582 1612273639.5 +64.56129500457743 1612276968.6 +69.62722914942619 1612280297.8 +86.4479832759653 1612336639.5 +79.18678206705502 1612339989.1 +74.09932197123048 1612343338.8 +70.36493446396837 1612346688.5 +67.52909710350006 1612350038.2 +65.37093231486843 1612353387.8 +63.819912618624485 1612356737.5 +63.053327210285026 1612360087.2 +63.86069196546512 1612363436.9 +68.45879989920206 1612366786.6 +86.37605128021647 1612422941.8 +79.01998760828172 1612426312.2 +73.87617184116243 1612429682.6 +70.1010049870597 1612433053 +67.23401497768319 1612436423.4 +65.02912121568927 1612439793.8 +63.418068776739815 1612443164.2 +62.53509495440012 1612446534.5 +63.13488590396629 1612449904.9 +67.23033790627242 1612453275.3 +86.30639183957854 1612509242.3 +78.84129389646509 1612512633.6 +73.64707208457274 1612516024.9 +69.84075258156179 1612519416.2 +66.93525578045556 1612522807.5 +64.68363304509931 1612526198.9 +63.002921165511964 1612529590.2 +62.00496344547189 1612532981.5 +62.37565463844835 1612536372.8 +65.94324768693717 1612539764.1 +86.23078277241895 1612595541 +78.66854981117012 1612598953.5 +73.41797232798305 1612602365.9 +69.57314603324237 1612605778.3 +66.63054695670627 1612609190.7 +64.33219524798771 1612612603.2 +62.58550099917319 1612616015.6 +61.46747779372211 1612619428 +61.589815834244014 1612622840.4 +64.59244765348562 1612626252.8 +86.15290115014844 1612681838.1 +78.48617902794273 1612685271.8 +73.18519549998257 1612688705.5 +69.29731730329037 1612692139.2 +66.31988850643529 1612695572.9 +63.97708037946535 1612699006.7 +62.15845413490198 1612702440.4 +60.91214326240734 1612705874.1 +60.77650145254225 1612709307.8 +63.17566525080693 1612712741.5 +86.07134245646716 1612768133.5 +78.30153568960442 1612771588.6 +72.94646904546045 1612775043.8 +69.02376112844927 1612778499 +66.00923005616433 1612781954.2 +63.61601588442132 1612785409.4 +61.72178057269834 1612788864.5 +60.34350496174939 1612792319.7 +59.92835735052152 1612795774.9 +61.684678297268476 1612799230.1 +85.99573338930757 1612854427.2 +78.10953820844459 1612857904 +72.70179296441663 1612861380.8 +68.7442553270865 1612864857.7 +65.6948945344826 1612868334.5 +63.25495138937728 1612871811.3 +61.27915738397305 1612875288.1 +59.76523996315898 1612878764.9 +59.04906059959258 1612882241.7 +60.114405205159684 1612885718.5 +85.91049762421555 1612940719.4 +77.92121779869552 1612944218 +72.45343981196207 1612947716.6 +68.45879989920206 1612951215.2 +65.37093231486843 1612954713.8 +62.884260196400824 1612958212.4 +60.83285712383699 1612961711 +59.17139864011449 1612965209.6 +58.132661573233776 1612968708.2 +60.578554344860756 1612972206.8 +85.8229893040126 1613027010.1 +77.72327069101401 1613030530.6 +72.2050866595075 1613034051.2 +68.17561702642853 1613037571.7 +65.05064716666504 1613041092.2 +62.509891932013595 1613044612.8 +60.374657610657586 1613048133.3 +58.56565806402664 1613051653.9 +57.187382453077674 1613055174.4 +56.7255058684875 1613058694.9 +85.73775353892057 1613113299.3 +77.52532358333252 1613116841.9 +71.95078388053128 1613120384.5 +67.88421197202243 1613123927.2 +64.72441239193996 1613127469.8 +62.133251112515445 1613131012.4 +59.91278102606742 1613134555 +57.946613718595614 1613138097.6 +56.2072736126026 1613141640.2 +54.89130329947004 1613145182.9 +85.65024521871763 1613199587.1 +77.32142684912935 1613203151.9 +71.69648110155504 1613206716.8 +67.59140240131647 1613210281.6 +64.38855091928245 1613213846.4 +61.74698359508488 1613217411.2 +59.44495481495558 1613220976.1 +57.31567012012125 1613224540.9 +55.196012123219326 1613228105.7 +52.95033901438477 1613231670.6 +85.55905982710395 1613285873.5 +77.11385304351542 1613289460.7 +71.43622869605713 1613293047.9 +67.2963202754996 1613296635 +64.05863907314662 1613300222.2 +61.36071607765431 1613303809.4 +58.971178977322076 1613307396.5 +56.66915019719277 1613310983.7 +54.14992091351711 1613314570.9 +44.84467077486451 1613318158 +85.46192480896858 1613372158.6 +76.90032961137982 1613375768.3 +71.1686221477377 1613379377.9 +66.99528852316105 1613382987.5 +63.71910052907836 1613386597.1 +60.96849893370208 1613390206.8 +58.490048996867046 1613393816.4 +56.015276131442775 1613397426 +53.06305035697424 1613401035.6 +47.74649050455999 1613404645.2 +85.36478979083321 1613458442.5 +76.68680617924421 1613462074.7 +70.90469267082904 1613465706.9 +66.69057969941177 1613469339 +63.383239056420855 1613472971.2 +60.578554344860756 1613476603.4 +58.00069683477945 1613480235.6 +55.343553186127764 1613483867.8 +51.94502715152317 1613487500 +0.0 1613491132.2 +85.26992732780873 1613544725.1 +76.46733312058694 1613548379.9 +70.63481356739871 1613552034.8 +66.38587087566246 1613555689.7 +63.03775088583093 1613559344.5 +60.176710502976086 1613562999.4 +57.50766760128107 1613566654.3 +54.65852647146957 1613570309.1 +50.78990167064222 1613573964 +0.0 1613577618.9 +85.1668426831517 1613631006.5 +76.24418299051892 1613634684.1 +70.3589848374467 1613638361.7 +66.08116205191317 1613642039.4 +62.69226271524099 1613645717 +59.774866661091416 1613649394.7 +57.010961296371946 1613653072.3 +53.96160050376803 1613656750 +49.60221902455322 1613660427.6 +0.0 1613664105.2 +85.06603059360557 1613717286.7 +76.02103286045089 1613720987.2 +70.07947903608392 1613724687.7 +65.77050360164219 1613728388.2 +62.340824918129385 1613732088.8 +59.373022819206746 1613735789.3 +56.502355738419475 1613739489.8 +53.25504783813406 1613743190.3 +48.37743410303435 1613746890.8 +0.0 1613750591.3 +84.95926887753777 1613803565.9 +75.79193310386117 1613807289.3 +69.79997323472116 1613811012.8 +65.45616807996046 1613814736.3 +61.9916596761287 1613818459.7 +58.96155227938964 1613822183.2 +55.993750180467 1613825906.7 +52.532918848045995 1613829630.1 +47.117819461196525 1613833353.6 +0.0 1613837077.1 +84.8465575349483 1613889843.9 +75.55320664933905 1613893590.4 +69.51679036194763 1613897337 +65.14183255827871 1613901083.5 +61.640221879017076 1613904830 +58.55008173957254 1613908576.5 +55.48146755110377 1613912323 +51.79748608861473 1613916069.5 +45.82110254392882 1613919816 +0.0 1613923562.5 +84.73611874746975 1613976121 +75.32042982133859 1613979890.6 +69.22765786265244 1613983660.2 +64.82154741007533 1613987429.9 +61.28510701049471 1613991199.5 +58.138611199755445 1613994969.1 +54.9572856686972 1613998738.8 +51.05015407614013 1614002508.4 +44.495505532863824 1614006278 +0.0 1614010047.7 +84.6197303334695 1614062397.1 +75.07575374029479 1614066189.9 +68.94220243476799 1614069982.7 +64.50126226187193 1614073775.5 +60.92771958686144 1614077568.4 +57.72119103341667 1614081361.2 +54.43310378629063 1614085154 +50.29319536573309 1614088946.8 +43.12685661984728 1614092739.7 +0.0 1614096532.5 +84.50106936435837 1614148672.2 +74.83107765925098 1614152488.3 +68.64712030895113 1614156304.4 +64.17502748714685 1614160120.4 +60.56665509181742 1614163936.5 +57.300093795667145 1614167752.6 +53.90156776106254 1614171568.7 +49.520660330871955 1614175384.8 +41.72932761303345 1614179200.9 +0.0 1614183017 +84.37505425242571 1614234946.4 +74.58272450679641 1614238785.8 +68.34836111172349 1614242625.2 +63.85106526753269 1614246464.7 +60.20191352536261 1614250304.1 +56.87899655791761 1614254143.5 +53.36775918072353 1614257982.9 +48.73849859807839 1614261822.3 +40.29696888590064 1614265661.7 +0.0 1614269501.1 +84.2527162119038 1614321219.8 +74.32842172782019 1614325082.6 +68.05327898590663 1614328945.4 +63.52483049280762 1614332808.2 +59.84084903031858 1614336671 +56.45562676505717 1614340533.8 +52.828000973862856 1614344396.6 +47.94443761224149 1614348259.4 +38.829780438448886 1614352122.2 +0.0 1614355984.9 +84.12075147344947 1614407492.3 +74.06449225091151 1614411378.5 +67.74857016215734 1614415264.8 +63.194918646671795 1614419151 +59.476107463863784 1614423037.3 +56.02490282937521 1614426923.5 +52.28456569559143 1614430809.7 +47.14302248358306 1614434696 +37.32916678697799 1614438582.2 +0.4581995131794051 1614442468.4 +83.98878673499514 1614493764.1 +73.8042398454136 1614497673.8 +67.44386133840803 1614501583.5 +62.85905717401428 1614505493.2 +59.10909334229808 1614509403 +55.597855965104 1614513312.7 +51.735180790798324 1614517222.4 +46.32375847535962 1614521132.2 +35.79599597029908 1614525041.9 +0.47377583763350667 1614528951.6 +83.85087237001913 1614580035 +73.53663329709417 1614583968.3 +67.13915251465873 1614587901.6 +62.52914532787846 1614591834.8 +58.738402149321615 1614595768.1 +55.16485947431113 1614599701.4 +51.18211881459446 1614603634.6 +45.49486776920374 1614607567.9 +34.225722878190275 1614611501.2 +0.0 1614615434.5 +83.70928093363237 1614666305.3 +73.26675419366384 1614670262.2 +66.82849406438777 1614674219 +62.193283855220955 1614678175.9 +58.36771095634514 1614682132.7 +54.73413553862917 1614686089.6 +50.629056838390596 1614690046.4 +44.66229999163713 1614694003.3 +32.6183475106516 1614697960.1 +0.0 1614701917 +83.5676894972456 1614752574.9 +72.99319801882274 1614756555.4 +66.51415854270603 1614760535.9 +61.857422382563456 1614764516.3 +57.997019763368684 1614768496.8 +54.3011390478363 1614772477.3 +50.070045235665056 1614776457.8 +43.814155889616394 1614780438.2 +30.982092049315625 1614784418.7 +0.0 1614788399.2 +83.4141988078155 1614838843.9 +72.71369221745996 1614842848 +66.1975504659134 1614846852.1 +61.51788383849518 1614850856.3 +57.62632857039221 1614854860.4 +53.86446548563267 1614858864.5 +49.50508400641785 1614862868.7 +42.954112534552316 1614866872.8 +29.30505724113902 1614870876.9 +0.0 1614874881.1 +83.2629806734963 1614925112.2 +72.42823678957555 1614929140 +65.87726531771 1614933167.9 +61.178345294426926 1614937195.7 +57.24968775089408 1614941223.5 +53.42779192342903 1614945251.3 +48.94012277717066 1614949279.2 +42.08671503666672 1614953307 +27.593192712643454 1614957334.8 +0.0 1614961362.7 +83.09986328613377 1615011380 +72.13910429028033 1615015431.5 +65.55698016950659 1615019483.1 +60.83653419524775 1615023534.6 +56.87899655791761 1615027586.2 +52.9911183612254 1615031637.7 +48.37148447651268 1615035689.3 +41.211095357148544 1615039740.8 +25.850175535239682 1615043792.4 +0.0 1615047844 +82.93674589877124 1615097647.2 +71.84402216446347 1615101722.5 +65.23301794989243 1615105797.8 +60.49104602465781 1615109873.1 +56.502355738419475 1615113948.4 +52.54849517250009 1615118023.7 +47.80284617585472 1615122099 +40.328121534808844 1615126174.3 +24.06637901099528 1615130249.6 +0.0 1615134325 +82.76400181347626 1615183913.9 +71.54299041212492 1615188013 +64.9031061037566 1615192112.1 +60.14555785406788 1615196211.1 +56.12571491892134 1615200310.2 +52.10587198377479 1615204409.3 +47.224581177264334 1615208508.4 +39.43324845942581 1615212607.5 +22.24775276643191 1615216706.6 +0.0 1615220805.7 +82.5912577281813 1615270180.1 +71.24423121489731 1615274303 +64.57687132903152 1615278425.9 +59.80006968347794 1615282548.8 +55.745397028012434 1615286671.7 +51.6655213501604 1615290794.6 +46.64999325008469 1615294917.5 +38.52874868611034 1615299040.3 +20.388347175027906 1615303163.2 +0.0 1615307286.1 +82.40293731843224 1615356445.9 +70.93357276462633 1615360592.6 +64.24100985637402 1615364739.3 +59.45458151288801 1615368886 +55.3687562085143 1615373032.7 +51.2228981614351 1615377179.5 +46.069455696383386 1615381326.2 +37.624248912794876 1615385472.9 +18.4977889347157 1615389619.6 +0.0 1615393766.3 +82.21461690868317 1615442711.3 +70.6192372429446 1615446881.8 +63.90742093882743 1615451052.4 +59.10909334229808 1615455222.9 +54.99211538901617 1615459393.5 +50.78027497270979 1615463564 +45.49119069779298 1615467734.6 +36.71012244154697 1615471905.1 +16.566451347562868 1615476075.7 +0.0 1615480246.2 +82.02261942752332 1615528976.3 +70.30490172126288 1615533170.7 +63.57155946616992 1615537365.1 +58.75765554518648 1615541559.5 +54.611797498107265 1615545753.9 +50.337651783984484 1615549948.3 +44.906976072680926 1615554142.7 +35.78409671725574 1615558337.1 +14.603961111501826 1615562531.5 +0.0 1615566725.9 +81.8127730667985 1615615240.9 +69.97866694653779 1615619459.2 +63.235697993512424 1615623677.5 +58.40849030318578 1615627895.7 +54.23515667860913 1615632114 +49.89135152384843 1615636332.3 +44.32276144756886 1615640550.6 +34.86034354807541 1615644768.8 +12.606641155121824 1615648987.1 +0.0 1615653205.4 +81.60519926118457 1615701505.3 +69.65470472692363 1615705747.4 +62.89020982292249 1615709989.6 +58.05705250607418 1615714231.7 +53.85483878770024 1615718473.9 +49.448728335123114 1615722716 +43.73259719593513 1615726958.2 +33.92469112585173 1615731200.3 +10.584118176355286 1615735442.4 +0.0 1615739684.6 +81.38204913111653 1615787769.3 +69.31884325426614 1615792035.4 +62.54839872374332 1615796301.4 +57.707887264073484 1615800567.4 +53.47452089679133 1615804833.5 +49.006105146397815 1615809099.5 +43.14838257082305 1615813365.5 +32.9853616322173 1615817631.5 +8.542341801723884 1615821897.6 +0.0 1615826163.6 +81.15294937452683 1615874033.1 +68.98298178160863 1615878323.1 +62.20291055315339 1615882613 +57.35049984044021 1615886902.9 +53.0978800772932 1615891192.8 +48.55980488626175 1615895482.7 +42.558218319189315 1615899772.7 +32.04375958347196 1615904062.6 +6.479039476116713 1615908352.5 +0.0 1615912642.4 +80.91422292000468 1615960296.7 +68.6374936110187 1615964610.5 +61.85374531115269 1615968924.4 +57.00133459843951 1615973238.2 +52.7175621863843 1615977552 +48.11718169753645 1615981865.8 +41.96805406755558 1615986179.6 +31.09848046331586 1615990493.4 +4.400160826055441 1615994807.2 +0.0 1615999121.1 +80.66586976755013 1616046560.1 +68.2860558139071 1616050897.8 +61.50230751404107 1616055235.5 +56.643947174806236 1616059573.3 +52.334971740364495 1616063911 +47.67088143740039 1616068248.7 +41.380162371032746 1616072586.4 +30.14952427174899 1616076924.1 +2.3272318025158385 1616081261.8 +0.0 1616085599.5 +80.40194029064146 1616132823.4 +67.93094094538473 1616137185 +61.14719264551873 1616141546.6 +56.29478193280554 1616145908.2 +51.96060347597727 1616150269.8 +47.22825824867509 1616154631.4 +40.789998119399016 1616158993 +29.194618453660457 1616163354.6 +0.25430277897623504 1616167716.2 +0.0 1616172077.8 +80.13206118721112 1616219086.5 +67.5698764503407 1616223472 +60.795754848407114 1616227857.5 +55.937394509172265 1616232243 +51.578013029957454 1616236628.5 +46.78563505994979 1616241014 +40.19983386776527 1616245399.5 +28.243389706982683 1616249784.9 +0.0 1616254170.4 +0.0 1616258555.9 +79.84292868791593 1616305349.5 +67.2051348838859 1616309758.8 +60.44063997988476 1616314168.2 +55.582279640649894 1616318577.6 +51.201372210459326 1616322987 +46.34528442633539 1616327396.4 +39.60599254472078 1616331805.8 +27.28848388889416 1616336215.2 +0.0 1616340624.6 +0.0 1616345033.9 +79.5418969355774 1616391612.4 +66.83444369090944 1616396045.7 +60.07957548484072 1616400478.9 +55.22716477212754 1616404912.2 +50.8270039460721 1616409345.5 +45.90266123761008 1616413778.7 +39.01582829308704 1616418212 +26.327628444283945 1616422645.3 +0.0 1616427078.6 +0.0 1616431511.8 +79.22756141389566 1616477875.3 +66.4578028714113 1616482332.4 +59.71851098979668 1616486789.6 +54.87204990360517 1616491246.7 +50.450363126573954 1616495703.9 +45.46003804888478 1616500161 +38.42793659656421 1616504618.2 +25.372722626195415 1616509075.3 +0.0 1616513532.4 +0.0 1616517989.6 +78.89764956775981 1616564138.2 +66.07153535398074 1616568619.2 +59.357446494752644 1616573100.2 +54.52061210649357 1616577581.2 +50.07372230707582 1616582062.2 +45.02336448668115 1616586543.2 +37.83777234493047 1616591024.2 +24.41781680810688 1616595505.2 +0.0 1616599986.2 +0.0 1616604467.2 +78.54621177064821 1616650401.1 +65.6793182100285 1616654905.9 +58.99270492829785 1616659410.8 +54.1654972379712 1616663915.7 +49.697081487577684 1616668420.5 +44.58074129795585 1616672925.4 +37.24760809329673 1616677430.2 +23.46291099001835 1616681935.1 +0.0 1616686439.9 +0.0 1616690944.8 +78.17552057767176 1616736664.1 +65.2834239946655 1616741192.7 +58.62569080673214 1616745721.4 +53.80810981433793 1616750250.1 +49.322713223190455 1616754778.8 +44.14406773575222 1616759307.5 +36.663393468184665 1616763836.2 +22.511682243340573 1616768364.9 +0.0 1616772893.6 +0.0 1616777422.3 +77.78330343371952 1616822927.1 +64.88158015278084 1616827479.6 +58.25499961375567 1616832032.1 +53.45299494581556 1616836584.6 +48.952022030213996 1616841137.1 +43.70739417354859 1616845689.7 +36.07550177166184 1616850242.2 +21.556776425252043 1616854794.7 +0.0 1616859347.2 +0.0 1616863899.7 +77.37183289390242 1616909190.3 +64.47010961296372 1616913766.6 +57.884308420779206 1616918342.9 +53.0978800772932 1616922919.2 +48.58133083723752 1616927495.5 +43.27439768275572 1616932071.8 +35.48901459143886 1616936648.1 +20.611497305095938 1616941224.4 +0.0 1616945800.8 +0.0 1616950377.1 +76.93515933169878 1616995453.6 +64.05863907314662 1617000053.6 +57.51361722780274 1617004653.7 +52.742765208770834 1617009253.8 +48.208367089150144 1617013853.9 +42.83772412055208 1617018454 +34.904799966326806 1617023054.1 +19.66621818493984 1617027654.2 +0.0 1617032254.3 +0.0 1617036854.4 +76.46733312058694 1617081717 +63.63159220887542 1617086340.9 +57.142926034826274 1617090964.7 +52.39132741165923 1617095588.6 +47.837675896173685 1617100212.4 +42.41067725628088 1617104836.3 +34.32653496773641 1617109460.1 +18.720939064783735 1617114084 +0.0 1617118707.8 +0.0 1617123331.7 +75.97430388708858 1617167980.7 +63.20454534460422 1617172628.3 +56.76628521532813 1617177275.9 +52.03621254313686 1617181923.4 +47.47293432971889 1617186571 +41.979953320598916 1617191218.6 +33.7459974140351 1617195866.2 +17.785286642560063 1617200513.8 +0.0 1617205161.3 +0.0 1617209808.9 +75.4523945597929 1617254244.6 +62.76787178240059 1617258915.9 +56.389644395830004 1617263587.2 +51.684774746025255 1617268258.5 +47.10224313674242 1617272929.7 +41.55290645632771 1617277601 +33.1677324154447 1617282272.3 +16.85558384685807 1617286943.6 +0.0 1617291614.9 +0.0 1617296286.2 +74.8874333305457 1617340508.8 +62.32524859367529 1617345203.8 +56.015276131442775 1617349898.7 +51.333336948913654 1617354593.7 +46.74117864169839 1617359288.6 +41.125859592056514 1617363983.6 +32.59314448826506 1617368678.5 +15.925881051156065 1617373373.5 +0.0 1617378068.4 +0.0 1617382763.4 +74.29359200750122 1617426773.3 +61.87894833353923 1617431491.9 +55.63863531194464 1617436210.5 +50.97822208039129 1617440929.1 +46.37416452013269 1617445647.7 +40.69881272778531 1617450366.2 +32.018556561085425 1617455084.8 +15.005804953386495 1617459803.4 +0.0 1617464522 +0.0 1617469240.6 +73.65897133761608 1617513038.1 +61.42074882035981 1617517780.3 +55.258317421035734 1617522522.5 +50.629056838390596 1617527264.7 +46.013100025088654 1617532006.9 +40.281392561446545 1617536749.1 +31.449918260427463 1617541491.3 +14.097628108660267 1617546233.5 +0.0 1617550975.7 +0.0 1617555717.9 +72.97762169436864 1617599303.2 +60.95887223576965 1617604069 +54.87572697501594 1617608834.8 +50.27761904127899 1617613600.5 +45.65430808515553 1617618366.3 +39.86029532369702 1617623132.1 +30.881279959769497 1617627897.8 +13.187178708823126 1617632663.6 +0.0 1617637429.4 +0.0 1617642195.1 +72.25549270428057 1617685568.8 +60.487368953247056 1617690358.1 +54.49540908410704 1617695147.4 +49.932130870689065 1617699936.7 +45.29692066152225 1617704726 +39.442875157358245 1617709515.2 +30.31631873052229 1617714304.5 +12.288628562029333 1617719093.8 +0.0 1617723883.1 +0.0 1617728672.4 +71.49258436735187 1617771834.8 +60.00764348909188 1617776647.5 +54.10914156667647 1617781460.3 +49.58069307357746 1617786273.1 +44.9418057929999 1617791085.9 +39.02772754613038 1617795898.6 +29.757307127796757 1617800711.4 +11.397432558057055 1617805524.2 +0.0 1617810337 +0.0 1617815149.7 +70.6792699856501 1617858101.2 +59.52056388211518 1617862937.4 +53.72882367576757 1617867773.6 +49.23520490298752 1617872609.8 +44.58669092447752 1617877446 +38.616257006313276 1617882282.2 +29.19829552507122 1617887118.5 +10.51813580712812 1617891954.7 +0.0 1617896790.9 +0.0 1617901627.1 +69.82149918569694 1617944368.1 +59.02753464861681 1617949227.7 +53.342556158337 1617954087.3 +48.889716732397595 1617958946.9 +44.23525312736592 1617963806.5 +38.20846353790694 1617968666.1 +28.645233548867353 1617973525.7 +9.644788682720854 1617978385.3 +0.0 1617983244.9 +0.0 1617988104.5 +68.9266261103139 1618030635.6 +58.530828343707675 1618035518.5 +52.956288640906436 1618040401.4 +48.54422856180764 1618045284.3 +43.88381533025432 1618050167.3 +37.802942624611504 1618055050.2 +28.09584864407425 1618059933.1 +8.78106825624602 1618064816.1 +0.0 1618069699 +0.0 1618074581.9 +67.98729661667946 1618116903.6 +58.02222278575522 1618121809.8 +52.57002112347587 1618126716 +48.20469001773938 1618131622.2 +43.53465008825362 1618136528.4 +37.401098782726834 1618141434.6 +27.54646373928115 1618146340.8 +7.926974527703615 1618151247 +0.0 1618156153.2 +0.0 1618161059.4 +67.01086484761515 1618203172.1 +57.50766760128107 1618208101.6 +52.1837536060453 1618213031 +47.86287891856021 1618217960.4 +43.18916191766368 1618222889.8 +36.999254940842164 1618227819.3 +27.008978087531393 1618232748.7 +7.078830425682883 1618237678.1 +0.0 1618242607.5 +0.0 1618247537 +66.00923005616433 1618289441.3 +56.98575827398541 1618294393.9 +51.79748608861473 1618299346.5 +47.52334037449195 1618304299.1 +42.847350818484514 1618309251.7 +36.60336072547917 1618314204.2 +26.469219880670714 1618319156.8 +6.24626264811625 1618324109.4 +0.0 1618329062 +0.0 1618334014.6 +64.98466479743786 1618375711.2 +56.45562676505717 1618380686.9 +51.41121857118416 1618385662.5 +47.1838018304237 1618390638.2 +42.50781227441625 1618395613.9 +36.20746651011617 1618400589.5 +25.937683855442618 1618405565.2 +5.4233215684820495 1618410540.9 +0.0 1618415516.5 +0.0 1618420492.2 +63.93630103262472 1618461981.7 +55.9181411133074 1618466980.4 +51.01900142723192 1618471979.1 +46.84794035776619 1618476977.8 +42.17195080175874 1618481976.5 +35.81524936616394 1618486975.2 +25.40755234651438 1618491973.9 +4.610007186780281 1618496972.5 +0.0 1618501971.2 +0.0 1618506969.9 +62.86868387194672 1618548253 +55.37470583503597 1618553274.6 +50.63273390980136 1618558296.3 +46.512078885108686 1618563317.9 +41.83608932910125 1618568339.5 +35.428981848733365 1618573361.2 +24.87969339269705 1618578382.8 +3.806319503010943 1618583404.4 +0.0 1618588426 +0.0 1618593447.7 +61.79144001333628 1618634525.1 +54.8193713037212 1618639569.5 +50.246466392370785 1618644614 +46.18216703897286 1618649658.5 +41.50250041155465 1618654703 +35.048663957824466 1618659747.5 +24.361461136812146 1618664792 +3.018208143695706 1618669836.5 +0.0 1618674881 +0.0 1618679925.5 +60.69494275886098 1618720797.9 +54.260359700995664 1618725865.2 +49.860198874940224 1618730932.4 +45.85225519283702 1618735999.7 +41.176265636829584 1618741067 +34.66607351180466 1618746134.2 +23.849178507448915 1618751201.5 +2.24199603742381 1618756268.8 +0.0 1618761336 +0.0 1618766403.3 +59.582869179931585 1618807071.6 +53.69767102685937 1618812161.5 +49.47025428609889 1618817251.5 +45.52602041811195 1618822341.4 +40.85003086210451 1618827431.4 +34.29170524741744 1618832521.4 +23.340572949496448 1618837611.3 +1.4731380739734345 1618842701.3 +0.0 1618847791.2 +0.0 1618852881.2 +58.45294672143717 1618893346.1 +53.12308309967973 1618898458.7 +49.083986768668325 1618903571.2 +45.19610857197612 1618908683.8 +40.526068642490344 1618913796.3 +33.91874149933007 1618918908.9 +22.837917018065646 1618924021.4 +0.7161793635664003 1618929134 +0.0 1618934246.6 +0.0 1618939359.1 +57.30972049359958 1618979621.6 +52.538868474567664 1618984756.6 +48.697719251237764 1618989891.7 +44.87582342377273 1618995026.7 +40.20578349428694 1619000161.8 +33.548050306353595 1619005296.8 +22.338938158045607 1619010431.9 +0.0 1619015566.9 +0.0 1619020702 +0.0 1619025837.1 +56.147240869897104 1619065898 +51.9546538494556 1619071055.4 +48.31145173380718 1619076212.9 +44.555538275569326 1619081370.3 +39.891447972605214 1619086527.8 +33.1833087398988 1619091685.2 +21.845908924547242 1619096842.7 +0.0 1619102000.1 +0.0 1619107157.6 +0.0 1619112315 +54.96323529521887 1619152175.3 +51.360812526411095 1619157355.1 +47.928861287787385 1619162534.8 +44.23525312736592 1619167714.6 +39.57483989581257 1619172894.3 +32.822244244854765 1619178074 +21.358829317570542 1619183253.8 +0.0 1619188433.5 +0.0 1619193613.2 +0.0 1619198793 +53.75770376956487 1619238453.8 +50.76102157684493 1619243655.7 +47.54259377035682 1619248857.6 +43.92091760568419 1619254059.5 +39.266454000652516 1619259261.4 +32.4671293763324 1619264463.3 +20.87542678200461 1619269665.2 +0.0 1619274867.1 +0.0 1619280069 +0.0 1619285270.9 +52.538868474567664 1619324733.2 +50.155281000757086 1619329957.2 +47.162275879447925 1619335181.2 +43.60430952889155 1619340405.1 +38.96174517690321 1619345629.1 +32.115691579220794 1619350853 +20.39797387296034 1619356077 +0.0 1619361301 +0.0 1619366524.9 +0.0 1619371748.9 +51.29483015718393 1619411013.8 +49.54586335325849 1619416259.7 +46.77600836201736 1619421505.6 +43.29592363373148 1619426751.5 +38.65703635315391 1619431997.4 +31.770203408630863 1619437243.2 +19.930147661848505 1619442489.1 +0.0 1619447735 +0.0 1619452980.9 +0.0 1619458226.8 +50.03294296023519 1619497295.6 +48.92681900782747 1619502563.2 +46.399367542519215 1619507830.9 +42.98526518346052 1619513098.6 +38.356004600815375 1619518366.3 +31.42471523804093 1619523633.9 +19.46827107725834 1619528901.6 +0.0 1619534169.3 +0.0 1619539437 +0.0 1619544704.6 +48.74812529601083 1619583578.5 +48.30550210728551 1619588867.8 +46.019049651610324 1619594157.1 +42.68055635971122 1619599446.5 +38.0609224749985 1619604735.8 +31.085176693972667 1619610025.1 +19.010071564078938 1619615314.4 +0.0 1619620603.8 +0.0 1619625893.1 +0.0 1619631182.4 +47.44178168081069 1619669862.6 +47.67683106392206 1619675173.5 +45.64240883211219 1619680484.3 +42.381797162483586 1619685795.1 +37.7717899757033 1619691106 +30.749315221315157 1619696416.8 +18.557821677421202 1619701727.6 +0.0 1619707038.5 +0.0 1619712349.3 +0.0 1619717660.1 +43.656988128775524 1619756148.1 +47.04588746544769 1619761480.3 +45.26804056772495 1619766812.4 +42.08076541014505 1619772144.6 +37.48265747640811 1619777476.8 +30.41940337517933 1619782809 +18.1151984886959 1619788141.2 +0.0 1619793473.3 +0.0 1619798805.5 +0.0 1619804137.7 +44.75943500977249 1619842434.8 +46.411266795562554 1619847788.2 +44.89139974822683 1619853141.6 +41.78568328432819 1619858494.9 +37.197202048523664 1619863848.3 +30.093168600454256 1619869201.7 +17.678524926492262 1619874555.1 +0.0 1619879908.4 +0.0 1619885261.8 +0.0 1619890615.2 +41.91397095137175 1619928722.9 +45.770696499155754 1619934097.3 +44.52070855525036 1619939471.7 +41.49655078503299 1619944846.1 +36.9176962471609 1619950220.5 +29.778833078772525 1619955594.9 +17.2478009908103 1619960969.3 +0.0 1619966343.7 +0.0 1619971718.1 +0.0 1619977092.5 +41.98363039200968 1620015012.5 +45.13012620274895 1620020407.7 +44.153694433684656 1620025802.9 +41.20741828573778 1620031198.2 +36.6441400723198 1620036593.4 +29.46222500197989 1620041988.7 +16.82443119794987 1620047383.9 +0.0 1620052779.1 +0.0 1620058174.4 +0.0 1620063569.6 +36.832460482068875 1620101303.4 +44.483606279820485 1620106719.3 +43.78895286722985 1620112135.2 +40.921962857853345 1620117551.1 +36.3683113423678 1620122967 +29.147889480298154 1620128382.9 +16.409283586722005 1620133798.8 +0.0 1620139214.7 +0.0 1620144630.6 +0.0 1620150046.6 +35.25028813691674 1620187595.9 +43.83340928548126 1620193032.3 +43.42193874566415 1620198468.7 +40.64245705649058 1620203905 +36.10070479404837 1620209341.4 +28.843180656548856 1620214777.8 +15.997813046904904 1620220214.1 +0.0 1620225650.5 +0.0 1620231086.9 +0.0 1620236523.2 +30.555045185044424 1620273889.9 +43.18321229114201 1620279346.6 +43.06087425062012 1620284803.2 +40.36890088164947 1620290259.9 +35.84045238855046 1620295716.5 +28.544421459321224 1620301173.1 +15.595969205020234 1620306629.8 +0.0 1620312086.4 +0.0 1620317543 +0.0 1620322999.7 +26.91779269591769 1620360185.6 +42.53301529680278 1620365662.2 +42.70575938209775 1620371138.9 +40.09307215169747 1620376615.6 +35.58247253816348 1620382092.3 +28.249339333504352 1620387569 +15.200074989657233 1620393045.7 +0.0 1620398522.4 +0.0 1620403999.1 +0.0 1620409475.8 +21.510047451889736 1620446482.8 +41.88281830246355 1620451979.3 +42.354321584986145 1620457475.9 +39.82546560337805 1620462972.4 +35.32816975918723 1620468468.9 +27.960206834209156 1620473965.5 +14.813807472226667 1620479462 +0.0 1620484958.5 +0.0 1620490455.1 +0.0 1620495951.6 +13.43185478986693 1620532781.7 +41.23629837953508 1620538297.9 +42.005156342985444 1620543814 +39.561536126469385 1620549330.2 +35.07754405162176 1620554846.3 +27.67475140632472 1620560362.5 +14.431217026206857 1620565878.6 +0.0 1620571394.8 +0.0 1620576910.9 +0.0 1620582427.1 +0.0 1620619082.4 +40.586101385195846 1620624617.9 +41.65371854587384 1620630153.5 +39.30128372097148 1620635689 +34.82919089916721 1620641224.5 +27.39524560496196 1620646760 +14.056848761819632 1620652295.5 +0.0 1620657831.1 +0.0 1620663366.6 +0.0 1620668902.1 +0.0 1620705384.9 +39.935904390856614 1620710939.5 +41.31418000180558 1620716494.2 +39.046980941995244 1620722048.8 +34.590464444645065 1620727603.5 +27.125366501531627 1620733158.1 +13.695784266775595 1620738712.8 +0.0 1620744267.4 +0.0 1620749822 +0.0 1620755376.7 +0.0 1620791689.2 +39.29165702303904 1620797262.7 +40.97831852914808 1620802836.2 +38.792678163019005 1620808409.7 +34.351737990122935 1620813983.2 +26.85548739810129 1620819556.7 +13.334719771731566 1620825130.3 +0.0 1620830703.8 +0.0 1620836277.3 +0.0 1620841850.8 +0.0 1620877995.3 +38.65108672663224 1620883587.5 +40.64245705649058 1620889179.6 +38.54432501056444 1620894771.7 +34.12263823353324 1620900363.8 +26.59750754771429 1620905955.9 +12.98328197461996 1620911548 +0.0 1620917140.2 +0.0 1620922732.3 +0.0 1620928324.4 +0.0 1620964303.5 +38.01051643022544 1620969913.9 +40.31254521035475 1620975524.3 +38.305598556042305 1620981134.8 +33.89948810346521 1620986745.2 +26.337255142216378 1620992355.7 +12.643743430551698 1620997966.1 +0.0 1621003576.5 +0.0 1621009187 +0.0 1621014797.4 +0.0 1621050613.5 +37.3758957603403 1621056242 +39.986310435629676 1621061870.5 +38.066872101520175 1621067499 +33.676337973397175 1621073127.4 +26.088901989761812 1621078755.9 +12.307881957894194 1621084384.4 +0.0 1621090012.9 +0.0 1621095641.3 +0.0 1621101269.8 +0.0 1621136925.7 +36.74495216186594 1621142571.9 +39.66602528742627 1621148218.1 +37.8318227184088 1621153864.3 +33.462814541261565 1621159510.5 +25.844225908718013 1621165156.7 +11.981647183169123 1621170802.9 +0.0 1621176449.1 +0.0 1621182095.4 +0.0 1621187741.6 +0.0 1621223239.9 +36.119958189913234 1621228903.5 +39.35763939226621 1621234567.2 +37.60499551693 1621240230.8 +33.24929110912597 1621245894.4 +25.60549945419588 1621251558.1 +11.663634590076631 1621257221.7 +0.0 1621262885.3 +0.0 1621268549 +0.0 1621274212.6 +0.0 1621309556.2 +35.50459091589296 1621315237 +39.046980941995244 1621320917.7 +37.38552245827274 1621326598.4 +33.04539437492279 1621332279.2 +25.372722626195415 1621337959.9 +11.356653211216422 1621343640.7 +0.0 1621349321.4 +0.0 1621355002.1 +0.0 1621360682.9 +0.0 1621395874.7 +34.89517326839437 1621401572.3 +38.74227211824594 1621407269.8 +37.16604939961547 1621412967.3 +32.8474472672413 1621418664.8 +25.14957249612738 1621424362.3 +11.05194438746712 1621430059.8 +0.0 1621435757.3 +0.0 1621441454.9 +0.0 1621447152.4 +0.0 1621482195.5 +34.29170524741744 1621487909.4 +38.44718999242907 1621493623.4 +36.952525967479865 1621499337.3 +32.6495001595598 1621505051.3 +24.930099437470115 1621510765.2 +10.762811888171923 1621516479.2 +0.0 1621522193.1 +0.0 1621527907 +0.0 1621533621 +0.0 1621568518.5 +33.69559136926204 1621574248.6 +38.158057493133875 1621579978.6 +36.75090178838761 1621585708.6 +32.46117974981073 1621591438.6 +24.71657600533451 1621597168.6 +10.473679388876725 1621602898.6 +0.0 1621608628.6 +0.0 1621614358.7 +0.0 1621620088.7 +0.0 1621654843.9 +33.111376744149965 1621660589.6 +37.87260206524944 1621666335.4 +36.54700505418443 1621672081.1 +32.27880896658333 1621677826.8 +24.50900219972058 1621683572.5 +10.20012321403563 1621689318.2 +0.0 1621695064 +0.0 1621700809.7 +0.0 1621706555.4 +0.0 1621741171.7 +32.542738443492006 1621746932.7 +37.593096263886665 1621752693.8 +36.35500757302461 1621758454.8 +32.09643818335593 1621764215.9 +24.305105465517414 1621769976.9 +9.933921182016052 1621775738 +0.0 1621781499 +0.0 1621787260.1 +0.0 1621793021.1 +0.0 1621827501.9 +31.977777214244796 1621833277.8 +37.32548971556724 1621839053.8 +36.16073753675387 1621844829.8 +31.923694098060967 1621850605.8 +24.113107984357583 1621856381.8 +9.675941331629057 1621862157.8 +0.0 1621867933.8 +0.0 1621873709.8 +0.0 1621879485.7 +0.0 1621913834.5 +31.42471523804093 1621919625 +37.059287683547666 1621925415.6 +35.97836675352647 1621931206.1 +31.754627084176757 1621936996.6 +23.924787574608512 1621942787.1 +9.421638552652821 1621948577.7 +0.0 1621954368.2 +0.0 1621960158.7 +0.0 1621965949.2 +0.0 1622000169.7 +30.887229586291166 1622005974.3 +36.80725745968235 1622011779 +35.79967304170984 1622017583.6 +31.597459323335894 1622023388.3 +23.742416791381117 1622029192.9 +9.182912098130688 1622034997.6 +0.0 1622040802.2 +0.0 1622046606.9 +0.0 1622052411.5 +0.0 1622086507.4 +30.363047703884593 1622092325.8 +36.556631752116864 1622098144.1 +35.62692895641487 1622103962.5 +31.44029156249503 1622109780.8 +23.563723079564483 1622115599.2 +8.947862715019317 1622121417.5 +0.0 1622127235.9 +0.0 1622133054.2 +0.0 1622138872.6 +0.0 1622172847.8 +29.848492519410456 1622178679.4 +36.31790529759473 1622184511 +35.463811569052325 1622190342.6 +31.286800873064927 1622196174.3 +23.396928620791183 1622202005.9 +8.724712584951282 1622207837.5 +0.0 1622213669.1 +0.0 1622219500.7 +0.0 1622225332.3 +0.0 1622259190.8 +29.351786214501324 1622265035.3 +36.08512846959427 1622270879.7 +35.3029667368007 1622276724.1 +31.14520943667816 1622282568.5 +23.237488304839406 1622288413 +8.511189152815682 1622294257.4 +0.0 1622300101.8 +0.0 1622305946.3 +0.0 1622311790.7 +0.0 1622345536.6 +28.868383678935388 1622351393.4 +35.86197833952623 1622357250.1 +35.1494760473706 1622363106.9 +31.00729507170216 1622368963.7 +23.08032054399854 1622374820.5 +8.309564973723424 1622380677.3 +0.0 1622386534 +0.0 1622392390.8 +0.0 1622398247.6 +0.0 1622431885 +28.40650709434522 1622437753.7 +35.642505280868974 1622443622.4 +35.00193498446216 1622449491 +30.875330333247827 1622455359.7 +22.932779481090108 1622461228.4 +8.111617866041925 1622467097.1 +0.0 1622472965.7 +0.0 1622478834.4 +0.0 1622484703.1 +0.0 1622518236.3 +27.954257207687487 1622524116.4 +35.434931475255034 1622529996.4 +34.86034354807541 1622535876.5 +30.749315221315157 1622541756.6 +22.791188044703343 1622547636.7 +7.923297456292855 1622553516.7 +0.0 1622559396.8 +0.0 1622565276.9 +0.0 1622571157 +0.0 1622604590.4 +27.52126071689462 1622610481.3 +35.236984367573534 1622616372.3 +34.72837880962106 1622622263.3 +30.62697718079326 1622628154.3 +22.659223306249007 1622634045.3 +7.744603744476217 1622639936.3 +0.0 1622645827.3 +0.0 1622651718.3 +0.0 1622657609.2 +0.0 1622690947.3 +27.109790177077524 1622696848.7 +35.048663957824466 1622702750.1 +34.6000911425775 1622708651.5 +30.51426583820379 1622714552.9 +22.53093563920544 1622720454.3 +7.577809285702921 1622726355.7 +0.0 1622732257.1 +0.0 1622738158.5 +0.0 1622744059.9 +0.0 1622777307.1 +26.713895961714513 1622783218.4 +34.864020619486176 1622789129.7 +34.477753102055594 1622795041 +30.403827050725226 1622800952.3 +22.410870153794445 1622806863.6 +7.418368969751145 1622812774.9 +0.0 1622818686.2 +0.0 1622824597.5 +0.0 1622830508.8 +0.0 1622863669.8 +26.337255142216378 1622869590.5 +34.697226160712866 1622875511.2 +34.36136468805537 1622881431.8 +30.300742406068192 1622887352.5 +22.292209184683305 1622893273.2 +7.267150835431951 1622899193.9 +0.0 1622905114.5 +0.0 1622911035.2 +0.0 1622916955.9 +0.0 1622950035.5 +25.97846320228325 1622955965 +34.53410877335033 1622961894.5 +34.25460297198757 1622967824.1 +30.205879943043726 1622973753.6 +22.185447468615507 1622979683.1 +7.125559399045186 1622985612.6 +0.0 1622991542.1 +0.0 1622997471.7 +0.0 1623003401.2 +0.0 1623036404.2 +25.64260172962575 1623042342 +34.38289063903113 1623048279.8 +34.15379088244144 1623054217.6 +30.118371622840794 1623060155.5 +22.090585005591045 1623066093.3 +6.993594660590854 1623072031.1 +0.0 1623077968.9 +0.0 1623083906.8 +0.0 1623089844.6 +0.0 1623122775.8 +25.325993652833112 1623128721.4 +34.23902664753347 1623134667 +34.06260549082774 1623140612.6 +30.033135857748764 1623146558.1 +21.993449987455676 1623152503.7 +6.874933691479712 1623158449.3 +0.0 1623164394.9 +0.0 1623170340.5 +0.0 1623176286 +0.0 1623209150.5 +25.03318408212715 1623215103.3 +34.107061909079135 1623221056 +33.9750971706248 1623227008.8 +29.955254235478257 1623232961.6 +21.91189129377441 1623238914.4 +6.758545277479481 1623244867.2 +0.0 1623250819.9 +0.0 1623256772.7 +0.0 1623262725.5 +0.0 1623295528.2 +24.757355352175146 1623301487.6 +33.98699642366814 1623307447 +33.89353847694353 1623313406.4 +29.88559479484033 1623319365.9 +21.830332600093143 1623325325.3 +6.65773318793335 1623331284.7 +0.0 1623337244.1 +0.0 1623343203.5 +0.0 1623349162.9 +0.0 1623381909 +24.50900219972058 1623387874.4 +33.874285081078675 1623393839.9 +33.817929409783936 1623399805.4 +29.823289497023925 1623405770.9 +21.760673159455212 1623411736.3 +6.566547796319651 1623417701.8 +0.0 1623423667.3 +0.0 1623429632.8 +0.0 1623435598.2 +0.0 1623468292.8 +24.27990244313088 1623474263.7 +33.773472991532536 1623480234.7 +33.751947040556765 1623486205.7 +29.763256754318427 1623492176.6 +21.698367861638808 1623498147.6 +6.484989102638384 1623504118.6 +0.0 1623510089.5 +0.0 1623516060.5 +0.0 1623522031.4 +0.0 1623554679.7 +24.07232863751695 1623560655.6 +33.68001504480794 1623566631.4 +33.69559136926204 1623572607.3 +29.712850709545357 1623578583.1 +21.642012190344072 1623584559 +6.407107480367878 1623590534.9 +0.0 1623596510.7 +0.0 1623602486.6 +0.0 1623608462.4 +0.0 1623641069.7 +23.89363492570031 1623647049.8 +33.60072890623757 1623653030 +33.64518532448897 1623659010.2 +29.666121736183058 1623664990.4 +21.591606145571003 1623670970.5 +6.341125111140711 1623676950.7 +0.0 1623682930.9 +0.0 1623688911 +0.0 1623694891.2 +0.0 1623727462.7 +23.736467164859448 1623733446.6 +33.534746537010406 1623739430.5 +33.60072890623757 1623745414.4 +29.63129201586409 1623751398.3 +21.550826798730373 1623757382.2 +6.290719066367646 1623763366.1 +0.0 1623769349.9 +0.0 1623775333.8 +0.0 1623781317.7 +0.0 1623813858.9 +23.598552799883446 1623819845.9 +33.472441239194 1623825832.9 +33.559949559396934 1623831819.9 +29.596462295545127 1623837806.9 +21.515997078411406 1623843793.9 +6.24626264811625 1623849780.9 +0.0 1623855767.9 +0.0 1623861754.9 +0.0 1623867741.9 +0.0 1623900258.1 +23.488114012404882 1623906247.6 +33.427984820942605 1623912237.2 +33.52879691048874 1623918226.7 +29.568986718047686 1623924216.2 +21.484844429503205 1623930205.7 +6.209160372686378 1623936195.2 +0.0 1623942184.7 +0.0 1623948174.3 +0.0 1623954163.8 +0.0 1623986660.4 +23.400605692201946 1623992651.8 +33.39088254551273 1623998643.3 +33.507270959512965 1624004634.7 +29.549733322182824 1624010626.1 +21.465591033638344 1624016617.6 +6.183957350299845 1624022609 +0.0 1624028600.4 +0.0 1624034591.8 +0.0 1624040583.3 +0.0 1624073065.8 +23.340572949496448 1624079058.5 +33.36200245171544 1624085051.2 +33.49396719016977 1624091044 +29.54010662425039 1624097036.7 +21.453691780595 1624103029.4 +6.1683810258457425 1624109022.2 +0.0 1624115014.9 +0.0 1624121007.6 +0.0 1624127000.4 +0.0 1624159474.2 +23.303470674066578 1624165467.6 +33.3501031986721 1624171461 +33.48206793712643 1624177454.4 +29.530479926317962 1624183447.9 +21.450014709184238 1624189441.3 +6.158754327913312 1624195434.7 +0.0 1624201428.2 +0.0 1624207421.6 +0.0 1624213415 +0.0 1624245885.6 +23.29384397613415 1624251879.1 +33.34642612726134 1624257872.6 +33.48206793712643 1624263866.1 +29.530479926317962 1624269859.6 +21.450014709184238 1624275853.2 +6.164703954434982 1624281846.7 +0.0 1624287840.2 +0.0 1624293833.7 +0.0 1624299827.2 +0.0 1624332300 +23.303470674066578 1624338293 +33.3501031986721 1624344286 +33.4880175636481 1624350279 +29.54010662425039 1624356272 +21.459641407116674 1624362265 +6.180280278889084 1624368258 +0.0 1624374251 +0.0 1624380244 +0.0 1624386237 +0.0 1624418717.4 +23.34425002090721 1624424709.2 +33.371629149647866 1624430701.1 +33.497644261580525 1624436693 +29.549733322182824 1624442684.8 +21.475217731570773 1624448676.7 +6.199533674753948 1624454668.6 +0.0 1624460660.5 +0.0 1624466652.3 +0.0 1624472644.2 +0.0 1624505137.7 +23.406555318723615 1624511127.8 +33.3968321720344 1624517118 +33.519170212556304 1624523108.1 +29.568986718047686 1624529098.2 +21.494471127435638 1624535088.4 +6.2343633950729105 1624541078.5 +0.0 1624547068.7 +0.0 1624553058.8 +0.0 1624559048.9 +0.0 1624591560.9 +23.491791083815645 1624597548.7 +33.43761151887503 1624603536.5 +33.548050306353595 1624609524.3 +29.596462295545127 1624615512.1 +21.525623776343842 1624621499.9 +6.275142741913545 1624627487.7 +0.0 1624633475.5 +0.0 1624639463.3 +0.0 1624645451.2 +0.0 1624677987 +23.604502426405116 1624683971.9 +33.4880175636481 1624689956.8 +33.58515258178347 1624695941.6 +29.63129201586409 1624701926.5 +21.566403123184475 1624707911.4 +6.327821341797518 1624713896.2 +0.0 1624719881.1 +0.0 1624725866 +0.0 1624731850.8 +0.0 1624764416 +23.736467164859448 1624770397.3 +33.548050306353595 1624776378.6 +33.625931928624105 1624782360 +29.666121736183058 1624788341.3 +21.60718247002511 1624794322.6 +6.387854084503016 1624800304 +0.0 1624806285.3 +0.0 1624812266.6 +0.0 1624818248 +0.0 1624850847.7 +23.89363492570031 1624856824.9 +33.619982302102436 1624862802.1 +33.676337973397175 1624868779.3 +29.712850709545357 1624874756.5 +21.66353814131984 1624880733.7 +6.4597860802518525 1624886710.9 +0.0 1624892688.2 +0.0 1624898665.4 +0.0 1624904642.6 +0.0 1624937282.2 +24.076005708927713 1624943254.7 +33.70154099578371 1624949227.2 +33.72674401817024 1624955199.7 +29.763256754318427 1624961172.2 +21.71989381261458 1624967144.7 +6.535395147411449 1624973117.1 +0.0 1624979089.6 +0.0 1624985062.1 +0.0 1624991034.6 +0.0 1625023719.3 +24.28585206965255 1625029686.5 +33.79867601391908 1625035653.7 +33.79272638739741 1625041620.9 +29.819612425613162 1625047588.1 +21.785876181841747 1625053555.3 +6.626580539025148 1625059522.5 +0.0 1625065489.7 +0.0 1625071456.9 +0.0 1625077424.1 +0.0 1625110159.2 +24.51495182624225 1625116120.5 +33.8994881034652 1625122081.8 +33.86465838314624 1625128043.2 +29.88559479484033 1625134004.5 +21.861485249001344 1625139965.8 +6.727392628571277 1625145927.1 +0.0 1625151888.5 +0.0 1625157849.8 +0.0 1625163811.1 +0.0 1625196601.6 +24.763304978696812 1625202556.5 +34.015876517465436 1625208511.4 +33.94026745030583 1625214466.2 +29.955254235478257 1625220421.1 +21.93709431616094 1625226376 +6.834154344639078 1625232330.9 +0.0 1625238285.8 +0.0 1625244240.7 +0.0 1625250195.6 +0.0 1625283046.5 +25.036861153537913 1625288994.4 +34.13821455798734 1625294942.3 +34.02550321539787 1625300890.2 +30.033135857748764 1625306838.1 +22.024602636363877 1625312786 +6.95281531375022 1625318733.8 +0.0 1625324681.7 +0.0 1625330629.6 +0.0 1625336577.5 +0.0 1625369493.9 +25.331943279354782 1625375434.3 +34.27612892296334 1625381374.6 +34.113011535600805 1625387314.9 +30.114694551430027 1625393255.3 +22.11946509938834 1625399195.6 +7.078830425682883 1625405135.9 +0.0 1625411076.3 +0.0 1625417016.6 +0.0 1625422956.9 +0.0 1625455943.8 +25.646278801036512 1625461876 +34.4177203593501 1625467808.2 +34.21382362514694 1625473740.5 +30.199930316522057 1625479672.7 +22.222549744045377 1625485604.9 +7.216744790658886 1625491537.2 +0.0 1625497469.4 +0.0 1625503401.6 +0.0 1625509333.9 +0.0 1625542396 +25.988089900215684 1625548319.6 +34.57488812019097 1625554243.2 +34.316908269803974 1625560166.8 +30.29706533465743 1625566090.3 +22.329311460113175 1625572013.9 +7.35833622704565 1625577937.5 +0.0 1625583861.1 +0.0 1625589784.7 +0.0 1625595708.3 +0.0 1625628850.4 +26.343204768738055 1625634764.9 +34.7380055075535 1625640679.3 +34.42734705728253 1625646593.7 +30.39787742420356 1625652508.2 +22.44569987411341 1625658422.6 +7.515503987886515 1625664337 +0.0 1625670251.5 +0.0 1625676165.9 +0.0 1625682080.3 +0.0 1625715307.2 +26.719845588236183 1625721211.9 +34.91074959284848 1625727116.6 +34.54600802639367 1625733021.4 +30.50463914027136 1625738926.1 +22.56803791463531 1625744830.9 +7.678621375249051 1625750735.6 +0.0 1625756640.4 +0.0 1625762545.1 +0.0 1625768449.9 +0.0 1625801766 +27.115739803599194 1625807660.6 +35.09312037607586 1625813555.1 +34.67202313832633 1625819449.7 +30.61735048286083 1625825344.2 +22.69405302656797 1625831238.8 +7.851365460544018 1625837133.3 +0.0 1625843027.9 +0.0 1625848922.5 +0.0 1625854817 +0.0 1625888227 +27.52721034341629 1625894110.8 +35.287390412346596 1625899994.7 +34.80398787678067 1625905878.6 +30.73968852338273 1625911762.4 +22.831967391543976 1625917646.3 +8.033736243771417 1625923530.2 +0.0 1625929414 +0.0 1625935297.9 +0.0 1625941181.8 +0.0 1625974690 +27.96388390561992 1625980562.6 +35.4853375200281 1625986435.3 +34.941902241756665 1625992308 +30.865703635315395 1625998180.7 +22.96988175651998 1626004053.4 +8.222056653520484 1626009926.1 +0.0 1626015798.8 +0.0 1626021671.5 +0.0 1626027544.2 +0.0 1626061154.9 +28.41245672086689 1626067015.9 +35.69291132564204 1626072877 +35.08349367814343 1626078738 +30.993991302358964 1626084599 +23.121099890839176 1626090460.1 +8.420003761201983 1626096321.1 +0.0 1626102182.1 +0.0 1626108043.2 +0.0 1626113904.2 +0.0 1626147621.7 +28.87801037686782 1626153470.6 +35.91238438429931 1626159319.5 +35.236984367573534 1626165168.5 +31.129633112224063 1626171017.4 +23.274590580269283 1626176866.3 +8.629850121926824 1626182715.2 +0.0 1626188564.1 +0.0 1626194413 +0.0 1626200262 +0.0 1626234090.3 +29.357735841022993 1626239926.7 +36.141484140889006 1626245763 +35.38820250189273 1626251599.4 +31.271224548610824 1626257435.7 +23.43543541252091 1626263272.1 +8.847050625473187 1626269108.4 +0.0 1626274944.8 +0.0 1626280781.1 +0.0 1626286617.4 +0.0 1626320560.7 +29.854442145932126 1626326384 +36.37426096888947 1626332207.4 +35.55131988925527 1626338030.7 +31.42471523804093 1626343854 +23.604502426405116 1626349677.4 +9.070200755541217 1626355500.7 +0.0 1626361324 +0.0 1626367147.3 +0.0 1626372970.7 +0.0 1626407032.7 +30.366724775295356 1626412842.6 +36.6129874234116 1626418652.5 +35.72406397455025 1626424462.4 +31.578205927471032 1626430272.3 +23.77724651170008 1626436082.2 +9.30525013865259 1626441892.1 +0.0 1626447701.9 +0.0 1626453511.8 +0.0 1626459321.7 +0.0 1626493506.4 +30.890906657701922 1626499302.4 +36.867290202387835 1626505098.4 +35.8968080598452 1626510894.4 +31.735373688311896 1626516690.5 +23.959617294927476 1626522486.5 +9.547653664585484 1626528282.5 +0.0 1626534078.5 +0.0 1626539874.5 +0.0 1626545670.6 +0.0 1626579981.6 +31.430664864562598 1626585763.3 +37.12159298136407 1626591545.1 +36.07550177166184 1626597326.8 +31.902168147085195 1626603108.6 +24.147937704676544 1626608890.3 +9.79827937215096 1626614672 +0.0 1626620453.8 +0.0 1626626235.5 +0.0 1626632017.3 +0.0 1626666458.2 +31.98372684076646 1626672225.3 +37.38552245827273 1626677992.4 +36.261549626299995 1626683759.5 +32.0712351609694 1626689526.5 +24.342207740947284 1626695293.6 +10.056259222537953 1626701060.7 +0.0 1626706827.7 +0.0 1626712594.8 +0.0 1626718361.9 +0.0 1626752936.3 +32.542738443492 1626758688.3 +37.659078633113836 1626764440.3 +36.45581966257074 1626770192.3 +32.24765631767512 1626775944.3 +24.54015484862878 1626781696.4 +10.32613832596829 1626787448.4 +0.0 1626793200.4 +0.0 1626798952.4 +0.0 1626804704.4 +0.0 1626839415.7 +33.117326370671634 1626845152.3 +37.93490736306584 1626850888.8 +36.65376677025224 1626856625.4 +32.43002710090253 1626862362 +24.747728654242714 1626868098.6 +10.599694500809386 1626873835.2 +0.0 1626879571.8 +0.0 1626885308.4 +0.0 1626891044.9 +0.0 1626925896.3 +33.70154099578371 1626931617.1 +38.22403986236104 1626937337.9 +36.85171387793373 1626943058.7 +32.61467043924084 1626948779.5 +24.955302459856647 1626954500.3 +10.885149928693826 1626960221.1 +0.0 1626965941.9 +0.0 1626971662.7 +0.0 1626977383.5 +0.0 1627012378.2 +34.29170524741744 1627018082.8 +38.51317236165623 1627023787.5 +37.059287683547666 1627029492.1 +32.80666792040066 1627035196.8 +25.174775518513915 1627040901.4 +11.174282427989022 1627046606.1 +0.0 1627052310.7 +0.0 1627058015.4 +0.0 1627063720 +0.0 1627098861.2 +34.89149619698362 1627104549.4 +38.808254487473114 1627110237.5 +37.27281111568326 1627115925.7 +33.00461502808216 1627121613.9 +25.397925648581946 1627127302 +11.475314180327564 1627132990.2 +0.0 1627138678.4 +0.0 1627144366.5 +0.0 1627150054.7 +0.0 1627185345.3 +35.5009138444822 1627191016.6 +39.11296331122241 1627196688 +37.49228417434054 1627202359.3 +33.20851176228533 1627208030.7 +25.63070247658241 1627213702 +11.783700075487621 1627219373.4 +0.0 1627225044.8 +0.0 1627230716.1 +0.0 1627236387.5 +0.0 1627271830.3 +36.119958189913234 1627277484.6 +39.42362176149338 1627283138.8 +37.71543430440857 1627288793 +33.416085567899266 1627294447.3 +25.865751859693784 1627300101.5 +12.100308152280265 1627305755.7 +0.0 1627311410 +0.0 1627317064.2 +0.0 1627322718.4 +0.0 1627358316.4 +36.741275090455176 1627363953.2 +39.73428021176435 1627369590 +37.94453406099827 1627375226.8 +33.625931928624105 1627380863.6 +26.104478314215914 1627386500.4 +12.420593300483667 1627392137.2 +0.0 1627397774 +0.0 1627403410.8 +0.0 1627409047.6 +0.0 1627444803.3 +37.36994613381863 1627450422.4 +40.05229280485684 1627456041.5 +38.17731088899873 1627461660.5 +33.84313243217047 1627467279.6 +26.352831466670487 1627472898.7 +12.7505051466195 1627478517.8 +0.0 1627484136.8 +0.0 1627489755.9 +0.0 1627495375 +0.0 1627531291.1 +38.000889732293004 1627536892.2 +40.37852757958191 1627542493.2 +38.41603734352087 1627548094.3 +34.066282562238506 1627553695.4 +26.60345717423596 1627559296.4 +13.09004369068776 1627564897.5 +0.0 1627570498.5 +0.0 1627576099.6 +0.0 1627581700.7 +0.0 1627617779.7 +38.64146002869981 1627623362.5 +40.70843942571774 1627628945.2 +38.65703635315391 1627634528 +34.29170524741744 1627640110.8 +26.86143702462296 1627645693.6 +13.43553186127769 1627651276.3 +0.0 1627656859.1 +0.0 1627662441.9 +0.0 1627668024.7 +0.0 1627704269 +39.28203032510662 1627709833.2 +41.03835127185358 1627715397.4 +38.905389505608476 1627720961.7 +34.5244820754179 1627726525.9 +27.125366501531627 1627732090.1 +13.786969658389296 1627737654.4 +0.0 1627743218.6 +0.0 1627748782.8 +0.0 1627754347 +0.0 1627790759 +39.92627769292419 1627796304.4 +41.380162371032746 1627801849.8 +39.159692284584715 1627807395.3 +34.76320852994003 1627812940.7 +27.39524560496196 1627818486.1 +14.148034153433331 1627824031.5 +0.0 1627829577 +0.0 1627835122.4 +0.0 1627840667.8 +0.0 1627877249.6 +40.57279761585265 1627882776 +41.71970091510101 1627888302.4 +39.41399506356095 1627893828.7 +35.00193498446216 1627899355.1 +27.66880177980305 1627904881.5 +14.518725346409802 1627910407.9 +0.0 1627915934.3 +0.0 1627921460.7 +0.0 1627926987 +0.0 1627963740.8 +41.21704498367021 1627969247.9 +42.06518908569094 1627974755 +39.67197491394794 1627980262.1 +35.24661106550597 1627985769.2 +27.948307581165817 1627991276.3 +14.889416539386263 1627996783.4 +0.0 1628002290.5 +0.0 1628007797.6 +0.0 1628013304.7 +18.233859457807036 1628050232.6 +41.867241978009446 1628055720.2 +42.41662688280255 1628061207.8 +39.935904390856614 1628066695.4 +35.49496421796053 1628072183 +28.233763009050254 1628077670.6 +15.26973443029516 1628083158.2 +0.0 1628088645.8 +0.0 1628094133.4 +0.0 1628099621 +25.621075778649978 1628136724.8 +42.51376190093792 1628142192.7 +42.76579212480325 1628147660.6 +40.20578349428695 1628153128.5 +35.749266996936775 1628158596.3 +28.52289550834545 1628164064.2 +15.661951574247398 1628169532.1 +0.0 1628175000 +0.0 1628180467.9 +0.0 1628185935.8 +35.834502762028805 1628223217.5 +43.163958895277155 1628228665.5 +43.12317954843652 1628234113.4 +40.475662597717275 1628239561.4 +36.00951940243468 1628245009.4 +28.81797763416232 1628250457.3 +16.057845789610397 1628255905.3 +0.0 1628261353.2 +0.0 1628266801.2 +0.0 1628272249.1 +29.534156997728722 1628309710.6 +43.80820626309472 1628315138.5 +43.48424404348055 1628320566.3 +40.74921877255838 1628325994.2 +36.273448879343334 1628331422 +29.116736831389954 1628336849.8 +16.45968963149507 1628342277.7 +0.0 1628347705.5 +0.0 1628353133.3 +0.0 1628358561.2 +34.4777531020556 1628396204.1 +44.454726186023194 1628401611.7 +43.8453085385246 1628407019.2 +41.028724573921146 1628412426.7 +36.537378356252 1628417834.2 +29.417768583728492 1628423241.8 +16.865210544790504 1628428649.3 +0.0 1628434056.8 +0.0 1628439464.3 +0.0 1628444871.9 +36.129584887845674 1628482698 +45.09529648242999 1628488085 +44.210050104979395 1628493472.1 +41.31418000180558 1628498859.1 +36.8109345310931 1628504246.1 +29.728427033999463 1628509633.2 +17.282630711129265 1628515020.2 +0.0 1628520407.2 +0.0 1628525794.2 +0.0 1628531181.3 +43.158009268755485 1628569192.2 +45.73359422372589 1628574558.5 +44.57111460002343 1628579924.9 +41.60331250110078 1628585291.3 +37.08081363452344 1628590657.6 +30.042762555681193 1628596024 +17.7037279488788 1628601390.3 +0.0 1628606756.7 +0.0 1628612123.1 +0.0 1628617489.4 +41.69449789271448 1628655686.6 +46.37416452013269 1628661032.1 +44.941805792999894 1628666377.7 +41.88876792898522 1628671723.2 +37.360319435886204 1628677068.7 +30.363047703884593 1628682414.3 +18.136724439671667 1628687759.8 +0.0 1628693105.3 +0.0 1628698450.9 +0.0 1628703796.4 +45.88113528663432 1628742181.3 +47.00510811860706 1628747505.8 +45.312496985976345 1628752830.4 +42.18157749969118 1628758154.9 +37.64577486377065 1628763479.5 +30.683332852087993 1628768804 +18.56744837535363 1628774128.5 +0.0 1628779453.1 +0.0 1628784777.6 +0.0 1628790102.2 +43.81415588961639 1628828676.2 +47.63605171708142 1628833979.6 +45.68913780547449 1628839283 +42.48260925202972 1628844586.4 +37.92895773654417 1628849889.8 +31.013244698223826 1628855193.2 +19.010071564078938 1628860496.6 +0.0 1628865800 +0.0 1628871103.4 +0.0 1628876406.8 +48.513075912899446 1628915171.3 +48.26104568903412 1628920453.4 +46.05982899845095 1628925735.5 +42.77769137784658 1628931017.6 +38.21809023583937 1628936299.7 +31.34315654435966 1628941581.9 +19.458644379325907 1628946864 +0.0 1628952146.1 +0.0 1628957428.2 +0.0 1628962710.3 +49.79421650571305 1629001666.6 +48.88009003446517 1629006927.2 +46.43646981794909 1629012187.9 +43.08240020159589 1629017448.6 +38.51317236165623 1629022709.3 +31.679018017017164 1629027970 +19.91089426598364 1629033230.7 +0.0 1629038491.4 +0.0 1629043752.1 +0.0 1629049012.8 +51.0561037026618 1629088162 +49.49545730848542 1629093401.1 +46.81678770885799 1629098640.2 +43.38710902534519 1629103879.4 +38.808254487473114 1629109118.5 +32.018556561085425 1629114357.7 +20.36682122405214 1629119596.8 +0.0 1629124835.9 +0.0 1629130075.1 +0.0 1629135314.2 +53.321030207361225 1629174657.5 +50.10487495598402 1629179875 +47.19342852835613 1629185092.4 +43.69181784909449 1629190309.9 +39.10928623981165 1629195527.3 +32.36404473167536 1629200744.8 +20.834647435163973 1629205962.3 +0.0 1629211179.7 +0.0 1629216397.2 +0.0 1629221614.7 +53.50935061711029 1629261153.1 +50.70834297696096 1629266348.8 +47.57374641926502 1629271544.5 +44.00615337077622 1629276740.1 +39.41399506356095 1629281935.8 +32.709532902265295 1629287131.5 +21.302473646275807 1629292327.1 +0.0 1629297522.8 +0.0 1629302718.5 +0.0 1629307914.1 +54.70893251624263 1629347648.9 +51.30445685511636 1629352822.6 +47.956336865284825 1629357996.4 +44.31681182104719 1629363170.1 +39.72238095872101 1629368343.9 +33.06692032589857 1629373517.6 +21.779926555320074 1629378691.4 +0.0 1629383865.1 +0.0 1629389038.9 +0.0 1629394212.7 +55.8869884643992 1629434144.7 +51.892348551639195 1629439296.4 +48.33665475619372 1629444448.1 +44.63114734272892 1629449599.9 +40.03303940899198 1629454751.6 +33.422035194420936 1629459903.3 +22.26332909088601 1629465055.1 +0.0 1629470206.8 +0.0 1629475358.6 +0.0 1629480510.3 +57.045791016690906 1629520640.5 +52.47883573186217 1629525770.1 +48.7229222736243 1629530899.7 +44.951432490932326 1629536029.4 +40.343697859262946 1629541159 +33.783099689464976 1629546288.6 +22.74445907134104 1629551418.2 +0.7258060614988312 1629556547.8 +0.0 1629561677.5 +0.0 1629566807.1 +58.185340173117744 1629607136.4 +53.057100730452575 1629612243.8 +49.10324016453318 1629617351.2 +45.27171763913571 1629622458.6 +40.65803338094468 1629627566 +34.14416418450901 1629632673.4 +23.237488304839406 1629637780.8 +1.4635113760410037 1629642888.2 +0.0 1629647995.6 +0.0 1629653103 +59.307040449979574 1629693632.3 +53.62573903111053 1629698717.4 +49.485830610552995 1629703802.5 +45.59200278733912 1629708887.6 +40.97831852914808 1629713972.7 +34.51485537748547 1629719057.8 +23.736467164859448 1629724142.9 +2.210843388515607 1629729228 +0.0 1629734313.1 +0.0 1629739398.2 +60.41543695749822 1629780128.3 +54.19070026035774 1629785191 +49.87209812798356 1629790253.7 +45.918237562064185 1629795316.4 +41.30228074876224 1629800379.1 +34.88554657046195 1629805441.8 +24.235446024879483 1629810504.5 +2.967802098922641 1629815567.2 +0.0 1629820629.9 +0.0 1629825692.6 +61.50230751404107 1629866624.2 +54.743762236561594 1629871664.4 +50.25609309030322 1629876704.7 +46.24814940820002 1629881744.9 +41.628515523487316 1629886785.1 +35.2562377634384 1629891825.3 +24.741779027721044 1629896865.5 +3.7343875072621056 1629901905.8 +0.0 1629906946 +0.0 1629911986.2 +62.57587430124076 1629953120.2 +55.2931471413547 1629958137.8 +50.63868353632303 1629963155.5 +46.57211162781418 1629968173.2 +41.95475029821238 1629973190.8 +35.636555654347305 1629978208.5 +25.256334212195185 1629983226.2 +4.518821795166582 1629988243.8 +0.0 1629993261.5 +0.0 1629998279.2 +63.63754183539709 1630039616.1 +55.83658241962614 1630044611.2 +51.0249510537536 1630049606.2 +46.90429602906092 1630054601.2 +42.28466214434821 1630059596.3 +36.0191461003671 1630064591.3 +25.768616841558412 1630069586.3 +5.304660599370909 1630074581.4 +0.0 1630079576.4 +0.0 1630084571.4 +64.67768341857766 1630126112.1 +56.37039099996514 1630131084.4 +51.40526894466249 1630136056.7 +47.23788494660752 1630141029.1 +42.61457399048405 1630146001.4 +36.399463991276 1630150973.7 +26.29279872396499 1630155946.1 +6.108348283140248 1630160918.4 +0.0 1630165890.7 +0.0 1630170863.1 +65.70084416100427 1630212608 +56.898249953782475 1630217557.6 +51.79153646209306 1630222507.1 +47.57006934785426 1630227456.7 +42.95043546314155 1630232406.3 +36.79168113522824 1630237355.8 +26.814708051260645 1630242305.4 +6.921662664842016 1630247255 +0.0 1630252204.5 +0.0 1630257154.1 +66.7002063973442 1630299103.9 +57.41648220966738 1630304030.7 +52.17185435300196 1630308957.4 +47.90365826540085 1630313884.1 +43.289974007209814 1630318810.9 +37.18162572406957 1630323737.6 +27.34483956018889 1630328664.3 +7.738654117954548 1630333591.1 +0.0 1630338517.8 +0.0 1630343444.6 +67.6766381664085 1630385599.8 +57.93103739414151 1630390503.7 +52.554444799021766 1630395407.5 +48.23951973805835 1630400311.4 +43.63178510638899 1630405215.2 +37.573842868021806 1630410119.1 +27.872698514006217 1630415022.9 +8.573494450632088 1630419926.8 +0.0 1630424830.6 +0.0 1630429734.5 +68.6219172865646 1630472095.7 +58.433693325572314 1630476976.6 +52.940712316452334 1630481857.5 +48.58133083723752 1630486738.4 +43.97132365045725 1630491619.3 +37.96973708338481 1630496500.2 +28.41245672086689 1630501381.1 +9.41201185472039 1630506262 +0.0 1630511142.9 +0.0 1630516023.8 +69.52641705988006 1630558591.6 +58.936349257003116 1630563449.5 +53.31735313595047 1630568307.4 +48.9208693813058 1630573165.3 +44.316811821047196 1630578023.2 +38.37158092526948 1630582881.1 +28.949942372616654 1630587739 +10.260155956741125 1630592596.9 +0.0 1630597454.8 +0.0 1630602312.7 +70.3901374863549 1630645087.4 +59.42342886397981 1630649922.3 +53.69767102685937 1630654757.1 +49.260407925374054 1630659592 +44.66229999163712 1630664426.8 +38.77342476715414 1630669261.7 +29.493377650888092 1630674096.6 +11.117926756694288 1630678931.4 +0.0 1630683766.3 +0.0 1630688601.2 +71.21307856598911 1630731583.2 +59.90683139954575 1630736395 +54.077988917768266 1630741206.8 +49.60221902455322 1630746018.5 +45.01373778874872 1630750830.3 +39.17526860903882 1630755642.1 +30.042762555681193 1630760453.8 +11.981647183169123 1630765265.6 +0.0 1630770077.4 +0.0 1630774889.2 +71.9915632273719 1630818079.1 +60.380607237179255 1630822867.7 +54.46057936378807 1630827656.3 +49.94770719514316 1630832445 +45.362903030749415 1630837233.6 +39.58078952233424 1630842022.2 +30.592147460474298 1630846810.9 +12.857266862687299 1630851599.5 +0.0 1630856388.1 +0.0 1630861176.7 +72.7233189153924 1630904574.9 +60.852110519701846 1630909340.3 +54.8349476281753 1630914105.8 +50.287245739211414 1630918871.2 +45.714340827861015 1630923636.7 +39.992260062151345 1630928402.2 +31.14520943667816 1630933167.6 +13.73656361361623 1630937933.1 +0.0 1630942698.5 +0.0 1630947464 +73.41429525657229 1630991070.7 +61.31031003288125 1630995812.9 +55.211588447673435 1631000555.2 +50.63273390980136 1631005297.4 +46.069455696383386 1631010039.7 +40.40373060196844 1631014781.9 +31.698271412882026 1631019524.1 +14.6254870624776 1631024266.4 +0.0 1631029008.6 +0.0 1631033750.8 +74.06449225091151 1631077566.5 +61.76623699094974 1631082285.5 +55.58822926717157 1631087004.5 +50.97822208039129 1631091723.5 +46.42457056490575 1631096442.5 +40.81520114178554 1631101161.5 +32.257283015607555 1631105880.4 +15.520360137860637 1631110599.4 +0.0 1631115318.4 +0.0 1631120037.4 +74.67023282699934 1631164062.3 +62.214809806196726 1631168758.1 +55.964870086669706 1631173453.8 +51.32371025098122 1631178149.5 +46.78195798853903 1631182845.2 +41.232621308124315 1631187540.9 +32.816294618333096 1631192236.6 +16.418910284654437 1631196932.3 +0.0 1631201628 +0.0 1631206323.7 +75.2388711276573 1631250558.2 +62.651483368400356 1631255230.6 +56.33556127964617 1631259903 +51.67514804809283 1631264575.4 +47.14302248358306 1631269247.7 +41.65371854587384 1631273920.1 +33.3812558475803 1631278592.5 +17.3234100579699 1631283264.9 +0.0 1631287937.3 +0.0 1631292609.7 +75.77635677940708 1631337054.1 +63.088156930604 1631341703.1 +56.70625247262264 1631346352.2 +52.02063621868277 1631351001.2 +47.50181442351619 1631355650.2 +42.071138712212615 1631360299.3 +33.9462170768275 1631364948.3 +18.2375365292178 1631369597.4 +0.0 1631374246.4 +0.0 1631378895.4 +76.27901271083788 1631423550 +63.50925416835352 1631428175.6 +57.07694366559911 1631432801.3 +52.37207401579437 1631437427 +47.86287891856021 1631442052.7 +42.49223594996215 1631446678.3 +34.51485537748547 1631451304 +19.1516630004657 1631455929.7 +0.0 1631460555.3 +0.0 1631465181 +76.75278854847139 1631510045.9 +63.932623961213956 1631514648.2 +57.44763485857558 1631519250.5 +52.7175621863843 1631523852.8 +48.223943413604246 1631528455 +42.919282814233355 1631533057.3 +35.08349367814343 1631537659.6 +20.07173909823527 1631542261.9 +0.0 1631546864.1 +0.0 1631551466.4 +77.19908880860744 1631596541.9 +64.34409450103105 1631601120.8 +57.81237642503037 1631605699.6 +53.066727428385 1631610278.5 +48.59095753516995 1631614857.4 +43.34038005198288 1631619436.2 +35.658081605323076 1631624015.1 +20.99776482252651 1631628593.9 +0.0 1631633172.8 +0.0 1631637751.6 +77.61650897494621 1631683038 +64.7496154143265 1631687593.4 +58.17939054659608 1631692148.8 +53.4181652254966 1631696704.2 +48.95569910162476 1631701259.7 +43.76742691625409 1631705815.1 +36.226719905981035 1631710370.5 +21.92151799170684 1631714925.9 +0.0 1631719481.3 +0.0 1631724036.8 +78.01835281683088 1631769534.1 +65.15145925621115 1631774066.1 +58.54045504164011 1631778598 +53.76365339608654 1631783130 +49.322713223190455 1631787662 +44.194473780525286 1631792193.9 +36.80130783316068 1631796725.9 +22.851220787408838 1631801257.9 +0.0 1631805789.8 +0.0 1631810321.8 +78.38904400980735 1631856030.3 +65.54735347157416 1631860538.8 +58.90151953668415 1631865047.3 +54.11509119319814 1631869555.8 +49.69340441616692 1631874064.3 +44.62747027131816 1631878572.8 +37.3758957603403 1631883081.3 +23.78319613822175 1631887589.8 +0.0 1631892098.2 +0.0 1631896606.7 +78.74415887832973 1631942526.6 +65.93362098900474 1631947011.6 +59.26258403172818 1631951496.6 +54.46425643519883 1631955981.6 +50.05814598262172 1631960466.6 +45.05451713558935 1631964951.6 +37.954160758930705 1631969436.6 +24.71657600533451 1631973921.6 +0.0 1631978406.6 +0.0 1631982891.6 +79.08002035098723 1632029023 +66.31393887991364 1632033484.5 +59.62364852677222 1632037946 +54.815694232310435 1632042407.5 +50.42883717559818 1632046869 +45.48524107127131 1632051330.5 +38.52874868611034 1632055792 +25.652228427558182 1632060253.5 +0.0 1632064715 +0.0 1632069176.5 +79.40030549919062 1632115519.5 +66.69057969941177 1632119957.5 +59.978763395294585 1632124395.5 +55.16485947431113 1632128833.5 +50.79585129716389 1632133271.5 +45.918237562064185 1632137709.5 +39.10928623981165 1632142147.5 +26.581931223260188 1632146585.5 +0.0 1632151023.5 +0.0 1632155461.5 +79.70501432293993 1632202016.2 +67.06127089238822 1632206430.6 +60.333878263816956 1632210845.1 +55.51262020001197 1632215259.6 +51.16654249014036 1632219674 +46.348961497746146 1632224088.5 +39.687551238402044 1632228503 +27.517583645483857 1632232917.5 +0.0 1632237331.9 +0.0 1632241746.4 +79.99414682223512 1632288512.9 +67.42828501395392 1632292903.9 +60.68531606092855 1632297294.8 +55.86178544201267 1632301685.8 +51.54318330963849 1632306076.7 +46.78563505994979 1632310467.7 +40.26213916558168 1632314858.6 +28.450963512596616 1632319249.5 +0.0 1632323640.5 +0.0 1632328031.4 +80.2736526235979 1632375009.8 +67.78339988247629 1632379377.2 +61.034481302929244 1632383744.7 +56.213223239124275 1632388112.1 +51.91387450261496 1632392479.5 +47.218631550742664 1632396846.9 +40.84040416417208 1632401214.3 +29.382938863409528 1632405581.7 +0.8481441020207331 1632409949.1 +0.0 1632414316.6 +80.53758210050657 1632461506.9 +68.13851475099867 1632465850.8 +61.385919100040844 1632470194.7 +56.56238848112497 1632474538.5 +52.28456569559143 1632478882.4 +47.65530511294629 1632483226.3 +41.42094171787338 1632487570.2 +30.312641659111527 1632491914 +2.8669900093765115 1632496257.9 +0.0 1632500601.8 +80.78820780807203 1632548004.1 +68.4840029215886 1632552324.5 +61.73140727063078 1632556644.8 +56.90787665171491 1632560965.2 +52.65525688856789 1632565285.5 +48.091978675149925 1632569605.8 +41.99552964505302 1632573926.2 +31.24234445481353 1632578246.5 +4.889512988143048 1632582566.9 +0.0 1632586887.2 +81.03061133400493 1632634501.5 +68.82581402076777 1632638798.3 +62.07689544122073 1632643095.1 +57.25563737741575 1632647392 +53.03189770806604 1632651688.8 +48.524975165942784 1632655985.6 +42.573794643643424 1632660282.4 +32.1624205525831 1632664579.2 +6.912035966909585 1632668876 +0.0 1632673172.8 +81.25971109059464 1632720999.1 +69.16535256483604 1632725272.4 +62.41643398528899 1632729545.7 +57.60480261941644 1632733818.9 +53.4025889010425 1632738092.2 +48.96164872814643 1632742365.5 +43.14838257082305 1632746638.8 +33.08617372176343 1632750912 +8.918982621222023 1632755185.3 +0.0 1632759458.6 +81.48286122066266 1632807496.9 +69.49526441097186 1632811746.7 +62.75824508446816 1632815996.4 +57.95029079000637 1632820246.2 +53.773280094018965 1632824495.9 +49.39832229035006 1632828745.6 +43.72664756941346 1632832995.4 +34.000300193011334 1632837245.1 +10.910352951080357 1632841494.8 +0.0 1632845744.6 +81.69638465279827 1632893995 +69.82149918569694 1632898221.2 +63.09410655712566 1632902447.4 +58.2957789605963 1632906673.6 +54.14992091351711 1632910899.8 +49.83499585255368 1632915126 +44.29755842518233 1632919352.2 +34.910749592848475 1632923578.4 +12.87652025855216 1632927804.7 +0.0 1632932030.9 +81.9062310135231 1632980493.2 +70.14178433390033 1632984695.9 +63.427695474672255 1632988898.6 +58.64126713118624 1632993101.3 +54.52061210649357 1632997304 +50.267992343346556 1633001506.7 +44.86987379725106 1633005709.4 +35.82119899268561 1633009912.1 +14.823434170159096 1633014114.7 +0.0 1633018317.4 +82.10417812120458 1633066991.6 +70.45611985558207 1633071170.8 +63.763556947329754 1633075350 +58.98675530177618 1633079529.2 +54.89130329947004 1633083708.4 +50.70466590555019 1633087887.6 +45.444461724430674 1633092066.8 +36.719749139479404 1633096246 +16.73324580633617 1633100425.2 +0.0 1633104604.3 +82.29249853095367 1633153490.3 +70.7704553772638 1633157646 +64.09346879346559 1633161801.7 +59.32856640095535 1633165957.4 +55.2619944924465 1633170113.1 +51.14133946775383 1633174268.8 +46.013100025088654 1633178424.5 +37.618299286273206 1633182580.2 +18.620126975237604 1633186735.9 +0.0 1633190891.6 +82.47486931418106 1633239989.3 +71.077436756124 1633244121.5 +64.41970356819066 1633248253.7 +59.668104945023615 1633252385.9 +55.63268568542297 1633256518.1 +51.5743359585467 1633260650.4 +46.57806125433585 1633264782.6 +38.509495290245475 1633268914.8 +20.463956242187507 1633273047 +0.0 1633277179.2 +82.65129047088679 1633326488.5 +71.37619595335164 1633330597.3 +64.7496154143265 1633334706 +60.013593115613546 1633338814.8 +56.009326504921106 1633342923.5 +52.011009520750335 1633347032.3 +47.14669955499382 1633351141 +39.386519486063506 1633355249.8 +22.282582486750876 1633359358.5 +0.0 1633363467.3 +82.82403455618177 1633412988 +71.67495515057927 1633417073.3 +65.06990056252988 1633421158.6 +60.34945458827106 1633425243.9 +56.37634062648681 1633429329.2 +52.441733456432296 1633433414.5 +47.711660784241026 1633437499.8 +40.26213916558168 1633441585.1 +24.062701939584517 1633445670.4 +0.0 1633449755.7 +82.99310157006597 1633499487.7 +71.96636020498538 1633503549.6 +65.39018571073329 1633507611.5 +60.68899313233931 1633511673.4 +56.747031819463274 1633515735.3 +52.87472994722516 1633519797.1 +48.27067238696655 1633523859 +41.12953666346728 1633527920.9 +25.803446561877376 1633531982.8 +0.0 1633536044.7 +83.15026933090684 1633585987.7 +72.25549270428057 1633590026.2 +65.7104708589367 1633594064.7 +61.02485460499681 1633598103.2 +57.11772301243974 1633602141.7 +53.30545388290713 1633606180.2 +48.8296839896921 1633610218.6 +41.98958001853135 1633614257.1 +27.517583645483857 1633618295.6 +0.0 1633622334.1 +83.3074370917477 1633672488.1 +72.54094813216501 1633676503.2 +66.02480638061844 1633680518.3 +61.36071607765431 1633684533.4 +57.48246457889454 1633688548.5 +53.732500747178335 1633692563.6 +49.38274596589595 1633696578.7 +42.83772412055208 1633700593.8 +29.194618453660457 1633704608.9 +0.0 1633708624.1 +83.4609277811778 1633758988.7 +72.82045393352777 1633762980.4 +66.34141445741108 1633766972.2 +61.696577550311815 1633770964 +57.849478700460246 1633774955.7 +54.1654972379712 1633778947.5 +49.938080497210734 1633782939.3 +43.68219115116206 1633786931 +30.834550986407194 1633790922.8 +0.0 1633794914.6 +83.60251921756458 1633845489.6 +73.09401010836888 1633849458 +66.64980035257113 1633853426.5 +62.03016646785842 1633857394.9 +58.21422026691504 1633861363.4 +54.59254410224241 1633865331.9 +50.48519284689292 1633869300.3 +44.51475892872869 1633873268.8 +32.44560342535663 1633877237.2 +0.0 1633881205.7 +83.74411065395134 1633931990.8 +73.3638892117992 1633935935.9 +66.96045880284211 1633939881.1 +62.36235086910516 1633943826.3 +58.581234388480745 1633947771.5 +55.013641339991935 1633951716.7 +51.03457775168603 1633955661.9 +45.33770000836288 1633959607.1 +34.021826143987106 1633963552.2 +0.0 1633967497.4 +83.88202501892734 1634018492.3 +73.62781868870788 1634022414.2 +67.26516762659139 1634026336.2 +62.69226271524099 1634030258.1 +58.94597595493555 1634034180.1 +55.44068820426313 1634038102 +51.5743359585467 1634042024 +46.15101439006465 1634045945.9 +35.56094658718771 1634049867.8 +0.0 1634053789.8 +84.01993938390332 1634104994.1 +73.89174816561653 1634108892.8 +67.56392682381903 1634112791.6 +63.01622493485516 1634116690.3 +59.307040449979574 1634120589.1 +55.86178544201267 1634124487.8 +52.11777123681813 1634128386.6 +46.94875244731232 1634132285.4 +37.07486400800177 1634136184.1 +0.0 1634140082.9 +84.145954495836 1634191496.2 +74.14972801600355 1634195371.8 +67.86495857615756 1634199247.4 +63.342459709580226 1634203123 +59.668104945023615 1634206998.6 +56.2828826797622 1634210874.2 +52.651579817157135 1634214749.8 +47.74281343314922 1634218625.4 +38.55027463708611 1634222501 +0.0 1634226376.6 +84.27424216287957 1634277998.6 +74.40035372356901 1634281851.1 +68.16371777338519 1634285703.6 +63.666421929194385 1634289556.1 +60.02916944006765 1634293408.6 +56.70030284610097 1634297261.1 +53.18311584238523 1634301113.6 +48.524975165942784 1634304966.2 +39.998209688673015 1634308818.7 +0.0 1634312671.2 +84.39430764829056 1634364501.3 +74.64870687602357 1634368330.8 +68.4551228277913 1634372160.3 +63.99265670391946 1634375989.7 +60.38428430859002 1634379819.2 +57.11772301243974 1634383648.6 +53.7072977247918 1634387478.1 +49.29751020080393 1634391307.6 +41.409042464830044 1634395137 +0.0 1634398966.5 +84.51664568881247 1634451004.4 +74.89706002847814 1634454810.8 +68.74793239849727 1634458617.3 +64.30699222560119 1634462423.8 +60.739399177112375 1634466230.2 +57.532870623667606 1634470036.7 +54.23147960719837 1634473843.2 +50.054468911210954 1634477649.7 +42.78731807577901 1634481456.1 +0.0 1634485262.6 +84.6330341028127 1634537507.7 +75.13578648300027 1634541291.2 +69.0333878263817 1634545074.8 +64.62727737380459 1634548858.3 +61.09083697422399 1634552641.9 +57.940664092073945 1634556425.4 +54.74971186308327 1634560208.9 +50.80180092368556 1634563992.5 +44.138118109230554 1634567776 +0.0 1634571559.6 +84.74574544540215 1634624011.3 +75.37451293752241 1634627772 +69.31884325426614 1634631532.7 +64.94388545059722 1634635293.3 +61.442274771335576 1634639054 +58.35213463189105 1634642814.7 +55.2619944924465 1634646575.4 +51.537233683116824 1634650336.1 +45.45041135095235 1634654096.7 +0.0 1634657857.4 +84.85845678799164 1634710515.2 +75.60956232063378 1634714253.1 +69.60202612703965 1634717991 +65.25822097227896 1634721728.9 +61.79144001333628 1634725466.8 +58.75765554518648 1634729204.6 +55.770600050398976 1634732942.5 +52.26531229972657 1634736680.4 +46.73155194376596 1634740418.3 +0.0 1634744156.2 +84.96521850405944 1634797019.4 +75.83866207722347 1634800734.6 +69.88153192840242 1634804449.7 +65.56887942254993 1634808164.9 +62.14287781044788 1634811880.1 +59.15949938707115 1634815595.2 +56.27325598182977 1634819310.4 +52.9755420367713 1634823025.6 +47.98153988767137 1634826740.7 +0.0 1634830455.9 +85.06603059360557 1634883523.8 +76.06548927870229 1634887216.4 +70.15736065835442 1634890908.9 +65.87358824629922 1634894601.4 +62.482416354516154 1634898294 +59.56134322895581 1634901986.5 +56.77223484184981 1634905679 +53.682094702405266 1634909371.5 +49.19442555614689 1634913064.1 +1.3567496599732032 1634916756.6 +85.1668426831517 1634970028.6 +76.29091196388121 1634973698.5 +70.43091683319552 1634977368.5 +66.18197414145929 1634981038.5 +62.827904525106085 1634984708.5 +59.95723744431882 1634988378.4 +57.26894114675894 1634992048.4 +54.367121417063466 1634995718.4 +50.37475405941436 1634999388.4 +0.0 1635003058.3 +85.26992732780873 1635056533.5 +76.50811246742758 1635060181 +70.70079593662587 1635063828.5 +66.48300589379784 1635067476 +63.16971562428526 1635071123.6 +60.34945458827106 1635074771.1 +57.75234368232488 1635078418.6 +55.04479398890014 1635082066.1 +51.52165735866272 1635085713.6 +0.0 1635089361.1 +85.36478979083321 1635143038.7 +76.72163589956318 1635146663.8 +70.96472541353454 1635150289 +66.78176509102546 1635153914.1 +63.50557709694276 1635157539.3 +60.745348803634045 1635161164.4 +58.23574621789081 1635164789.6 +55.71056730769347 1635168414.7 +52.63600349270303 1635172039.9 +47.969640634628036 1635175665 +85.46192480896858 1635229544.1 +76.93515933169878 1635233147 +71.22865489044321 1635236749.9 +67.082796843364 1635240352.7 +63.83916601448935 1635243955.6 +61.13161632106461 1635247558.5 +58.71319912693508 1635251161.4 +56.36444137344347 1635254764.3 +53.71324735131347 1635258367.1 +45.66761185449872 1635261970 +85.55311020058228 1635316049.7 +77.14273313731272 1635319630.4 +71.4889072959411 1635323211.1 +67.37787896918087 1635326791.9 +64.17135041573609 1635330372.6 +61.51193421197351 1635333953.3 +59.18470240945768 1635337534 +57.005011669850276 1635341114.8 +54.7593385610157 1635344695.5 +52.20300700191016 1635348276.2 +85.64429559219597 1635402555.5 +77.34662987151589 1635406114.1 +71.74688714632809 1635409672.8 +67.66701146847608 1635413231.5 +64.49531263535026 1635416790.2 +61.89452465799332 1635420348.9 +59.64885154915875 1635423907.6 +57.630005641802974 1635427466.3 +55.770600050398976 1635431024.9 +54.14992091351711 1635434583.6 +85.7318039123989 1635489061.4 +77.54457697919739 1635492598.1 +72.00118992530433 1635496134.9 +67.95614396777125 1635499671.7 +64.82154741007533 1635503208.4 +62.271165477491465 1635506745.2 +60.11072813374892 1635510282 +58.24537291582324 1635513818.7 +56.747031819463274 1635517355.5 +55.99969980698867 1635520892.3 +85.81703967749094 1635575567.4 +77.74252408687887 1635579082.4 +72.2495430777589 1635582597.4 +68.24159939565568 1635586112.4 +65.14550962968949 1635589627.3 +62.641856670467924 1635593142.3 +60.56297802040665 1635596657.3 +58.85111349191108 1635600172.3 +57.69231093961938 1635603687.2 +57.74639405580321 1635607202.2 +85.89859837117221 1635662073.6 +77.93679412314962 1635665566.9 +72.49421915880271 1635669060.2 +68.52478226842923 1635672553.6 +65.46211770648213 1635676046.9 +63.00659823692273 1635679540.2 +61.005601209131946 1635683033.5 +59.43900518843391 1635686526.9 +58.60643741086728 1635690020.2 +61.17239566790524 1635693513.5 +85.98015706485347 1635748579.8 +78.12511453289869 1635752051.6 +72.7388952398465 1635755523.5 +68.804288069792 1635758995.3 +65.77645322816386 1635762467.1 +63.37361235848842 1635765938.9 +61.44595184274634 1635769410.7 +60.019542742135215 1635772882.5 +59.48941123320698 1635776354.3 +60.99370195608861 1635779826.1 +86.06171575853473 1635835086.1 +78.31343494264776 1635838536.6 +72.97762169436864 1635841987 +69.080116799744 1635845437.5 +66.08711167843484 1635848887.9 +63.72872722701079 1635852338.4 +61.87894833353923 1635855788.8 +60.58818104279319 1635859239.3 +60.339827890338626 1635862689.7 +62.497992678970256 1635866140.2 +86.13732482569434 1635921592.4 +78.49580572587516 1635925021.7 +73.21634814889077 1635928450.9 +69.34772334806343 1635931880.2 +66.3954975735949 1635935309.4 +64.08384209553316 1635938738.7 +62.305995197810425 1635942167.9 +61.13756594758628 1635945597.2 +61.162768969972824 1635949026.4 +63.92667433469229 1635952455.7 +86.21520644796483 1636008098.7 +78.6744994376918 1636011506.9 +73.44544790548048 1636014915.1 +69.61760245149377 1636018323.4 +66.7002063973442 1636021731.6 +64.43527989264476 1636025139.8 +62.7234153641492 1636028548 +61.68100122585771 1636031956.2 +61.95088032928805 1636035364.5 +65.29305069259793 1636038772.7 +86.28486588860278 1636094604.9 +78.84724352298676 1636097992.3 +73.67227510695928 1636101379.7 +69.88153192840242 1636104767 +67.00123814968272 1636108154.4 +64.7807680632347 1636111541.7 +63.138562975377056 1636114929.1 +62.20886017967506 1636118316.5 +62.71151611110586 1636121703.8 +66.59344468127641 1636125091.2 +86.35679788435161 1636181111 +79.01998760828172 1636184477.7 +73.8976977921382 1636187844.4 +70.14178433390033 1636191211.1 +67.2963202754996 1636194577.8 +65.11662953589219 1636197944.5 +63.54040681726172 1636201311.2 +62.7234153641492 1636204677.9 +63.44327179912636 1636208044.6 +67.83380592724936 1636211411.3 +86.42872988010045 1636267617 +79.18678206705502 1636270963.3 +74.12084792220624 1636274309.5 +70.39976418428733 1636277655.7 +67.5854527747948 1636281001.9 +65.4502184534388 1636284348.1 +63.94225065914639 1636287694.4 +63.229748366990755 1636291040.6 +64.14982446476033 1636294386.8 +69.02376112844927 1636297733 +86.49838932073837 1636354122.8 +79.35357652582833 1636357448.8 +74.33437135434185 1636360774.7 +70.65406696326357 1636364100.7 +67.87458527409 1636367426.7 +65.78240285468553 1636370752.6 +64.33219524798771 1636374078.6 +63.71910052907836 1636377404.5 +64.83117410800777 1636380730.5 +70.15141103183275 1636384056.4 +86.56437168996554 1636440628.4 +79.51669391319085 1636443934.3 +74.54789478647744 1636447240.2 +70.90469267082904 1636450546.1 +68.15409107545277 1636453852 +66.10636507429969 1636457157.9 +64.71478569400753 1636460463.8 +64.20023050953338 1636463769.7 +65.481371102347 1636467075.6 +71.23460451696488 1636470381.5 +86.63035405919271 1636527133.7 +79.67386167403171 1636530419.8 +74.75546859209138 1636533705.8 +71.14709619676194 1636536991.9 +68.43359687681554 1636540278 +66.4266502225031 1636543564.1 +65.09142651350565 1636546850.1 +64.66437964923446 1636550136.2 +66.11231470082136 1636553422.3 +72.26144233080224 1636556708.4 +86.69265935700912 1636613638.7 +79.82735236346183 1636616905.2 +74.96304239770531 1636620171.6 +71.38582265128407 1636623438.1 +68.70942560676754 1636626704.6 +66.73730867277406 1636629971.1 +65.46211770648213 1636633237.6 +65.12030660730295 1636636504 +66.71210565038754 1636639770.5 +73.23192447334488 1636643037 +86.75269209971462 1636700143.3 +79.97857049778102 1636703390.4 +75.16098950538681 1636706637.5 +71.62087203439542 1636709884.7 +68.97703215508696 1636713131.8 +67.04569456793412 1636716378.9 +65.8172325750045 1636719626.1 +65.56292979602826 1636722873.2 +67.29037064897793 1636726120.3 +74.14972801600355 1636729367.5 +86.81499739753102 1636786647.4 +80.12611156068945 1636789875.5 +75.36120916817922 1636793103.5 +71.8536488623959 1636796331.5 +69.24096163199563 1636799559.6 +67.34672632027267 1636802787.6 +66.17234744352686 1636806015.7 +65.99592628682115 1636809243.7 +67.84938225170346 1636812471.8 +75.00977137106761 1636815699.8 +86.86908051371485 1636873151.1 +80.26997555218712 1636876360.3 +75.55320664933905 1636879569.5 +72.0827486189856 1636882778.7 +69.50121403749353 1636885988 +67.64180844608953 1636889197.2 +66.5178356141168 1636892406.4 +66.41107389804901 1636895615.7 +68.38319083204247 1636898824.9 +75.80750942831527 1636902034.1 +86.92543618500959 1636959654.1 +80.40561736205223 1636962844.8 +75.74152705908811 1636966035.5 +72.30222167764288 1636969226.2 +69.7495671899481 1636972416.9 +67.93094094538473 1636975607.6 +66.85369708677429 1636978798.3 +66.81886736645534 1636981989 +68.89547346140569 1636985179.7 +76.54889181426822 1636988370.4 +86.98179185630431 1637046156.6 +80.54353172702824 1637049329.1 +75.92389784231551 1637052501.5 +72.51942218118923 1637055674 +70.00019289751357 1637058846.4 +68.2104467467475 1637062018.8 +67.18360893291012 1637065191.3 +67.21476158181834 1637068363.7 +69.38850269490406 1637071536.2 +77.2398681554481 1637074708.6 +87.03814752759904 1637132658.4 +80.67549646548257 1637135812.9 +76.10626862554291 1637138967.4 +72.73294561332483 1637142121.9 +70.24259642344647 1637145276.4 +68.48995254811027 1637148430.9 +67.50389408111351 1637151585.4 +67.59507947272724 1637154739.9 +69.86227853253757 1637157894.4 +77.87448882533322 1637161049 +87.0885535723721 1637219159.4 +80.80746120393688 1637222296.3 +76.27901271083788 1637225433.2 +72.94051941893876 1637228570.1 +70.48132287796861 1637231707 +68.7598316515406 1637234843.9 +67.81455253138449 1637237980.7 +67.96577066570369 1637241117.6 +70.31452841919531 1637244254.5 +78.46097600555619 1637247391.4 +87.13895961714518 1637305659.7 +80.93574887098046 1637308779.2 +76.45175679613284 1637311898.8 +73.14441615314195 1637315018.4 +70.7104226345583 1637318138 +69.02376112844927 1637321257.6 +68.1192613551338 1637324377.2 +68.32683516074773 1637327496.8 +70.74525235487727 1637330616.4 +78.99846165730594 1637333736 +87.18568859050748 1637392159 +81.05581435639145 1637395261.6 +76.61487418349539 1637398364.2 +73.34236326082345 1637401466.9 +70.939522391148 1637404569.5 +69.2780639074255 1637407672.2 +68.41434348095066 1637410774.8 +68.67232333133767 1637413877.4 +71.16267252121602 1637416980.1 +79.497440517326 1637420082.7 +87.23609463528055 1637478657.3 +81.1744753255026 1637481743.4 +76.77799157085792 1637484829.4 +73.53663329709417 1637487915.5 +71.15672289469437 1637491001.5 +69.52641705988006 1637494087.5 +68.70347598024587 1637497173.6 +69.00818480399516 1637500259.6 +71.55856673657902 1637503345.7 +79.95336747539449 1637506431.7 +87.27687398212119 1637565154.6 +81.29086373950283 1637568224.4 +76.93515933169878 1637571294.3 +73.72495370684325 1637574364.1 +71.37024632682997 1637577433.9 +69.77109314092387 1637580503.7 +68.97703215508696 1637583573.5 +69.33441957872024 1637586643.3 +71.93520755607717 1637589713.2 +80.37078764173326 1637592783 +87.32133040037257 1637651650.8 +81.4013025269814 1637654704.8 +77.08865002112887 1637657758.8 +73.90137486354898 1637660812.7 +71.58009268755481 1637663866.7 +70.009819595446 1637666920.7 +69.24691125851729 1637669974.6 +69.64875510040196 1637673028.6 +72.30222167764288 1637676082.6 +80.7630047856855 1637679136.6 +87.36210974721321 1637738145.8 +81.50806424304919 1637741184.3 +77.23619108403733 1637744222.8 +74.08006857536562 1637747261.4 +71.78171686664707 1637750299.9 +70.2389193520357 1637753338.4 +69.51084073542597 1637756376.9 +69.9475142976296 1637759415.4 +72.64770984823281 1637762454 +81.11811965420786 1637765492.5 +87.40288909405385 1637824639.5 +81.61114888770624 1637827663 +77.37778252042409 1637830686.5 +74.25281266066058 1637833710 +71.97598690291781 1637836733.4 +70.45611985558207 1637839756.9 +69.7651435144022 1637842780.4 +70.2389193520357 1637845803.9 +72.97762169436864 1637848827.3 +81.44803150034369 1637851850.8 +87.44366844089448 1637911131.9 +81.71196097725237 1637914140.7 +77.51569688540009 1637917149.6 +74.41593004802311 1637920158.4 +72.16430731266686 1637923167.3 +70.66964328771766 1637926176.2 +70.00386996892433 1637929185 +70.51842515339848 1637932193.9 +73.29195721605038 1637935202.7 +81.752740324093 1637938211.6 +87.48444778773512 1637997622.8 +81.80909599538774 1638000617.4 +77.65133869526518 1638003612.1 +74.57677488027474 1638006606.8 +72.34667809589426 1638009601.5 +70.87721709333161 1638012596.1 +70.2389193520357 1638015590.8 +70.78603170171789 1638018585.5 +73.59071641327802 1638021580.2 +82.03224612545576 1638024574.8 +87.52155006316498 1638084112.1 +81.90028138700143 1638087093.1 +77.77962636230876 1638090074 +74.73026556970484 1638093055 +72.5253718077109 1638096035.9 +71.077436756124 1638099016.8 +70.4657465535145 1638101997.8 +71.04628410721581 1638104978.7 +73.87617184116243 1638107959.6 +82.29617560236444 1638110940.6 +87.55637978348395 1638170599.9 +81.99146677861512 1638173567.6 +77.90196440283066 1638176535.2 +74.87780663261329 1638179502.9 +72.6921662664842 1638182470.6 +71.26943423728383 1638185438.2 +70.6792699856501 1638188405.9 +71.2909601882596 1638191373.5 +74.14605094459279 1638194341.2 +82.53490205688657 1638197308.9 +87.58753243239215 1638257086 +82.07302547229641 1638260040.8 +78.01835281683088 1638262995.7 +75.01939806900005 1638265950.6 +72.85528365384674 1638268905.4 +71.45180502051123 1638271860.3 +70.88911634637492 1638274815.2 +71.52373701626006 1638277770 +74.40035372356901 1638280724.9 +82.75805218695459 1638283679.7 +87.61641252618945 1638343570.3 +82.15826123738843 1638346512.8 +78.13474123083112 1638349455.4 +75.15731243397605 1638352397.9 +73.0124514146876 1638355340.5 +71.63049873232787 1638358283 +71.08706345405643 1638361225.6 +71.74688714632809 1638364168.1 +74.6427572495019 1638367110.7 +82.96194892115776 1638370053.2 +87.64756517509764 1638430052.7 +82.23614285965893 1638432983.4 +78.24150294689892 1638435914.2 +75.28927717243037 1638438844.9 +73.15999247759605 1638441775.6 +71.79729319110116 1638444706.4 +71.2753838638055 1638447637.1 +71.96041057846371 1638450567.9 +74.87185700609162 1638453498.6 +83.15026933090684 1638456429.3 +87.67871782400584 1638516533.2 +82.30580230029686 1638519452.6 +78.34231503644504 1638522372 +75.41161521295228 1638525291.5 +73.30158391398281 1638528210.9 +71.95446095194204 1638531130.4 +71.45180502051123 1638534049.8 +72.15835768614521 1638536969.2 +75.08538043822722 1638539888.7 +83.3230134162018 1638542808.1 +87.70392084639238 1638603011.6 +82.37773429604569 1638605920.3 +78.43945005458042 1638608828.9 +75.52800362695253 1638611737.6 +73.43949827895881 1638614646.3 +72.10795164137214 1638617554.9 +71.6245491058062 1638620463.6 +72.34667809589426 1638623372.3 +75.28927717243037 1638626280.9 +83.48613080356434 1638629189.6 +87.73280094018968 1638689487.9 +82.44371666527287 1638692386.3 +78.5365850727158 1638695284.8 +75.64071496954199 1638698183.2 +73.56551339089148 1638701081.6 +72.2495430777589 1638703980.1 +71.78766649316873 1638706878.5 +72.52904887912167 1638709776.9 +75.48127465359022 1638712675.3 +83.63367186647278 1638715573.8 +87.75432689116543 1638775962 +82.50602196308927 1638778850.7 +78.62182083780783 1638781739.5 +75.74747668560978 1638784628.2 +73.68785143141338 1638787517 +72.38745744273491 1638790405.7 +71.93520755607717 1638793294.5 +72.69811589300586 1638796183.2 +75.65996836540685 1638799072 +83.76931367633787 1638801960.7 +87.77952991355197 1638862433.8 +82.56605470579477 1638865313.4 +78.70337953148909 1638868193 +75.84233914863424 1638871072.7 +73.80056277400284 1638873952.3 +72.51347255466757 1638876831.9 +72.07679899246394 1638879711.5 +72.85528365384674 1638882591.2 +75.82308575276937 1638885470.8 +83.89165171685977 1638888350.4 +87.80105586452774 1638948903.3 +82.6224103770895 1638951774.3 +78.7789885986487 1638954645.4 +75.93352454024794 1638957516.5 +73.90732449007064 1638960387.5 +72.6321335237787 1638963258.6 +72.20876373091826 1638966129.6 +72.99687509023352 1638969000.7 +75.97430388708858 1638971871.8 +84.00804013086001 1638974742.8 +87.8203092603926 1639035370.3 +82.67281642186256 1639038233.3 +78.85092059439752 1639041096.4 +76.02103286045089 1639043959.5 +74.00445950820601 1639046822.6 +72.74257231125726 1639049685.7 +72.33110177144017 1639052548.8 +73.13478945520951 1639055411.9 +76.11816787858625 1639058275 +84.11112477551704 1639061138.1 +87.83588558484672 1639121834.7 +82.71727284011396 1639124690.4 +78.9169029636247 1639127546.1 +76.10259155413215 1639130401.9 +74.09564489981972 1639133257.6 +72.84565695591431 1639136113.3 +72.4474901854404 1639138969 +73.2571274957314 1639141824.7 +76.24418299051892 1639144680.4 +84.20231016713073 1639147536.1 +87.85513898071157 1639208296.6 +82.75805218695459 1639211145.5 +78.97325863491943 1639213994.4 +76.17225099477008 1639216843.4 +74.17720359350098 1639219692.3 +72.936842347528 1639222541.2 +72.55057483009745 1639225390.2 +73.37351590973164 1639228239.1 +76.36057140451915 1639231088 +84.28754593222277 1639233936.9 +87.87071530516567 1639294755.8 +82.79883153379524 1639297598.5 +79.02961430621416 1639300441.3 +76.23823336399725 1639303284.1 +74.25281266066058 1639306126.8 +73.02207811262004 1639308969.6 +72.64176022171114 1639311812.3 +73.47432799927778 1639314655.1 +76.46733312058694 1639317497.8 +84.36542755449328 1639320340.6 +87.88034200309811 1639381212.2 +82.83593380922508 1639384049.4 +79.08002035098723 1639386886.6 +76.30053866181365 1639389723.8 +74.31879502988775 1639392561 +73.09401010836888 1639395398.2 +72.72699598680316 1639398235.4 +73.56551339089148 1639401072.6 +76.5644681387223 1639403909.8 +84.43140992372044 1639406747 +87.89591832755221 1639467665.9 +82.8648139030224 1639470498.1 +79.12079969782786 1639473330.4 +76.3509447065867 1639476162.7 +74.37882777259324 1639478994.9 +73.16594210411772 1639481827.2 +72.80487760907366 1639484659.5 +73.64707208457274 1639487491.7 +76.64602683240358 1639490324 +84.48776559501518 1639493156.3 +87.90554502548464 1639554116.6 +82.89001692540893 1639556944.6 +79.1615790446685 1639559772.6 +76.39767367994902 1639562600.5 +74.42923381736631 1639565428.5 +73.22002522030154 1639568256.4 +72.86491035177917 1639571084.4 +73.71900408032158 1639573912.4 +76.71795882815242 1639576740.3 +84.53817163978823 1639579568.3 +87.91744427852798 1639640564.4 +82.91749250290637 1639643388.7 +79.19273169357669 1639646213 +76.43250340026798 1639649037.3 +74.47596279072862 1639651861.6 +73.27270382018551 1639654685.9 +72.92126602307391 1639657510.2 +73.77903682302707 1639660334.5 +76.77799157085792 1639663158.8 +84.57895098662887 1639665983.1 +87.92112134993874 1639727009.3 +82.93674589877124 1639729830.5 +79.21793471596322 1639732651.8 +76.46733312058694 1639735473.1 +74.51079251104757 1639738294.4 +73.31121061191524 1639741115.6 +72.96572244132531 1639743936.9 +73.83171542291105 1639746758.2 +76.82839761563099 1639749579.5 +84.61378070694784 1639752400.7 +87.92707097646041 1639813451 +82.95232222322534 1639816269.9 +79.23718811182809 1639819088.8 +76.49253614297348 1639821907.7 +74.54194515995577 1639824726.6 +73.3483128873451 1639827545.5 +73.00282471675517 1639830364.4 +73.86654514323001 1639833183.3 +76.86917696247161 1639836002.2 +84.63898372933436 1639838821.1 +87.93302060298208 1639899889.7 +82.96194892115776 1639902706.9 +79.25276443628219 1639905524 +76.50811246742758 1639908341.2 +74.56347111093154 1639911158.4 +73.36756628320997 1639913975.5 +73.0280277391417 1639916792.7 +73.8976977921382 1639919609.8 +76.90032961137982 1639922427 +84.66050968031013 1639925244.2 +87.93669767439285 1639986325.2 +82.96789854767943 1639989141.3 +79.26239113421462 1639991957.4 +76.52368879188167 1639994773.5 +74.57677488027474 1639997589.6 +73.38314260766407 1640000405.6 +73.04728113500657 1640003221.7 +73.9110015614814 1640006037.8 +76.9159059358339 1640008853.9 +84.67013637824256 1640011670 +87.93669767439285 1640072757.5 +82.97157561909019 1640075573.2 +79.2683407607363 1640078388.9 +76.52963841840334 1640081204.5 +74.58272450679641 1640084020.2 +73.38909223418574 1640086835.8 +73.05323076152824 1640089651.5 +73.91695118800307 1640092467.2 +76.91958300724468 1640095282.8 +84.67381344965332 1640098098.5 +87.93669767439285 1640159186.6 +82.97157561909019 1640162002.5 +79.2683407607363 1640164818.4 +76.52368879188167 1640167634.3 +74.57677488027474 1640170450.2 +73.38314260766407 1640173266.1 +73.04728113500657 1640176082 +73.91695118800307 1640178897.8 +76.9159059358339 1640181713.7 +84.67013637824256 1640184529.6 +87.93669767439285 1640245612.5 +82.96789854767943 1640248429.2 +79.25871406280386 1640251246 +76.51406209394925 1640254062.8 +74.56714818234231 1640256879.5 +73.37351590973164 1640259696.3 +73.03397736566338 1640262513.1 +73.90137486354898 1640265329.8 +76.90032961137982 1640268146.6 +84.66050968031013 1640270963.4 +87.93302060298208 1640332035 +82.958271849747 1640334853.3 +79.24681480976052 1640337671.6 +76.49848576949515 1640340489.9 +74.54789478647744 1640343308.2 +73.35198995875587 1640346126.5 +73.0124514146876 1640348944.8 +73.87617184116243 1640351763.1 +76.87512658899328 1640354581.4 +84.63898372933436 1640357399.7 +87.92707097646041 1640418454.2 +82.9426955252929 1640421274.7 +79.22756141389566 1640424095.2 +76.47923237363028 1640426915.7 +74.52269176409091 1640429736.2 +73.32310986495857 1640432556.6 +72.97762169436864 1640435377.1 +73.83539249432181 1640438197.6 +76.83802431356341 1640441018.1 +84.61378070694784 1640443838.6 +87.92112134993874 1640504870.1 +82.9271192008388 1640507693.4 +79.20235839150912 1640510516.7 +76.44807972472208 1640513340.1 +74.49153911518272 1640516163.4 +73.28600758952871 1640518986.7 +72.936842347528 1640521810 +73.79093607607041 1640524633.3 +76.78761826879035 1640527456.6 +84.58262805803963 1640530279.9 +87.91149465200631 1640591282.6 +82.90559324986303 1640594109.4 +79.17120574260092 1640596936.2 +76.41097744929222 1640599763 +74.44481014182041 1640602589.8 +73.23560154475564 1640605416.6 +72.88048667623328 1640608243.4 +73.73458040477568 1640611070.2 +76.72758552608485 1640613897 +84.53817163978823 1640616723.8 +87.90554502548464 1640677691.8 +82.8803902274765 1640680522.7 +79.14005309369271 1640683353.6 +76.36652103104082 1640686184.5 +74.39440409704734 1640689015.4 +73.1792458734609 1640691846.3 +72.82045393352777 1640694677.2 +73.66264840902684 1640697508.1 +76.65565353033601 1640700339.1 +84.48776559501518 1640703170 +87.89224125614145 1640764097.5 +82.8515101336792 1640766933.2 +79.09559667544133 1640769768.9 +76.31611498626775 1640772604.5 +74.33804842575262 1640775440.2 +73.11326350423374 1640778275.9 +72.74852193777893 1640781111.5 +73.58108971534558 1640783947.2 +76.57409483665474 1640786782.9 +84.43140992372044 1640789618.5 +87.88034200309811 1640850499.9 +82.82035748477101 1640853341 +79.04886770207902 1640856182 +76.25975931497302 1640859023.1 +74.27206605652545 1640861864.1 +73.04360406359581 1640864705.2 +72.66696324409767 1640867546.2 +73.49585395025355 1640870387.3 +76.48290944504105 1640873228.3 +84.36542755449328 1640876069.4 +87.86703823375491 1640936898.9 +82.77957813793036 1640939746 +78.99846165730594 1640942593.1 +76.19377694574585 1640945440.1 +74.20240661588751 1640948287.2 +72.96204536991455 1640951134.2 +72.56982822596231 1640953981.3 +73.3927693055965 1640956828.3 +76.37614772897325 1640959675.4 +84.28754593222277 1640962522.4 +87.8514619093008 1641023294.6 +82.73879879108972 1641026148.3 +78.93842891460045 1641029001.9 +76.12779457651868 1641031855.6 +74.12084792220624 1641034709.3 +72.87085997830084 1641037563 +72.46901613641617 1641040416.6 +73.28233051811794 1641043270.3 +76.25975931497302 1641046124 +84.2082597936524 1641048977.7 +87.83588558484672 1641109686.8 +82.69206981772743 1641112547.8 +78.87612361678406 1641115408.7 +76.04623588283742 1641118269.6 +74.02966253059255 1641121130.5 +72.76777533364381 1641123991.4 +72.36225442034838 1641126852.3 +73.15999247759605 1641129713.2 +76.13374420304035 1641132574.1 +84.11112477551704 1641135435 +87.81435963387095 1641196075.8 +82.64761339947603 1641198944.5 +78.80646417614612 1641201813.2 +75.96467718915615 1641204682 +73.93252751245717 1641207550.7 +72.661013617576 1641210419.4 +72.23991637982647 1641213288.2 +73.02207811262004 1641216156.9 +75.99582983806435 1641219025.6 +84.00804013086001 1641221894.4 +87.79510623800607 1641282461.3 +82.5912577281813 1641285338.5 +78.7345321803973 1641288215.6 +75.87349179754246 1641291092.8 +73.83171542291105 1641293969.9 +72.54462520357578 1641296847.1 +72.10795164137214 1641299724.2 +72.88048667623328 1641302601.4 +75.84233914863424 1641305478.5 +83.89165171685977 1641308355.7 +87.7735802870303 1641368843.6 +82.53490205688657 1641371729.7 +78.65297348671602 1641374615.9 +75.77635677940708 1641377502 +73.71900408032158 1641380388.2 +72.41861009164312 1641383274.3 +71.96636020498538 1641386160.5 +72.7233189153924 1641389046.6 +75.67554468986096 1641391932.8 +83.76931367633787 1641394818.9 +87.75432689116543 1641455222.5 +82.47486931418106 1641458118.3 +78.567737721624 1641461014 +75.67554468986096 1641463909.7 +73.60261566632136 1641466805.4 +72.28664535318877 1641469701.1 +71.81881914207693 1641472596.9 +72.55425190150821 1641475492.6 +75.50280060456599 1641478388.3 +83.63367186647278 1641481284 +87.72912386877891 1641541598.2 +82.4088869449539 1641544504.1 +78.47427977489939 1641547409.9 +75.56283334727148 1641550315.8 +73.47432799927778 1641553221.6 +72.14278136169109 1641556127.5 +71.6557017547144 1641559033.3 +72.37783074480248 1641561939.2 +75.30853056829524 1641564845 +83.48613080356434 1641567750.8 +87.70392084639238 1641627970.7 +82.34290457572673 1641630887.2 +78.37941731187492 1641633803.7 +75.44644493327124 1641636720.3 +73.34236326082345 1641639636.8 +71.9915632273719 1641642553.3 +71.4889072959411 1641645469.8 +72.1895103350534 1641648386.3 +75.10690638920298 1641651302.9 +83.3230134162018 1641654219.4 +87.67276819748417 1641714339.9 +82.2709725799779 1641717267.7 +78.28228229373956 1641720195.4 +75.32410689274936 1641723123.1 +73.20077182443667 1641726050.9 +71.83439546653103 1641728978.6 +71.31021358412447 1641731906.3 +71.98561360085024 1641734834.1 +74.89338295706737 1641737761.8 +83.14431970438517 1641740689.5 +87.64161554857597 1641800706 +82.1953635128183 1641803645.5 +78.17552057767176 1641806584.9 +75.19809178081668 1641809524.4 +73.05323076152824 1641812463.9 +71.66532845264683 1641815403.3 +71.1218931743754 1641818342.8 +71.77803979523631 1641821282.3 +74.66428320047767 1641824221.7 +82.958271849747 1641827161.2 +87.61273545477869 1641887068.9 +82.11380481913703 1641890020.7 +78.05913216367152 1641892972.4 +75.06017741584068 1641895924.1 +72.89606300068738 1641898875.8 +71.49258436735187 1641901827.5 +70.9239460666939 1641904779.2 +71.55488966516826 1641907730.9 +74.41960711943388 1641910682.6 +82.74842548902217 1641913634.4 +87.58158280587048 1641973428.8 +82.02629649893409 1641976393.3 +77.9427437496713 1641979357.7 +74.92226305086467 1641982322.2 +72.73294561332483 1641985286.6 +71.31021358412447 1641988251.1 +70.71637226107997 1641991215.5 +71.3198402820569 1641994180 +74.16530434045764 1641997144.5 +82.52527535895413 1642000108.9 +87.54675308555152 1642059785.6 +81.94106073384206 1642062763.3 +77.82040570914937 1642065741 +74.77472198795624 1642068718.7 +72.56615115455155 1642071696.4 +71.11821610296464 1642074674 +70.50284882894438 1642077651.7 +71.07148712960233 1642080629.4 +73.89174816561653 1642083607.1 +82.286548904432 1642086584.8 +87.50965081012164 1642146139.4 +81.84987534222837 1642149130.8 +77.69211804210582 1642152122.2 +74.62350385363703 1642155113.6 +72.39340706925658 1642158105 +70.91799644017223 1642161096.4 +70.27374907235466 1642164087.7 +70.81718435062609 1642167079.1 +73.60629273773212 1642170070.5 +82.02261942752332 1642173061.9 +87.47482108980269 1642232490.2 +81.752740324093 1642235495.8 +77.56015330365149 1642238501.3 +74.46038646627451 1642241506.9 +72.20876373091826 1642244512.5 +70.7104226345583 1642247518 +70.0386996892433 1642250523.6 +70.54730524719577 1642253529.1 +73.30753354050448 1642256534.7 +81.73716399963891 1642259540.2 +87.43404174296205 1642318838.1 +81.65192823454686 1642321858.3 +77.42223893867549 1642324878.5 +74.29726907891198 1642327898.6 +72.01676624975843 1642330918.8 +70.49689920242271 1642333939 +69.7962961633104 1642336959.2 +70.26779944583299 1642339979.3 +72.98724839230107 1642342999.5 +81.43245517588959 1642346019.7 +87.3932623961214 1642405183.2 +81.54884358988983 1642408218.4 +77.28064750228873 1642411253.6 +74.124524993617 1642414288.8 +71.8224962134877 1642417324.1 +70.27374907235466 1642420359.3 +69.54199338433416 1642423394.5 +69.97271732001613 1642426429.7 +72.65733654616524 1642429464.9 +81.09659370323209 1642432500.1 +87.35248304928078 1642491525.4 +81.44208187382202 1642494576.1 +77.13310643938028 1642497626.8 +73.94810383691129 1642500677.5 +71.62087203439542 1642503728.2 +70.04464931576497 1642506778.8 +69.28174097883627 1642509829.5 +69.67395812278849 1642512880.2 +72.30589874905364 1642515930.9 +80.73185213677729 1642518981.6 +87.31170370244016 1642577864.9 +81.33164308634346 1642580931.5 +76.98188830506109 1642583998 +73.76941012509464 1642587064.6 +71.4110256736706 1642590131.1 +69.8118724877645 1642593197.7 +69.00818480399516 1642596264.2 +69.35962260110676 1642599330.8 +71.94115718259884 1642602397.3 +80.33963499282507 1642605463.9 +87.26724728418876 1642664201.7 +81.218931743754 1642667284.5 +76.82472054422021 1642670367.3 +73.58108971534558 1642673450.2 +71.197502241535 1642676533 +69.5671964067207 1642679615.8 +68.7286790026324 1642682698.6 +69.02743819986003 1642685781.4 +71.55856673657902 1642688864.2 +79.91258812855385 1642691947 +87.22051831082645 1642750535.8 +81.10254332975376 1642753635.3 +76.66528022826844 1642756734.8 +73.38909223418574 1642759834.2 +70.98030173798864 1642762933.7 +69.31289362774447 1642766033.1 +68.44322357474796 1642769132.6 +68.69384928231342 1642772232.1 +71.15672289469437 1642775331.5 +79.44476191744202 1642778431 +87.17011226605338 1642836867.4 +80.98020528923186 1642839983.8 +76.49848576949515 1642843100.3 +73.19114512650424 1642846216.8 +70.75120198139894 1642849333.3 +69.05491377735747 1642852449.7 +68.14446437752034 1642855566.2 +68.34241148520182 1642858682.7 +70.7415752834665 1642861799.1 +78.94210598601121 1642864915.6 +87.1197062212803 1642923196.3 +80.85419017729919 1642926330.2 +76.32574168420018 1642929464 +72.98724839230107 1642932597.9 +70.51842515339848 1642935731.7 +68.78871174533789 1642938865.5 +67.83975555377103 1642941999.4 +67.97766991874703 1642945133.2 +70.29895209474121 1642948267.1 +78.39499363632902 1642951400.9 +87.06930017650724 1643009522.8 +80.72222543884486 1643012674.4 +76.15299759890522 1643015825.9 +72.77372496016548 1643018977.5 +70.27969869887633 1643022129 +68.52110519701846 1643025280.6 +67.5254200320893 1643028432.1 +67.6010290992489 1643031583.7 +69.84075258156179 1643034735.2 +77.79520268676286 1643037886.7 +87.01662157662327 1643095846.9 +80.59026070039053 1643099016.5 +75.97062681567782 1643102186.1 +72.56020152802988 1643105355.6 +70.03502261783254 1643108525.2 +68.24159939565568 1643111694.8 +67.19918525736423 1643114864.4 +67.21476158181834 1643118034 +69.36329967251753 1643121203.5 +77.14868276383437 1643124373.1 +86.96253846043945 1643182168.6 +80.45234633541453 1643185356.5 +75.78598347733951 1643188544.4 +72.34667809589426 1643191732.4 +69.78666946537797 1643194920.3 +67.95614396777125 1643198108.2 +66.86927341122839 1643201296.2 +66.81886736645534 1643204484.1 +68.86659336760839 1643207672 +76.44807972472208 1643210860 +86.90618278914471 1643268487.9 +80.31443197043852 1643271694.5 +75.59993562270135 1643274901.1 +72.12352796582624 1643278107.7 +69.53236668640173 1643281314.3 +67.66701146847608 1643284520.9 +66.52746231204922 1643287727.4 +66.40739682663823 1643290934 +68.34241148520182 1643294140.6 +75.68517138779337 1643297347.2 +86.84982711784998 1643354805 +80.16689090753009 1643358030.6 +75.40198851501985 1643361256.1 +71.89442820923652 1643364481.6 +69.27211428090384 1643367707.2 +67.36597971613753 1643370932.7 +66.17829707004853 1643374158.2 +65.98034996236704 1643377383.7 +67.79897620693039 1643380609.3 +74.86817993468085 1643383834.8 +86.78979437514448 1643441119.9 +80.01934984462166 1643444364.7 +75.20771847874911 1643447609.4 +71.66165138123607 1643450854.2 +69.0022351774735 1643454098.9 +67.06127089238822 1643457343.7 +65.82318220152617 1643460588.4 +65.54367640016339 1643463833.2 +67.23401497768319 1643467078 +73.99256025516267 1643470322.7 +86.72748907732809 1643527432.6 +79.87180878171321 1643530696.9 +75.00382174454595 1643533961.1 +71.42292492671393 1643537225.4 +68.73462862915407 1643540489.6 +66.75288499722818 1643543753.9 +65.45616807996046 1643547018.1 +65.09510358491642 1643550282.4 +66.64612328116037 1643553546.6 +73.05323076152824 1643556810.9 +86.6615067081009 1643613743.3 +79.71464102087236 1643617027.3 +74.79624793893201 1643620311.3 +71.17824884567014 1643623595.3 +68.45879989920206 1643626879.3 +66.43627692043553 1643630163.3 +65.08547688698398 1643633447.3 +64.63322700032626 1643636731.3 +66.03075600714011 1643640015.3 +72.06122266800983 1643643299.2 +86.60147396539541 1643700051.9 +79.55747326003149 1643703355.8 +74.58867413331808 1643706659.8 +70.93357276462633 1643709963.8 +68.17561702642853 1643713267.8 +66.11231470082136 1643716571.8 +64.7051589960751 1643719875.8 +64.15945116269275 1643723179.8 +65.39018571073329 1643726483.8 +71.01145438689684 1643729787.8 +86.52954196964659 1643786358.4 +79.39435587266895 1643789682.7 +74.37515070118248 1643793006.9 +70.6792699856501 1643796331.1 +67.8901615985441 1643799655.3 +65.7860799260963 1643802979.6 +64.31889147864453 1643806303.8 +63.672371555716055 1643809628 +64.72441239193996 1643812952.2 +69.90673495078896 1643816276.4 +86.4635596004194 1643872663.1 +79.22756141389566 1643876007.8 +74.1556776425252 1643879352.5 +70.42496720667387 1643882697.1 +67.6010290992489 1643886041.8 +65.4502184534388 1643889386.5 +63.92072470817062 1643892731.1 +63.17566525080693 1643896075.8 +64.03343605076009 1643899420.5 +68.74793239849727 1643902765.2 +86.39162760467057 1643958965.9 +79.05849440001145 1643962331.2 +73.93252751245717 1643965696.6 +70.16698735628687 1643969061.9 +67.30594697343203 1643972427.2 +65.11662953589219 1643975792.6 +63.51520379487519 1643979157.9 +62.66111006633279 1643982523.3 +63.311307060672014 1643985888.6 +67.53504673002173 1643989253.9 +86.32196816403264 1644045266.8 +78.88575031471649 1644048653 +73.70342775586747 1644052039.2 +69.9030578793782 1644055425.5 +67.00718777620439 1644058811.7 +64.77114136530227 1644062197.9 +63.103733255058096 1644065584.1 +62.13692818392621 1644068970.3 +62.56397504819742 1644072356.5 +66.26353283514057 1644075742.7 +86.25003616828381 1644131566 +78.70932915801076 1644134973.3 +73.47432799927778 1644138380.5 +69.63912840246952 1644141787.8 +66.70615602386587 1644145195.1 +64.41970356819066 1644148602.4 +62.68631308871932 1644152009.6 +61.59944253217645 1644155416.9 +61.78181331540384 1644158824.2 +64.92830912614312 1644162231.5 +86.16847747460254 1644217863.4 +78.53063544619413 1644221292 +73.24155117127731 1644224720.5 +69.36329967251753 1644228149 +66.3954975735949 1644231577.5 +64.06458869966829 1644235006.1 +62.259266224448126 1644238434.6 +61.04638055597258 1644241863.1 +60.97444856022375 1644245291.6 +63.52483049280762 1644248720.2 +86.09286840744295 1644304159.2 +78.34231503644504 1644307609.1 +73.00282471675517 1644311059.1 +69.08974349767644 1644314509.1 +66.08711167843484 1644317959 +63.70720127603502 1644321409 +61.82854228876616 1644324858.9 +60.48141932672539 1644328308.9 +60.135931156135456 1644331758.8 +62.05764204535586 1644335208.8 +86.01130971376168 1644390453.3 +78.15994425321766 1644393924.9 +72.76409826223305 1644397396.4 +68.81023769631366 1644400868 +65.77050360164219 1644404339.5 +63.342459709580226 1644407811.1 +61.385919100040844 1644411282.6 +59.90683139954575 1644414754.2 +59.26258403172818 1644418225.7 +60.50662234911192 1644421697.2 +85.92975102008039 1644476745.9 +77.96794677205783 1644480239.2 +72.51347255466757 1644483732.5 +68.5307318949509 1644487225.8 +65.4502184534388 1644490719.1 +62.97544558801452 1644494212.4 +60.93961883990478 1644497705.7 +59.316667147912014 1644501199 +58.35808425841271 1644504692.3 +62.620330719492145 1644508185.6 +85.84819232639914 1644563036.9 +77.76999966437631 1644566552.1 +72.26511940221302 1644570067.3 +68.24527646706646 1644573582.5 +65.12625623382462 1644577097.7 +62.601077323627294 1644580612.9 +60.487368953247056 1644584128.1 +58.71319912693508 1644587643.3 +57.42243183618905 1644591158.5 +57.15850235928038 1644594673.7 +85.75700693478544 1644649326.5 +77.56978000158392 1644652863.8 +72.01676624975843 1644656401 +67.95614396777125 1644659938.2 +64.80002145909957 1644663475.5 +62.22443650412916 1644667012.7 +60.02321981354598 1644670550 +58.09783185291481 1644674087.2 +56.451949693646405 1644677624.5 +55.343553186127764 1644681161.7 +85.67177116969341 1644735614.6 +77.36815582249164 1644739174.1 +71.75651384426052 1644742733.5 +67.6610618419544 1644746292.9 +64.47010961296372 1644749852.3 +61.84411861322026 1644753411.8 +59.56134322895581 1644756971.2 +57.47283788096211 1644760530.6 +55.444365275673896 1644764090 +53.433741549950696 1644767649.5 +85.5783132229688 1644821901.4 +77.16425908828847 1644825483.1 +71.49853399387354 1644829064.9 +67.36597971613753 1644832646.6 +64.14019776682788 1644836228.3 +61.45785109578968 1644839810.1 +59.083890319911546 1644843391.8 +56.82859051314455 1644846973.5 +54.40422369249333 1644850555.3 +51.41121857118416 1644854137 +85.48712783135511 1644908186.8 +76.95073565615289 1644911791 +71.23460451696488 1644915395.1 +67.06722051890989 1644918999.3 +63.80433629417038 1644922603.5 +61.06563395183745 1644926207.6 +58.60643741086728 1644929811.8 +56.17244389228364 1644933416 +53.33065690529366 1644937020.1 +44.80984105454556 1644940624.3 +85.39226536833064 1644994470.9 +76.73721222401728 1644998097.6 +70.97067504005621 1645001724.3 +66.76618876657137 1645005351.1 +63.46479775010212 1645008977.8 +60.67341680788521 1645012604.5 +58.11935780389058 1645016231.2 +55.506670573490304 1645019857.9 +52.21858332636427 1645023484.6 +34.7847344809158 1645027111.3 +85.29513035019527 1645080753.8 +76.52368879188167 1645084403.2 +70.70079593662587 1645088052.5 +66.46147994282207 1645091701.9 +63.11930957951219 1645095351.2 +60.273845521111454 1645099000.6 +57.630005641802974 1645102650 +54.82532093024287 1645106299.3 +51.075357098526666 1645109948.7 +0.0 1645113598 +85.19204570553823 1645167035.5 +76.30053866181365 1645170707.6 +70.42496720667387 1645174379.7 +66.153094047662 1645178051.8 +62.77749848033302 1645181723.9 +59.87567875063755 1645185396 +57.13329933689384 1645189068.2 +54.134344589063005 1645192740.3 +49.89135152384843 1645196412.4 +0.0 1645200084.5 +85.09123361599211 1645253316 +76.07738853174561 1645257011 +70.1454614053111 1645260705.9 +65.84243559739103 1645264400.9 +62.42833323833233 1645268095.9 +59.470157837342114 1645271790.8 +56.628370850352134 1645275485.8 +53.42779192342903 1645279180.7 +48.676193300261986 1645282875.7 +0.0 1645286570.7 +84.98079482851354 1645339595.4 +75.84828877515591 1645343313.3 +69.86595560394834 1645347031.2 +65.53177714712005 1645350749.1 +62.07689544122072 1645354467 +59.06463692404668 1645358184.9 +56.11608822098891 1645361902.8 +52.70566293334096 1645365620.7 +47.42620535635659 1645369338.6 +0.0 1645373056.5 +84.87403311244574 1645425873.7 +75.61323939204455 1645429614.7 +69.58644980258556 1645433355.6 +65.21744162543833 1645437096.5 +61.725457644109106 1645440837.4 +58.65089382911867 1645444578.3 +55.60380559162567 1645448319.3 +51.97390724532046 1645452060.2 +46.14138769213222 1645455801.1 +0.0 1645459542 +84.76132176985627 1645512151 +75.37451293752241 1645515915.1 +69.29731730329037 1645519679.1 +64.89715647723493 1645523443.1 +61.37034277558674 1645527207.1 +58.23942328930157 1645530971.2 +55.08557333574077 1645534735.2 +51.23252485936752 1645538499.2 +44.81946775247798 1645542263.2 +0.0 1645546027.2 +84.64493335585603 1645598427.3 +75.13578648300027 1645602214.5 +69.00818480399516 1645606001.7 +64.57687132903152 1645609788.9 +61.01522790706438 1645613576.1 +57.82427567807371 1645617363.3 +54.5613914533342 1645621150.5 +50.47556614896049 1645624937.7 +43.46271809250478 1645628724.9 +0.0 1645632512.1 +84.5262723867449 1645684702.7 +74.8874333305457 1645688513.1 +68.71905230469997 1645692323.6 +64.25658618082812 1645696134 +60.654163412020345 1645699944.5 +57.40090588521328 1645703754.9 +54.033532499516866 1645707565.4 +49.70898074062102 1645711375.8 +42.071138712212615 1645715186.3 +0.0 1645718996.7 +84.4062069013339 1645770977.1 +74.6427572495019 1645774810.9 +68.4239701788831 1645778644.6 +63.932623961213956 1645782478.4 +60.29309891697632 1645786312.2 +56.97980864746374 1645790145.9 +53.49972391917786 1645793979.7 +48.930496079238225 1645797813.4 +40.64840668301225 1645801647.2 +0.0 1645805480.9 +84.283868860812 1645857250.7 +74.38477739911491 1645861107.8 +68.12293842654456 1645864964.9 +63.60043955996722 1645868822.1 +59.92835735052152 1645872679.2 +56.558711409714206 1645876536.3 +52.9599657123172 1645880393.5 +48.13870764851222 1645884250.6 +39.188572378382005 1645888107.7 +0.0 1645891964.8 +84.15190412235766 1645943523.4 +74.13047462013868 1645947404 +67.82417922931693 1645951284.5 +63.270527713831385 1645955165.1 +59.56134322895581 1645959045.6 +56.13166454544301 1645962926.2 +52.41653043404576 1645966806.8 +47.33501996474289 1645970687.3 +37.69618090854371 1645974567.9 +0.45224988665773436 1645978448.4 +84.01993938390332 1646029795.3 +73.87022221464078 1646033699.4 +67.51947040556763 1646037603.4 +62.940615867695556 1646041507.5 +59.19660166250102 1646045411.5 +55.70461768117181 1646049315.5 +51.86714552925266 1646053219.6 +46.52170558304112 1646057123.6 +36.1703642346863 1646061027.6 +0.46782621111183603 1646064931.7 +83.887974645449 1646116066.5 +73.60261566632136 1646119994.1 +67.20881195529667 1646123921.6 +62.61070402155973 1646127849.2 +58.82958754093531 1646131776.8 +55.27162119037893 1646135704.3 +51.32003317957046 1646139631.9 +45.69876450340691 1646143559.5 +34.60604076909917 1646147487 +0.4834025355659376 1646151414.6 +83.74411065395134 1646202336.9 +73.332736562891 1646206288.1 +66.9004260601366 1646210239.2 +62.27484254890222 1646214190.4 +58.45889634795885 1646218141.5 +54.84089725469697 1646222092.6 +50.764698648255695 1646226043.8 +44.8661967258403 1646229994.9 +33.01056465460383 1646233946.1 +0.0 1646237897.2 +83.60251921756458 1646288606.7 +73.05918038804991 1646292581.4 +66.58976760986565 1646296556.2 +61.93898107624471 1646300531 +58.08820515498238 1646304505.7 +54.40422369249333 1646308480.5 +50.205687045530155 1646312455.2 +44.01805262381956 1646316430 +31.383935891200295 1646320404.7 +0.0 1646324379.5 +83.45497815465613 1646374875.8 +72.77967458668715 1646378874.2 +66.2754320881839 1646382872.6 +61.59944253217645 1646386871 +57.71751396200591 1646390869.4 +53.971227201700465 1646394867.8 +49.64299837139386 1646398866.2 +43.163958895277155 1646402864.6 +29.71652778095612 1646406863 +0.0 1646410861.4 +83.29781039381527 1646461144.3 +72.49421915880271 1646465166.4 +65.95514693998051 1646469188.5 +61.259903988108185 1646473210.6 +57.340873142507775 1646477232.6 +53.53455363949683 1646481254.7 +49.078037142146655 1646485276.8 +42.30023846880231 1646489298.9 +28.014289950392982 1646493321 +0.0 1646497343.1 +83.1406426329744 1646547412.2 +72.20876373091826 1646551458 +65.6348617917771 1646555503.8 +60.91809288892901 1646559549.6 +56.96423232300965 1646563595.4 +53.0978800772932 1646567641.2 +48.50939884148868 1646571687 +41.424618789284146 1646575732.9 +26.27722239951089 1646579778.7 +0.0 1646583824.5 +82.97752524561187 1646633679.5 +71.91595416021231 1646637749.1 +65.30862701705202 1646641818.6 +60.572604718339086 1646645888.2 +56.58986405862241 1646649957.7 +52.65525688856789 1646654027.3 +47.94076054083072 1646658096.9 +40.541644966944446 1646662166.4 +24.499375501788148 1646666236 +0.0 1646670305.6 +82.8047811603169 1646719946.3 +71.62087203439542 1646724039.7 +64.98466479743786 1646728133 +60.23306617427082 1646732226.3 +56.21690031053504 1646736319.7 +52.2126336998426 1646740413 +47.366172613651095 1646744506.3 +39.64677189156141 1646748599.7 +22.69037595515721 1646752693 +0.0 1646756786.3 +82.63203707502193 1646806212.7 +71.31616321064614 1646810329.8 +64.65248039619112 1646814446.9 +59.887578003680886 1646818564.1 +55.83658241962614 1646822681.2 +51.7722830662282 1646826798.3 +46.79158468647146 1646830915.5 +38.751898816178375 1646835032.6 +20.840597061685642 1646839149.7 +0.0 1646843266.9 +82.44966629179454 1646892478.6 +71.01145438689684 1646896619.5 +64.3225685500553 1646900760.5 +59.53614020656928 1646904901.4 +55.459941600128 1646909042.4 +51.32965987750289 1646913183.3 +46.20737006135939 1646917324.3 +37.84372197145214 1646921465.2 +18.9537158927842 1646925606.2 +0.0 1646929747.1 +82.26134588204548 1646978744 +70.70079593662587 1646982908.8 +63.99265670391946 1646987073.6 +59.19065203597935 1646991238.4 +55.0796237092191 1646995403.2 +50.887036688777584 1646999568 +45.62683250765809 1647003732.7 +36.92732294509333 1647007897.5 +17.034277558674706 1647012062.3 +0.0 1647016227.1 +82.06707584577474 1647065009.1 +70.38051078842247 1647069197.8 +63.65311815985119 1647073386.4 +58.83921423886774 1647077575 +54.702982889720964 1647081763.7 +50.444413500052285 1647085952.3 +45.04856750906769 1647090140.9 +36.00951940243468 1647094329.6 +15.081414020546092 1647098518.2 +0.0 1647102706.8 +81.86545166668247 1647151273.8 +70.06022564021907 1647155486.3 +63.31725668719369 1647159698.8 +58.49372606827781 1647163911.3 +54.32266499881207 1647168123.8 +49.99811323991622 1647172336.3 +44.46435288395563 1647176548.8 +35.083493678143434 1647180761.3 +13.09004369068776 1647184973.8 +0.0 1647189186.3 +81.65560530595764 1647237538.3 +69.733990865494 1647241774.6 +62.97544558801452 1647246011 +58.138611199755445 1647250247.4 +53.94602417931393 1647254483.8 +49.555490051190915 1647258720.1 +43.87418863232189 1647262956.5 +34.14784125591977 1647267192.9 +11.077147409853653 1647271429.3 +0.0 1647275665.6 +81.43840480241126 1647323802.4 +69.4004019479474 1647328062.6 +62.629957417424585 1647332322.9 +57.78717340264384 1647336583.1 +53.56570628840503 1647340843.4 +49.11286686246562 1647345103.7 +43.289974007209814 1647349363.9 +33.214461388807 1647353624.2 +9.035371035222253 1647357884.4 +0.0 1647362144.7 +81.20930504582157 1647410066.2 +69.0645404752899 1647414350.4 +62.284469246834654 1647418634.5 +57.43800816064314 1647422918.7 +53.1890654689069 1647427202.8 +48.66656660232955 1647431487 +42.699809755576084 1647435771.1 +32.27285934006166 1647440055.3 +6.978018336136753 1647444339.4 +0.0 1647448623.6 +80.97425566271019 1647496329.9 +68.72272937611073 1647500637.9 +61.93898107624471 1647504945.9 +57.086570363531536 1647509254 +52.808747577998 1647513562 +48.223943413604246 1647517870.1 +42.111918059053245 1647522178.1 +31.32758021990556 1647526486.2 +4.905089312597149 1647530794.2 +0.0 1647535102.2 +80.72590251025564 1647582593.3 +68.37356413411003 1647586925.2 +61.589815834244014 1647591257.2 +56.73145549500917 1647595589.1 +52.43210675849987 1647599921 +47.78132022487895 1647604253 +41.521753807419515 1647608584.9 +30.378624028338695 1647612916.9 +2.8262106625358774 1647617248.8 +0.0 1647621580.7 +80.46792265986862 1647668856.6 +68.01844926558766 1647673212.4 +61.232428410610744 1647677568.2 +56.37634062648681 1647681924.1 +52.051788867590965 1647686279.9 +47.33501996474289 1647690635.7 +40.93158955578578 1647694991.6 +29.427395281660925 1647699347.4 +0.7532816389962739 1647703703.2 +0.0 1647708059.1 +80.1980435564383 1647755119.7 +67.6610618419544 1647759499.4 +60.88326316861004 1647763879.1 +56.02490282937521 1647768258.9 +51.66919842157116 1647772638.6 +46.892396776017584 1647777018.3 +40.343697859262946 1647781398.1 +28.472489463572387 1647785777.8 +0.0 1647790157.5 +0.0 1647794537.3 +79.91258812855385 1647841382.7 +67.2963202754996 1647845786.3 +60.522198673566024 1647850189.9 +55.66978796085284 1647854593.6 +51.29483015718393 1647858997.2 +46.45204614240319 1647863400.8 +39.753533607629215 1647867804.4 +27.517583645483857 1647872208 +0.0 1647876611.7 +0.0 1647881015.3 +79.61750600273699 1647927645.7 +66.92562908252313 1647932073.2 +60.16708380504365 1647936500.7 +55.31240053721957 1647940928.2 +50.91818933768579 1647945355.7 +46.00942295367789 1647949783.2 +39.159692284584715 1647954210.7 +26.562677827395326 1647958638.2 +0.0 1647963065.7 +0.0 1647967493.2 +79.30317048105526 1648013908.6 +66.548988263025 1648018359.9 +59.80601930999961 1648022811.3 +54.9572856686972 1648027262.7 +50.54154851818765 1648031714.1 +45.566799764952584 1648036165.5 +38.56952803295097 1648040616.8 +25.60549945419588 1648045068.2 +0.0 1648049519.6 +0.0 1648053971 +78.9792082614411 1648100171.4 +66.16272074559443 1648104646.7 +59.44495481495558 1648109121.9 +54.60217080017484 1648113597.2 +50.16490769868952 1648118072.4 +45.12417657622728 1648122547.7 +37.97936378131724 1648127022.9 +24.646916564696586 1648131498.2 +0.0 1648135973.4 +0.0 1648140448.7 +78.63372009085117 1648186434.3 +65.77645322816386 1648190933.4 +59.07794069338988 1648195432.5 +54.24705593165247 1648199931.6 +49.79053943430229 1648204430.7 +44.687503014023655 1648208929.8 +37.3914720847944 1648213428.9 +23.695687818018808 1648217928 +0.0 1648222427.1 +0.0 1648226926.2 +78.26670596928544 1648272697.3 +65.38055901280086 1648277220.2 +58.71319912693508 1648281743.2 +53.895618134540875 1648286266.1 +49.413898614804154 1648290789 +44.250829451820024 1648295312 +36.80130783316068 1648299834.9 +22.740781999930277 1648304357.9 +0.0 1648308880.8 +0.0 1648313403.8 +77.88043845185489 1648358960.3 +64.97871517091619 1648363507.1 +58.34618500536937 1648368053.8 +53.5405032660185 1648372600.6 +49.043207421827695 1648377147.4 +43.814155889616394 1648381694.1 +36.2170932080486 1648386240.9 +21.785876181841747 1648390787.7 +0.0 1648395334.4 +0.0 1648399881.2 +77.47491753855945 1648445223.4 +64.57092170250986 1648449794 +57.97549381239291 1648454364.6 +53.18311584238523 1648458935.1 +48.66656660232955 1648463505.7 +43.37748232741276 1648468076.3 +35.63287858293654 1648472646.9 +20.840597061685642 1648477217.4 +0.0 1648481788 +0.0 1648486358.6 +77.04192104776658 1648531486.7 +64.15945116269275 1648536081 +57.60480261941644 1648540675.4 +52.828000973862856 1648545269.8 +48.29587540935309 1648549864.1 +42.94448583661988 1648554458.5 +35.048663957824466 1648559052.8 +19.889368315007868 1648563647.2 +0.0 1648568241.5 +0.0 1648572835.9 +76.58599408969808 1648617750.1 +63.73835392494322 1648622368.2 +57.23411142643998 1648626986.3 +52.4728861053405 1648631604.5 +47.928861287787385 1648636222.6 +42.51376190093792 1648640840.7 +34.4644493327124 1648645458.8 +18.950038821373436 1648650076.9 +0.0 1648654695.1 +0.0 1648659313.2 +76.09664192761049 1648704013.7 +63.311307060672014 1648708655.6 +56.857470606941845 1648713297.4 +52.12144830822889 1648717939.3 +47.55817009481092 1648722581.2 +42.08076541014505 1648727223 +33.8839117790111 1648731864.9 +18.014386399149767 1648736506.7 +0.0 1648741148.6 +0.0 1648745790.4 +75.57840967172558 1648790277.6 +62.87463349846839 1648794943.1 +56.48310234255461 1648799608.7 +51.76633343970653 1648804274.3 +47.19342852835613 1648808939.8 +41.65371854587384 1648813605.4 +33.3056467804207 1648818271 +17.0787339769261 1648822936.5 +0.0 1648827602.1 +0.0 1648832267.7 +75.02902476693248 1648876541.7 +62.43201030974309 1648881230.9 +56.106461523056474 1648885920.2 +51.41489564259492 1648890609.4 +46.82641440679043 1648895298.7 +41.226671681602646 1648899987.9 +32.731058853241066 1648904677.2 +16.149031181224096 1648909366.4 +0.0 1648914055.7 +0.0 1648918744.9 +74.44113307040963 1648962806.1 +61.98571004960703 1648967519 +55.72982070355833 1648972231.9 +51.06573040059423 1648976944.8 +46.46167284033562 1648981657.7 +40.80557444385312 1648986370.6 +32.15647092606143 1648991083.5 +15.228955083454526 1648995796.4 +0.0 1649000509.3 +0.0 1649005222.2 +73.81613909845694 1649049070.8 +61.53346016294928 1649053807.3 +55.34950281264943 1649058543.8 +50.71429260348262 1649063280.3 +46.10060834529159 1649068016.8 +40.378527579581906 1649072753.4 +31.58783262540346 1649077489.9 +14.31482861220663 1649082226.4 +0.0 1649086962.9 +0.0 1649091699.4 +73.14441615314195 1649135335.9 +61.07158357835912 1649140096 +54.966912366629636 1649144856 +50.36285480637102 1649149616.1 +45.73954385024756 1649154376.2 +39.96110741324314 1649159136.3 +31.0191943247455 1649163896.4 +13.404379212369488 1649168656.5 +0.0 1649173416.6 +0.0 1649178176.7 +72.43418641609722 1649221601.3 +60.597807740725614 1649226384.9 +54.58659447572074 1649231168.6 +50.013689564370324 1649235952.2 +45.37847935520351 1649240735.8 +39.54595980201528 1649245519.4 +30.454233095498292 1649250303.1 +12.505829065575693 1649255086.7 +0.0 1649259870.3 +0.0 1649264653.9 +71.68090477710093 1649307867.2 +60.12630445820302 1649312674.3 +54.20032695829017 1649317481.4 +49.668201393780386 1649322288.5 +45.02336448668115 1649327095.7 +39.12853963567651 1649331902.8 +29.889271866251093 1649336709.9 +11.610955990192656 1649341517 +0.0 1649346324.1 +0.0 1649351131.3 +70.87721709333161 1649394133.5 +59.63695229611541 1649398964.1 +53.820009067381264 1649403794.6 +49.316763596668785 1649408625.2 +44.66824961815879 1649413455.8 +38.717069095859415 1649418286.3 +29.330260263525552 1649423116.9 +10.727982167852959 1649427947.5 +0.0 1649432778 +0.0 1649437608.6 +70.03502261783254 1649480400.3 +59.14987268913872 1649485254.3 +53.433741549950696 1649490108.2 +48.97127542607885 1649494962.2 +44.31681182104719 1649499816.2 +38.305598556042305 1649504670.1 +28.77719828732169 1649509524.1 +9.852362488334784 1649514378.1 +0.0 1649519232 +0.0 1649524086 +69.14609916897116 1649566667.6 +58.65089382911867 1649571544.9 +53.0511511039309 1649576422.2 +48.631736882010586 1649581299.5 +43.96537402393558 1649586176.9 +37.89780508763597 1649591054.2 +28.227813382528584 1649595931.5 +8.988642061859952 1649600808.8 +0.0 1649605686.1 +0.0 1649610563.4 +68.21639637326916 1649652935.5 +58.144560826277115 1649657836.1 +52.66488358650033 1649662736.7 +48.286248711420654 1649667637.3 +43.61988585334565 1649672537.9 +37.49823380086221 1649677438.5 +27.68070103284639 1649682339.1 +8.130871261906785 1649687239.7 +0.0 1649692140.3 +0.0 1649697040.9 +67.2495913021373 1649739203.9 +57.630005641802974 1649744127.7 +52.27861606906976 1649749051.6 +47.94443761224149 1649753975.4 +43.27439768275572 1649758899.2 +37.09638995897753 1649763823.1 +27.134993199464056 1649768746.9 +7.282727159886053 1649773670.8 +0.0 1649778594.6 +0.0 1649783518.4 +66.25390613720813 1649825472.9 +57.11177338591807 1649830419.9 +51.88867148022843 1649835367 +47.60489906817322 1649840314 +42.92890951216579 1649845261 +36.69454611709287 1649850208 +26.59750754771429 1649855155 +6.447886827208512 1649860102 +0.0 1649865049 +0.0 1649869996 +65.23301794989243 1649911742.6 +56.58391443210074 1649916712.7 +51.502403962797864 1649921682.9 +47.26903759551573 1649926653 +42.58937096809752 1649931623.1 +36.30232897314063 1649936593.2 +26.06369896737528 1649941563.3 +5.621268676163549 1649946533.4 +0.0 1649951503.6 +0.0 1649956473.7 +64.18692674019019 1649998013 +56.04415622524007 1650003006.2 +51.116136445367296 1650007999.3 +46.929499051447465 1650012992.5 +42.253509495440014 1650017985.6 +35.91238438429931 1650022978.8 +25.535840013557948 1650027971.9 +4.80795429446178 1650032965.1 +0.0 1650037958.2 +0.0 1650042951.4 +63.12893627744462 1650084284.1 +55.506670573490304 1650089300.2 +50.72986892793672 1650094316.3 +46.59363757878995 1650099332.4 +41.917648022782515 1650104348.5 +35.52611686686873 1650109364.7 +25.00570850462971 1650114380.8 +4.000589539281683 1650119396.9 +0.0 1650124413 +0.0 1650129429.1 +62.05169241883419 1650170555.9 +54.95360859728645 1650175594.9 +50.337651783984484 1650180633.9 +46.26372573265412 1650185672.9 +41.58178655012501 1650190711.9 +35.139849349438165 1650195750.9 +24.48747624874481 1650200789.9 +3.2065285534447745 1650205828.9 +0.0 1650210867.9 +0.0 1650215906.9 +60.95887223576965 1650256828.6 +54.39459699456091 1650261890.4 +49.95138426655392 1650266952.2 +45.93381388651829 1650272014 +41.25187470398918 1650277075.8 +34.75725890341836 1650282137.6 +23.975193619381578 1650287199.3 +2.424366820651208 1650292261.1 +0.0 1650297322.9 +0.0 1650302384.7 +59.85047572825101 1650343102 +53.8296357653137 1650348186.5 +49.565116749123355 1650353271.1 +45.60162948527155 1650358355.6 +40.927912484375014 1650363440.1 +34.38289063903113 1650368524.6 +23.46291099001835 1650373609.1 +1.657781412311743 1650378693.6 +0.0 1650383778.1 +0.0 1650388862.6 +58.72877545138918 1650429376.4 +53.26099746465573 1650434483.5 +49.17884923169279 1650439590.6 +45.277667265657385 1650444697.7 +40.60167770964995 1650449804.9 +34.006249819533004 1650454912 +22.957982503476643 1650460019.1 +0.9008227019047084 1650465126.3 +0.0 1650470233.4 +0.0 1650475340.5 +57.58554922355158 1650515651.6 +52.68045991095443 1650520781.2 +48.79258171426223 1650525910.9 +44.951432490932326 1650531040.5 +40.281392561446545 1650536170.2 +33.63555862655654 1650541299.9 +22.455326572045838 1650546429.5 +0.1534906894301052 1650551559.2 +0.0 1650556688.8 +0.0 1650561818.5 +56.42674667125987 1650601927.7 +52.09624528584236 1650607079.8 +48.40263712542089 1650612231.9 +44.63114734272892 1650617384 +39.96705703976481 1650622536 +33.274494131512505 1650627688.1 +21.962297338547472 1650632840.2 +0.0 1650637992.3 +0.0 1650643144.3 +0.0 1650648296.4 +55.246418167992395 1650688204.9 +51.502403962797864 1650693379.3 +48.022319234512004 1650698553.7 +44.31086219452552 1650703728.1 +39.65272151808308 1650708902.4 +32.90975256505771 1650714076.8 +21.475217731570773 1650719251.2 +0.0 1650724425.6 +0.0 1650729600 +0.0 1650734774.4 +54.04910882397097 1650774483 +50.908562639753356 1650779679.6 +47.63605171708142 1650784876.2 +43.996526672843785 1650790072.8 +39.34206306781211 1650795269.4 +32.55236514142443 1650800466 +20.99181519600484 1650805662.6 +0.0 1650810859.2 +0.0 1650816055.8 +0.0 1650821252.3 +52.83395060038453 1650860762.3 +50.30282206366552 1650865980.9 +47.253461271061624 1650871199.6 +43.68219115116206 1650876418.3 +39.03140461754114 1650881636.9 +32.19725027290207 1650886855.6 +20.51436228696057 1650892074.3 +0.0 1650897293 +0.0 1650902511.6 +0.0 1650907730.3 +51.593589354411556 1650947042.6 +49.69340441616692 1650952283.2 +46.86719375363106 1650957523.8 +43.37153270089109 1650962764.5 +38.72669579379184 1650968005.1 +31.85176210231213 1650973245.7 +20.042859004437975 1650978486.3 +0.0 1650983727 +0.0 1650988967.6 +0.0 1650994208.2 +50.337651783984484 1651033324 +49.078037142146655 1651038586.5 +46.48687586272216 1651043848.9 +43.06087425062012 1651049111.4 +38.42793659656421 1651054373.8 +31.506273931722195 1651059636.3 +19.578709864736904 1651064898.7 +0.0 1651070161.2 +0.0 1651075423.6 +0.0 1651080686.1 +49.05878374628179 1651119606.7 +48.45304317019395 1651124890.8 +46.110235043224016 1651130174.9 +42.756165426870815 1651135459.1 +38.13285447074734 1651140743.2 +31.166735387653933 1651146027.3 +19.122782906668405 1651151311.5 +0.0 1651156595.6 +0.0 1651161879.8 +0.0 1651167163.9 +44.712706036410175 1651205890.5 +47.82804919824125 1651211196.2 +45.73359422372589 1651216501.9 +42.45145660312151 1651221807.5 +37.83777234493047 1651227113.2 +30.83087391499643 1651232418.9 +18.67053302001067 1651237724.6 +0.0 1651243030.3 +0.0 1651248335.9 +0.0 1651253641.6 +46.430520191427426 1651292175.6 +47.19710559976689 1651297502.7 +45.35327633281698 1651302829.8 +42.15269740589388 1651308156.8 +37.552316917046035 1651313483.9 +30.5009620688606 1651318811 +18.221960204763697 1651324138 +0.0 1651329465.1 +0.0 1651334792.2 +0.0 1651340119.2 +45.083397229386655 1651378462.1 +46.56248492988175 1651383810.4 +44.98258513984052 1651389158.7 +41.85761528007702 1651394507 +37.26318441775083 1651399855.2 +30.174727294135522 1651405203.5 +17.785286642560063 1651410551.8 +0.0 1651415900.1 +0.0 1651421248.4 +0.0 1651426596.7 +43.71702087148102 1651464749.8 +45.92191463347495 1651470119.2 +44.61189394686406 1651475488.6 +41.568482780781814 1651480857.9 +36.98367861638806 1651486227.3 +29.854442145932126 1651491596.6 +17.348613080356433 1651496966 +0.0 1651502335.4 +0.0 1651507704.7 +0.0 1651513074.1 +35.56689621370937 1651551039 +45.28134433706815 1651556429.3 +44.24120275388759 1651561819.5 +41.27707772637571 1651567209.8 +36.71012244154697 1651572600 +29.534156997728722 1651577990.3 +16.92751584260691 1651583380.5 +0.0 1651588770.8 +0.0 1651594161 +0.0 1651599551.3 +29.477801326433987 1651637329.6 +44.63709696925059 1651642740.6 +43.87418863232189 1651648151.5 +40.993894853602185 1651653562.5 +36.43429371159497 1651658973.5 +29.22349854745775 1651664384.4 +16.510095676268133 1651669795.4 +0.0 1651675206.3 +0.0 1651680617.3 +0.0 1651686028.3 +32.5271621190379 1651723621.7 +43.990577046322116 1651729053.2 +43.509447065867086 1651734484.7 +40.70843942571774 1651739916.2 +36.16668716327554 1651745347.6 +28.918789723708453 1651750779.1 +16.09862513645103 1651756210.6 +0.0 1651761642.1 +0.0 1651767073.5 +0.0 1651772505 +35.196205020732904 1651809915.4 +43.34038005198288 1651815367.2 +43.14838257082305 1651820819 +40.434883250876645 1651826270.8 +35.90275768636687 1651831722.6 +28.614080899959152 1651837174.3 +15.693104223155602 1651842626.1 +0.0 1651848077.9 +0.0 1651853529.7 +0.0 1651858981.5 +24.732152329788615 1651896210.6 +42.69018305764365 1651901682.5 +42.79326770230068 1651907154.4 +40.15905452092464 1651912626.3 +35.64250528086898 1651918098.2 +28.318998774142283 1651923570.1 +15.294937452681692 1651929042 +0.0 1651934513.9 +0.0 1651939985.8 +0.0 1651945457.7 +22.06538198320451 1651982507.4 +42.03998606330441 1651987999.2 +42.43588027866741 1651993491 +39.891447972605214 1651998982.8 +35.38820250189273 1652004474.6 +28.029866274847087 1652009966.4 +14.904992863840366 1652015458.2 +0.0 1652020950 +0.0 1652026441.8 +0.0 1652031933.6 +22.21660011752371 1652068806 +41.38978906896518 1652074317.4 +42.08671503666672 1652079828.9 +39.62156886917488 1652085340.4 +35.13389972291649 1652090851.8 +27.746683402073565 1652096363.3 +14.522402417820562 1652101874.8 +0.0 1652107386.2 +0.0 1652112897.7 +0.0 1652118409.2 +0.0 1652155106.2 +40.73959207462595 1652160637.1 +41.74122686607679 1652166168 +39.36131646367697 1652171698.9 +34.89149619698362 1652177229.8 +27.46717760071079 1652182760.7 +14.148034153433331 1652188291.6 +0.0 1652193822.5 +0.0 1652199353.4 +0.0 1652204884.3 +0.0 1652241408.2 +40.09307215169747 1652246958.3 +41.39573869548685 1652252508.4 +39.10333661328998 1652258058.5 +34.646820115939796 1652263608.6 +27.19134887075879 1652269158.7 +13.781020031867625 1652274708.8 +0.0 1652280258.8 +0.0 1652285808.9 +0.0 1652291359 +0.0 1652327712.1 +39.448824783879914 1652333281.1 +41.05392759630768 1652338850.1 +38.85498346083541 1652344419.1 +34.41177073282843 1652349988.2 +26.921469767328453 1652355557.2 +13.419955536823588 1652361126.2 +0.0 1652366695.2 +0.0 1652372264.2 +0.0 1652377833.3 +0.0 1652414017.8 +38.802304860951445 1652419605.5 +40.71806612365018 1652425193.2 +38.60435775326994 1652430780.9 +34.178993904827976 1652436368.5 +26.65754029041979 1652441956.2 +13.070790294822901 1652447543.9 +0.0 1652453131.6 +0.0 1652458719.3 +0.0 1652464307 +0.0 1652500325.4 +38.164007119655544 1652505931.5 +40.38815427751434 1652511537.6 +38.361954227337044 1652517143.7 +33.949894148238265 1652522749.7 +26.39956044003279 1652528355.8 +12.725302124232966 1652533961.9 +0.0 1652539568 +0.0 1652545174.1 +0.0 1652550780.1 +0.0 1652586635 +37.52711389465951 1652592259.2 +40.06419205790018 1652597883.4 +38.12322777281491 1652603507.6 +33.72674401817024 1652609131.8 +26.15120728757822 1652614756 +12.389440651575462 1652620380.1 +0.0 1652626004.3 +0.0 1652631628.5 +0.0 1652637252.7 +0.0 1652672946.7 +36.89844285129604 1652678588.7 +39.743906909696776 1652684230.6 +37.88817838970353 1652689872.6 +33.513220586034635 1652695514.6 +25.900581580012744 1652701156.6 +12.059528805439632 1652706798.6 +0.0 1652712440.6 +0.0 1652718082.6 +0.0 1652723724.6 +0.0 1652759260.4 +36.267499252821665 1652764919.9 +39.42729883290414 1652770579.4 +37.659078633113836 1652776238.8 +33.29969715389903 1652781898.3 +25.661855125490614 1652787557.8 +11.739243657236228 1652793217.3 +0.0 1652798876.8 +0.0 1652804536.3 +0.0 1652810195.8 +0.0 1652845576.2 +35.65213197880141 1652851252.9 +39.11891293774408 1652856929.5 +37.435928503045794 1652862606.2 +33.0921233482851 1652868282.9 +25.429078297490147 1652873959.6 +11.42858520696526 1652879636.3 +0.0 1652885312.9 +0.0 1652890989.6 +0.0 1652896666.3 +0.0 1652931894.2 +35.03676470478113 1652937587.7 +38.81420411399478 1652943281.2 +37.218727999499436 1652948974.8 +32.894176240603606 1652954668.3 +25.19997854090045 1652960361.8 +11.123876383215958 1652966055.4 +0.0 1652971748.9 +0.0 1652977442.5 +0.0 1652983136 +0.0 1653018214.4 +34.4332966838042 1653023924.4 +38.51912198817791 1653029634.5 +37.00520456736383 1653035344.5 +32.696229132922106 1653041054.6 +24.980505482243178 1653046764.6 +10.828794257399089 1653052474.7 +0.0 1653058184.7 +0.0 1653063894.8 +0.0 1653069604.8 +0.0 1653104536.9 +33.83945536075971 1653110263.1 +38.22403986236104 1653115989.3 +36.79535820663901 1653121715.5 +32.50195909665136 1653127441.7 +24.766982050107575 1653133167.9 +10.545611384625563 1653138894.1 +0.0 1653144620.3 +0.0 1653150346.5 +0.0 1653156072.7 +0.0 1653190861.7 +33.24929110912597 1653196603.7 +37.9385844344766 1653202345.7 +36.59373402754674 1653208087.7 +32.319588313423964 1653213829.7 +24.553458617971973 1653219571.7 +10.266105583262796 1653225313.7 +0.0 1653231055.7 +0.0 1653236797.7 +0.0 1653242539.7 +0.0 1653277188.8 +32.674703181946334 1653282946.3 +37.659078633113836 1653288703.7 +36.399463991276 1653294461.1 +32.14089460160732 1653300218.5 +24.355511510290476 1653305976 +9.996226479832458 1653311733.4 +0.0 1653317490.8 +0.0 1653323248.3 +0.0 1653329005.7 +0.0 1653363518.4 +32.109741952699125 1653369290.9 +37.3914720847944 1653375063.3 +36.20746651011617 1653380835.8 +31.9644734449016 1653386608.3 +24.157564402608976 1653392380.7 +9.735974074334552 1653398153.2 +0.0 1653403925.7 +0.0 1653409698.1 +0.0 1653415470.6 +0.0 1653449850.5 +31.55667997649526 1653455637.6 +37.12527005277483 1653461424.7 +36.022823171777866 1653467211.8 +31.795406431017394 1653472998.9 +23.96924399285991 1653478786 +9.481671295358318 1653484573.1 +0.0 1653490360.2 +0.0 1653496147.3 +0.0 1653501934.4 +0.0 1653536185 +31.01324469822383 1653541986.4 +36.867290202387835 1653547787.7 +35.84045238855046 1653553589 +31.632289043654858 1653559390.3 +23.78319613822175 1653565191.7 +9.239267769425425 1653570993 +0.0 1653576794.3 +0.0 1653582595.6 +0.0 1653588397 +0.0 1653622522.2 +30.485385744406496 1653628337.3 +36.6129874234116 1653634152.4 +35.667708303255495 1653639967.6 +31.475121282813994 1653645782.7 +23.610452052926785 1653651597.8 +9.004218386314053 1653657412.9 +0.0 1653663228.1 +0.0 1653669043.2 +0.0 1653674858.3 +7.56090671595974e-2 1653708861.9 +29.97083055993236 1653714690.4 +36.37426096888947 1653720518.9 +35.5009138444822 1653726347.4 +31.323903148494797 1653732175.9 +23.43543541252091 1653738004.4 +8.78106825624602 1653743832.9 +0.0 1653749661.4 +0.0 1653755489.9 +0.0 1653761318.4 +0.0 1653795204.3 +29.468174628501554 1653801045.7 +36.135534514367336 1653806887.1 +35.343746083641335 1653812728.5 +31.180039156997125 1653818570 +23.274590580269283 1653824411.4 +8.563867752699657 1653830252.8 +0.0 1653836094.2 +0.0 1653841935.7 +0.0 1653847777.1 +0.0 1653881549.3 +28.981095021524855 1653887403.2 +35.91238438429931 1653893257.1 +35.18430576768956 1653899111 +31.03844772061036 1653904964.9 +23.117422819428413 1653910818.8 +8.354021391974817 1653916672.7 +0.0 1653922526.6 +0.0 1653928380.5 +0.0 1653934234.4 +0.0 1653967897.2 +28.51326881041302 1653973763 +35.69291132564204 1653979628.9 +35.03676470478113 1653985494.8 +30.906482982156028 1653991360.7 +22.96988175651998 1653997226.6 +8.15607428429332 1654003092.5 +0.0 1654008958.4 +0.0 1654014824.3 +0.0 1654020690.2 +0.0 1654054247.7 +28.061018923755288 1654060125.1 +35.4853375200281 1654066002.6 +34.89517326839437 1654071880 +30.774518243701692 1654077757.4 +22.826017765022307 1654083634.8 +7.9677538745442495 1654089512.2 +0.0 1654095389.6 +0.0 1654101267 +0.0 1654107144.5 +0.0 1654140601.1 +27.624345361551654 1654146489.6 +35.28144078582493 1654152378 +34.75725890341836 1654158266.5 +30.658129829701462 1654164154.9 +22.69037595515721 1654170043.3 +7.785383091316851 1654175931.8 +0.0 1654181820.2 +0.0 1654187708.7 +0.0 1654193597.1 +0.0 1654226957.3 +27.206925195212893 1654232856.3 +35.089443304665096 1654238755.3 +34.6312437914857 1654244654.3 +30.54174141570123 1654250553.3 +22.55841121670288 1654256452.2 +7.618588632543555 1654262351.2 +0.0 1654268250.2 +0.0 1654274149.2 +0.0 1654280048.2 +0.0 1654313316.4 +26.805081353328212 1654319225.5 +34.91074959284848 1654325134.5 +34.505228679553035 1654331043.5 +30.42903007311176 1654336952.5 +22.436073176180976 1654342861.5 +7.455471245181019 1654348770.5 +0.0 1654354679.5 +0.0 1654360588.5 +0.0 1654366497.5 +0.0 1654399678.5 +26.424763462419325 1654405597 +34.732055881031826 1654411515.5 +34.392517336963564 1654417434 +30.32821798356563 1654423352.5 +22.319684762180746 1654429271 +7.301980555750914 1654435189.5 +0.0 1654441108 +0.0 1654447026.6 +0.0 1654452945.1 +0.0 1654486043.4 +26.057749340853615 1654491970.9 +34.57121104878021 1654497898.4 +34.2798059943741 1654503825.9 +30.231082965430257 1654509753.4 +22.212923046112945 1654515680.9 +7.160389119364151 1654521608.3 +0.0 1654527535.8 +0.0 1654533463.3 +0.0 1654539390.8 +0.0 1654572411.4 +25.718210796785346 1654578347.3 +34.4177203593501 1654584283.2 +34.178993904827976 1654590219.1 +30.139897573816558 1654596155.1 +22.10983840145591 1654602091 +7.028424380909817 1654608026.9 +0.0 1654613962.8 +0.0 1654619898.7 +0.0 1654625834.7 +0.0 1654658782.3 +25.397925648581946 1654664726.1 +34.27017929644167 1654670669.9 +34.08185888669261 1654676613.7 +30.052389253613626 1654682557.5 +22.018653009842208 1654688501.4 +6.900136713866244 1654694445.2 +0.0 1654700389 +0.0 1654706332.8 +0.0 1654712276.6 +0.0 1654745156.2 +25.099166451354318 1654751107.4 +34.13821455798734 1654757058.5 +33.99662312160057 1654763009.7 +29.97678018645403 1654768960.8 +21.933417244750178 1654774912 +6.789697926387682 1654780863.1 +0.0 1654786814.3 +0.0 1654792765.4 +0.0 1654798716.6 +0.0 1654831533.2 +24.81966064999155 1654837491.1 +34.01219944605467 1654843449 +33.909114801397635 1654849407 +29.901171119294432 1654855364.9 +21.85185855106891 1654861322.8 +6.682936210319882 1654867280.7 +0.0 1654873238.6 +0.0 1654879196.6 +0.0 1654885154.5 +0.0 1654917913.2 +24.565357871015316 1654923877.4 +33.89948810346521 1654929841.5 +33.83945536075971 1654935805.6 +29.838865821478024 1654941769.7 +21.779926555320074 1654947733.8 +6.585801192184514 1654953698 +0.0 1654959662.1 +0.0 1654965626.2 +0.0 1654971590.3 +0.0 1655004296.3 +24.330308487903945 1655010266.1 +33.79272638739741 1655016235.8 +33.76752336501087 1655022205.6 +29.778833078772525 1655028175.3 +21.713944186092906 1655034145 +6.500565427092485 1655040114.8 +0.0 1655046084.5 +0.0 1655052054.3 +0.0 1655058024 +0.0 1655090682.5 +24.116785055768343 1655096657.3 +33.70154099578371 1655102632.1 +33.70749062230538 1655108606.8 +29.722477407477793 1655114581.6 +21.65391144338741 1655120556.4 +6.42268380482198 1655126531.2 +0.0 1655132506 +0.0 1655138480.8 +0.0 1655144455.6 +0.0 1655177071.7 +23.928464646019275 1655183051 +33.619982302102436 1655189030.2 +33.6548120224214 1655195009.4 +29.675748434115487 1655200988.7 +21.601232843503436 1655206967.9 +6.356701435594813 1655212947.2 +0.0 1655218926.4 +0.0 1655224905.6 +0.0 1655230884.9 +0.0 1655263464.1 +23.76761981376765 1655269447.2 +33.548050306353595 1655275430.3 +33.61035560417 1655281413.3 +29.634969087274854 1655287396.4 +21.560453496662806 1655293379.5 +6.300345764300077 1655299362.6 +0.0 1655305345.7 +0.0 1655311328.8 +0.0 1655317311.9 +0.0 1655349859.5 +23.629705448791647 1655355845.8 +33.4880175636481 1655361832.2 +33.569576257329366 1655367818.5 +29.60608899347756 1655373804.9 +21.51967414982217 1655379791.3 +6.255889346048683 1655385777.6 +0.0 1655391764 +0.0 1655397750.3 +0.0 1655403736.7 +0.0 1655436257.9 +23.513317034791413 1655442247 +33.43761151887503 1655448236 +33.53842360842116 1655454225 +29.57493634456936 1655460214 +21.494471127435638 1655466203.1 +6.215109999208049 1655472192.1 +0.0 1655478181.1 +0.0 1655484170.1 +0.0 1655490159.1 +0.0 1655522659.5 +23.422131643177718 1655528650.6 +33.3968321720344 1655534641.7 +33.513220586034635 1655540632.7 +29.555682948704494 1655546623.8 +21.469268105049103 1655552614.9 +6.189906976821515 1655558606 +0.0 1655564597 +0.0 1655570588.1 +0.0 1655576579.2 +0.0 1655609064.1 +23.35019964742888 1655615056.6 +33.3656795231262 1655621049.2 +33.49396719016977 1655627041.7 +29.54010662425039 1655633034.2 +21.453691780595 1655639026.8 +6.1683810258457425 1655645019.3 +0.0 1655651011.8 +0.0 1655657004.3 +0.0 1655662996.9 +0.0 1655695471.8 +23.309420300588247 1655701465.1 +33.3501031986721 1655707458.5 +33.48206793712643 1655713451.9 +29.534156997728722 1655719445.3 +21.450014709184238 1655725438.6 +6.158754327913312 1655731432 +0.0 1655737425.4 +0.0 1655743418.8 +0.0 1655749412.1 +0.0 1655781882.5 +23.290166904723385 1655787876.1 +33.34047650073967 1655793869.7 +33.48206793712643 1655799863.3 +29.530479926317962 1655805856.9 +21.450014709184238 1655811850.5 +6.164703954434982 1655817844.1 +0.0 1655823837.7 +0.0 1655829831.3 +0.0 1655835824.9 +0.0 1655868296.2 +23.299793602655814 1655874289.4 +33.34642612726134 1655880282.6 +33.48206793712643 1655886275.9 +29.534156997728722 1655892269.1 +21.453691780595 1655898262.3 +6.174330652367414 1655904255.6 +0.0 1655910248.8 +0.0 1655916242 +0.0 1655922235.3 +0.0 1655954712.8 +23.33094625156402 1655960705.1 +33.36200245171544 1655966697.3 +33.49396719016977 1655972689.6 +29.549733322182824 1655978681.8 +21.469268105049103 1655984674.1 +6.195856603343185 1655990666.3 +0.0 1655996658.6 +0.0 1656002650.9 +0.0 1656008643.1 +0.0 1656041132.4 +23.385029367747844 1656047123.1 +33.38720547410197 1656053113.8 +33.513220586034635 1656059104.4 +29.565309646636923 1656065095.1 +21.490794056024875 1656071085.8 +6.22473669714048 1656077076.4 +0.0 1656083067.1 +0.0 1656089057.8 +0.0 1656095048.4 +0.0 1656127555 +23.466588061429114 1656133543.5 +33.427984820942605 1656139531.9 +33.53842360842116 1656145520.4 +29.590512669023457 1656151508.9 +21.51967414982217 1656157497.4 +6.261838972570353 1656163485.8 +0.0 1656169474.3 +0.0 1656175462.8 +0.0 1656181451.3 +0.0 1656213980.4 +23.569672706086152 1656219966.1 +33.472441239194 1656225951.8 +33.57325332874013 1656231937.5 +29.62166531793166 1656237923.1 +21.556776425252043 1656243908.8 +6.312245017343417 1656249894.5 +0.0 1656255880.2 +0.0 1656261865.9 +0.0 1656267851.6 +0.0 1656300408.7 +23.70163744454048 1656306391 +33.534746537010406 1656312373.3 +33.614032675580766 1656318355.5 +29.656495038250625 1656324337.8 +21.597555772092672 1656330320.1 +6.372277760048915 1656336302.4 +0.0 1656342284.7 +0.0 1656348267 +0.0 1656354249.3 +0.0 1656386839.7 +23.85285557885968 1656392818 +33.60072890623757 1656398796.4 +33.66076164894307 1656404774.7 +29.69727438509126 1656410753 +21.64796181686574 1656416731.3 +6.438260129276081 1656422709.6 +0.0 1656428687.9 +0.0 1656434666.2 +0.0 1656440644.5 +0.0 1656473273.5 +24.031549290676313 1656479247.3 +33.68001504480794 1656485221 +33.717117320237804 1656491194.8 +29.747680429864324 1656497168.5 +21.704317488160477 1656503142.2 +6.5198188229573475 1656509116 +0.0 1656515089.7 +0.0 1656521063.5 +0.0 1656527037.2 +0.0 1656559710.1 +24.229496398357814 1656565678.7 +33.773472991532536 1656571647.2 +33.7771500629433 1656577615.8 +29.80403610115906 1656583584.4 +21.770299857387645 1656589553 +6.607327143160285 1656595521.6 +0.0 1656601490.2 +0.0 1656607458.7 +0.0 1656613427.3 +0.0 1656646149.3 +24.452646528425845 1656652112.1 +33.874285081078675 1656658075 +33.84313243217047 1656664037.8 +29.870018470386228 1656670000.7 +21.839959298025573 1656675963.5 +6.702189606184745 1656681926.4 +0.0 1656687889.2 +0.0 1656693852.1 +0.0 1656699814.9 +0.0 1656732591.1 +24.697322609469644 1656738547.6 +33.98699642366814 1656744504.2 +33.91874149933007 1656750460.7 +29.936000839613392 1656756417.2 +21.91784092029608 1656762373.8 +6.808951322252545 1656768330.3 +0.0 1656774286.9 +0.0 1656780243.4 +0.0 1656786200 +0.0 1656819035.4 +24.967201712899985 1656824985.1 +34.107061909079135 1656830934.8 +34.000300193011334 1656836884.4 +30.01160990677299 1656842834.1 +22.00307668538811 1656848783.8 +6.921662664842016 1656854733.5 +0.0 1656860683.2 +0.0 1656866632.8 +0.0 1656872582.5 +0.0 1656905482.2 +25.256334212195185 1656911424.5 +34.23902664753347 1656917366.7 +34.09375813973595 1656923309 +30.093168600454256 1656929251.3 +22.094262077001808 1656935193.5 +7.047677776774679 1656941135.8 +0.0 1656947078 +0.0 1656953020.3 +0.0 1656958962.5 +0.0 1656991931.5 +25.570669733876915 1656997865.8 +34.38289063903113 1657003800.1 +34.1886206027604 1657009734.4 +30.180676920657195 1657015668.6 +22.197346721658846 1657021602.9 +7.179642515229013 1657027537.2 +0.0 1657033471.5 +0.0 1657039405.8 +0.0 1657045340.1 +0.0 1657078383.1 +25.900581580012744 1657084308.9 +34.53410877335033 1657090234.7 +34.29170524741744 1657096160.5 +30.27553938368166 1657102086.2 +22.304108437726644 1657108012 +7.3235065067266865 1657113937.8 +0.0 1657119863.6 +0.0 1657125789.3 +0.0 1657131715.1 +0.0 1657164837.1 +26.25201937712435 1657170753.8 +34.697226160712866 1657176670.5 +34.402144034896 1657182587.3 +30.372674401817026 1657188504 +22.414547225205208 1657194420.8 +7.4747246410458805 1657200337.5 +0.0 1657206254.2 +0.0 1657212171 +0.0 1657218087.7 +0.0 1657251293.2 +26.622710570100825 1657257200.4 +34.864020619486176 1657263107.6 +34.51853244889623 1657269014.8 +30.479436117884827 1657274922 +22.536885265727108 1657280829.1 +7.637842028408417 1657286736.3 +0.0 1657292643.5 +0.0 1657298550.7 +0.0 1657304457.9 +0.0 1657337751.6 +27.014927714053062 1657343648.7 +35.048663957824466 1657349545.8 +34.64087048941813 1657355442.9 +30.592147460474298 1657361340 +22.665172932770677 1657367237.1 +7.810586113703384 1657373134.3 +0.0 1657379031.4 +0.0 1657384928.5 +0.0 1657390825.6 +0.0 1657424212.1 +27.42639825387016 1657430098.6 +35.236984367573534 1657435985.1 +34.7691581564617 1657441871.7 +30.708535874474528 1657447758.2 +22.797137671225013 1657453644.8 +7.989279825520022 1657459531.3 +0.0 1657465417.8 +0.0 1657471304.4 +0.0 1657477190.9 +0.0 1657510674.6 +27.853445118141355 1657516550 +35.434931475255034 1657522425.5 +34.904799966326806 1657528301 +30.83087391499643 1657534176.5 +22.938729107611778 1657540051.9 +8.17760023526909 1657545927.4 +0.0 1657551802.9 +0.0 1657557678.4 +0.0 1657563553.9 +0.0 1657597139 +28.29974537827742 1657603003 +35.642505280868974 1657608866.9 +35.048663957824466 1657614730.8 +30.96283865345076 1657620594.8 +23.08627017052021 1657626458.7 +8.37554734295059 1657632322.7 +0.0 1657638186.6 +0.0 1657644050.5 +0.0 1657649914.5 +0.0 1657683605.4 +28.761621962867586 1657689457.3 +35.85602871300456 1657695309.3 +35.1962050207329 1657701161.2 +31.09848046331586 1657707013.1 +23.237488304839406 1657712865.1 +8.577171522042848 1657718717 +0.0 1657724568.9 +0.0 1657730420.9 +0.0 1657736272.8 +0.0 1657770073.6 +29.239074871911853 1657775913.1 +36.08512846959427 1657781752.5 +35.35337278157376 1657787592 +31.23639482829186 1657793431.5 +23.396928620791183 1657799270.9 +8.79664458070012 1657805110.4 +0.0 1657810949.9 +0.0 1657816789.3 +0.0 1657822628.8 +0.0 1657856543.6 +29.732104105410222 1657862370.1 +36.31422822618397 1657868196.7 +35.51054054241463 1657874023.2 +31.383935891200295 1657879849.8 +23.563723079564483 1657885676.3 +9.016117639357395 1657891502.9 +0.0 1657897329.5 +0.0 1657903156 +0.0 1657908982.6 +0.0 1657943015.2 +30.24070966336269 1657948828.4 +36.556631752116864 1657954641.6 +35.67733500118793 1657960454.9 +31.5374265806304 1657966268.1 +23.736467164859448 1657972081.3 +9.248894467357855 1657977894.5 +0.0 1657983707.7 +0.0 1657989520.9 +0.0 1657995334.1 +0.0 1658029488.5 +30.764891545769263 1658035287.9 +36.80130783316068 1658041087.4 +35.85602871300456 1658046886.8 +31.694594341471262 1658052686.3 +23.915160876676083 1658058485.7 +9.487620921879989 1658064285.2 +0.0 1658070084.6 +0.0 1658075884.1 +0.0 1658081683.5 +0.0 1658115963.3 +31.298700126108265 1658121748.6 +37.059287683547666 1658127533.9 +36.034722424821204 1658133319.1 +31.861388800244562 1658139104.4 +24.101208731314244 1658144889.7 +9.735974074334552 1658150674.9 +0.0 1658156460.2 +0.0 1658162245.5 +0.0 1658168030.7 +0.0 1658202439.6 +31.84581247579046 1658208210.3 +37.31954008904557 1658213981 +36.2170932080486 1658219751.7 +32.030455814128764 1658225522.4 +24.29547876758498 1658231293.1 +9.996226479832458 1658237063.8 +0.0 1658242834.5 +0.0 1658248605.1 +0.0 1658254375.8 +0.0 1658288917.4 +32.40482407851599 1658294673.1 +37.593096263886665 1658300428.8 +36.40541361779767 1658306184.5 +32.20319989942374 1658311940.3 +24.493425875266478 1658317696 +10.260155956741125 1658323451.7 +0.0 1658329207.4 +0.0 1658334963.1 +0.0 1658340718.9 +0.0 1658375396.4 +32.97573493428487 1658381136.8 +37.868924993838675 1658386877.2 +36.60336072547917 1658392617.6 +32.38557068265113 1658398358 +24.697322609469644 1658404098.3 +10.53371213158222 1658409838.7 +0.0 1658415579.1 +0.0 1658421319.5 +0.0 1658427059.9 +0.0 1658461876.8 +33.553999932875264 1658467601.5 +38.152107866612205 1658473326.1 +36.80130783316068 1658479050.8 +32.567941465878526 1658484775.5 +24.904896415083577 1658490500.2 +10.813217932944987 1658496224.8 +0.0 1658501949.5 +0.0 1658507674.2 +0.0 1658513398.9 +0.0 1658548358.4 +34.14784125591977 1658554067 +38.44351292101831 1658559775.6 +37.0088816387746 1658565484.2 +32.76221150214926 1658571192.8 +25.12436947374085 1658576901.4 +11.104622987351096 1658582610.1 +0.0 1658588318.7 +0.0 1658594027.3 +0.0 1658599735.9 +0.0 1658634841.1 +34.74763220548593 1658640533.3 +38.73632249172427 1658646225.5 +37.2224050709102 1658651917.7 +32.9542089833091 1658657610 +25.34751960380888 1658663302.2 +11.403382184578724 1658668994.4 +0.0 1658674686.6 +0.0 1658680378.8 +0.0 1658686071 +0.0 1658721324.9 +35.35337278157376 1658727000.4 +39.03735424406281 1658732675.9 +37.44187812956747 1658738351.4 +33.158105717512264 1658744026.8 +25.570669733876915 1658749702.3 +11.708091008328026 1658755377.8 +0.0 1658761053.3 +0.0 1658766728.8 +0.0 1658772404.3 +0.0 1658807809.8 +35.96874005559404 1658813468.2 +39.34801269433378 1658819126.6 +37.659078633113836 1658824785.1 +33.3656795231262 1658830443.5 +25.80939618839905 1658836101.9 +12.022426530009756 1658841760.3 +0.0 1658847418.8 +0.0 1658853077.2 +0.0 1658858735.6 +0.0 1658894295.6 +36.58778440102507 1658899936.7 +39.65639858949384 1658905577.7 +37.88817838970353 1658911218.8 +33.57325332874013 1658916859.9 +26.048122642921182 1658922500.9 +12.342711678213158 1658928142 +0.0 1658933783.1 +0.0 1658939424.2 +0.0 1658945065.2 +0.0 1658980782.3 +37.218727999499436 1658986405.7 +39.97668373769724 1658992029.1 +38.12322777281491 1658997652.6 +33.79272638739741 1659003276 +26.29279872396499 1659008899.4 +12.67262352434899 1659014522.8 +0.0 1659020146.2 +0.0 1659025769.6 +0.0 1659031393 +0.0 1659067269.9 +37.847399042862904 1659072875.4 +40.29696888590064 1659078480.8 +38.356004600815375 1659084086.3 +34.01219944605467 1659089691.8 +26.541151876419555 1659095297.3 +13.008484997006493 1659100902.7 +0.0 1659106508.2 +0.0 1659112113.7 +0.0 1659117719.1 +0.0 1659153758.3 +38.482019712748034 1659159345.5 +40.62688073203648 1659164932.8 +38.600680681859174 1659170520 +34.23902664753347 1659176107.3 +26.801404281917453 1659181694.5 +13.350296096185664 1659187281.8 +0.0 1659192869 +0.0 1659198456.3 +0.0 1659204043.5 +0.0 1659240247.4 +39.12259000915484 1659245816.2 +40.95679257817231 1659251385 +38.843084207792074 1659256953.7 +34.46812640412316 1659262522.5 +27.059384132304455 1659268091.3 +13.699461338186355 1659273660 +0.0 1659279228.8 +0.0 1659284797.5 +0.0 1659290366.3 +0.0 1659326737.3 +39.76910993208331 1659332287.3 +41.29860367735148 1659337837.3 +39.09370991535755 1659343387.3 +34.703175787234535 1659348937.4 +27.329263235734793 1659354487.4 +14.060525833230392 1659360037.4 +0.0 1659365587.4 +0.0 1659371137.4 +0.0 1659376687.5 +0.0 1659413227.7 +40.41335729990087 1659418758.8 +41.63814222141975 1659424289.8 +39.35168976574454 1659429820.8 +34.941902241756665 1659435351.9 +27.602819410575886 1659440882.9 +14.427539954796098 1659446413.9 +0.0 1659451945 +0.0 1659457476 +0.0 1659463007 +0.0 1659499718.8 +41.05987722282935 1659505230.6 +41.979953320598916 1659510742.4 +39.61194217124245 1659516254.3 +35.190255394211235 1659521766.1 +27.878648140527886 1659527277.9 +14.798231147772565 1659532789.7 +0.0 1659538301.5 +0.0 1659543813.3 +0.0 1659549325.1 +22.389344202818677 1659586210.5 +41.71007421716858 1659591702.8 +42.32911856259961 1659597195.2 +39.86992202162945 1659602687.5 +35.434931475255034 1659608179.9 +28.161831013301416 1659613672.2 +15.17854903868146 1659619164.6 +0.0 1659624657 +0.0 1659630149.3 +0.0 1659635641.7 +24.91084604160525 1659672702.6 +42.354321584986145 1659678175.3 +42.68055635971122 1659683648 +40.139801125059776 1659689120.7 +35.689234254231266 1659694593.4 +28.450963512596616 1659700066 +15.56481655611203 1659705538.7 +0.0 1659711011.4 +0.0 1659716484.1 +0.0 1659721956.8 +31.308326824040698 1659759195.2 +43.00679113443629 1659764648 +43.03567122823358 1659770100.8 +40.40968022849011 1659775553.6 +35.94721410461827 1659781006.5 +28.74236856700272 1659786459.3 +15.960710771475027 1659791912.1 +0.0 1659797364.9 +0.0 1659802817.7 +0.0 1659808270.5 +35.85007908648291 1659845688.2 +43.651038502253854 1659851121 +43.39305865186686 1659856553.7 +40.68323640333121 1659861986.4 +36.20746651011617 1659867419.2 +29.041127764230357 1659872851.9 +16.362554613359706 1659878284.7 +0.0 1659883717.4 +0.0 1659889150.1 +0.0 1659894582.9 +33.13290269512573 1659932181.7 +44.29755842518233 1659937594.1 +43.75780021832166 1659943006.6 +40.96274220469398 1659948419.1 +36.4750730584356 1659953831.5 +29.345836587979655 1659959244 +16.770348081766045 1659964656.5 +0.0 1659970068.9 +0.0 1659975481.4 +0.0 1659980893.9 +34.53043170193957 1660018675.4 +44.9418057929999 1660024067.4 +44.118864713365696 1660029459.5 +41.24819763257842 1660034851.5 +36.74495216186594 1660040243.5 +29.650545411728956 1660045635.5 +17.181818621583137 1660051027.5 +0.0 1660056419.6 +0.0 1660061811.6 +0.0 1660067203.6 +36.44987003604907 1660105169.5 +45.58237608940669 1660110540.9 +44.483606279820485 1660115912.3 +41.53138050535195 1660121283.7 +37.01850833670703 1660126655.1 +29.967153488521596 1660132026.5 +17.602915859332665 1660137397.9 +0.0 1660142769.3 +0.0 1660148140.7 +0.0 1660153512.1 +44.20410047845772 1660191663.9 +46.21699675929182 1660197014.5 +44.850620401386195 1660202365.1 +41.82278555975806 1660207715.7 +37.29433706665903 1660213066.3 +30.28148901020333 1660218416.9 +18.02996272360387 1660223767.5 +0.0 1660229118.1 +0.0 1660234468.7 +0.0 1660239819.3 +43.270720611344956 1660278158.5 +46.851617429176954 1660283488.2 +45.221311594362646 1660288817.8 +42.111918059053245 1660294147.5 +37.57751993943257 1660299477.1 +30.607723784928396 1660304806.8 +18.46068665928583 1660310136.4 +0.0 1660315466.1 +0.0 1660320795.7 +0.0 1660326125.3 +46.88871970460682 1660364653.4 +47.48256102765132 1660369961.9 +45.59795241386079 1660375270.5 +42.407000184870114 1660380579 +37.862975367317006 1660385887.5 +30.93168600454256 1660391196.1 +18.903309848011137 1660396504.6 +0.0 1660401813.2 +0.0 1660407121.7 +0.0 1660412430.2 +47.532967072424384 1660451148.4 +48.10755499960402 1660456435.7 +45.97232067824802 1660461723 +42.70575938209775 1660467010.3 +38.14843079520144 1660472297.6 +31.261597850678392 1660477584.9 +19.34593303673644 1660482872.2 +0.0 1660488159.5 +0.0 1660493446.8 +0.0 1660498734 +49.485830610552995 1660537643.7 +48.73254897155672 1660542909.6 +46.34528442633539 1660548175.5 +43.00679113443629 1660553441.4 +38.44351292101831 1660558707.3 +31.597459323335894 1660563973.2 +19.798182923394172 1660569239.1 +0.0 1660574505 +0.0 1660579770.9 +0.0 1660585036.8 +50.74912232380159 1660624139.1 +49.34791624557699 1660629383.4 +46.72560231724429 1660634627.8 +43.311499958185586 1660639872.2 +38.73632249172427 1660645116.6 +31.93699786740416 1660650360.9 +20.256382436573578 1660655605.3 +0.0 1660660849.7 +0.0 1660666094.1 +0.0 1660671338.4 +51.99543319629623 1660710634.6 +49.9573338930756 1660715857.3 +47.10224313674242 1660721080 +43.61988585334565 1660726302.7 +39.03735424406281 1660731525.5 +32.27880896658333 1660736748.2 +20.721936092574502 1660741970.9 +0.0 1660747193.6 +0.0 1660752416.4 +0.0 1660757639.1 +53.220218117815094 1660797130.2 +50.563074469163425 1660802331.1 +47.48256102765132 1660807532.1 +43.93054430361663 1660812733.1 +39.34206306781211 1660817934 +32.62429713717327 1660823135 +21.18976230368634 1660828335.9 +0.0 1660833536.9 +0.0 1660838737.8 +0.0 1660843938.8 +54.419800016947434 1660883625.9 +51.16059286361869 1660888805 +47.86287891856021 1660893984 +44.24120275388759 1660899163.1 +39.646771891561414 1660904342.2 +32.97941200569563 1660909521.3 +21.66353814131984 1660914700.3 +0.0 1660919879.4 +0.0 1660925058.5 +0.0 1660930237.5 +56.989435345396174 1660970121.7 +51.75075711525242 1660975278.8 +48.24546936458002 1660980435.8 +44.555538275569326 1660985592.9 +39.95743034183238 1660990750 +33.334526874218 1660995907.1 +22.14694067688578 1661001064.2 +0.0 1661006221.2 +0.0 1661011378.3 +0.0 1661016535.4 +56.76628521532813 1661056617.5 +52.340921366886164 1661061752.5 +48.625787255488916 1661066887.5 +44.87582342377273 1661072022.5 +40.26581623699244 1661077157.5 +33.69191429785127 1661082292.4 +22.628070657340803 1661087427.4 +0.549384904793104 1661092562.4 +0.0 1661097697.4 +0.0 1661102832.4 +57.90951144316574 1661143113.4 +52.91918636547656 1661148226.2 +49.012054772919484 1661153339 +45.19610857197612 1661158451.8 +40.58242431378508 1661163564.6 +34.056655864306066 1661168677.4 +23.121099890839176 1661173790.1 +1.281140592813606 1661178902.9 +0.0 1661184015.7 +0.0 1661189128.5 +59.03716134654924 1661229609.3 +53.490097221245435 1661234699.8 +49.39237266382838 1661239790.3 +45.516393720179515 1661244880.8 +40.90270946198848 1661249971.3 +34.42366998587177 1661255061.8 +23.61412912433754 1661260152.3 +2.028472605288209 1661265242.8 +0.0 1661270333.4 +0.0 1661275423.9 +60.15150748058955 1661316105.3 +54.05278589538173 1661321173.4 +49.77864018125895 1661326241.5 +45.84035593979368 1661331309.7 +41.22299461019188 1661336377.8 +34.794361178848234 1661341445.9 +24.116785055768343 1661346514 +2.7854313156952433 1661351582.2 +0.0 1661356650.3 +0.0 1661361718.4 +61.24432766365408 1661402601.2 +54.611797498107265 1661407646.9 +50.161230627278755 1661412692.6 +46.166590714518755 1661417738.2 +41.54695682980604 1661422783.9 +35.1650523718247 1661427829.6 +24.61944098719914 1661432875.2 +3.548339652623948 1661437920.9 +0.0 1661442966.6 +0.0 1661448012.2 +62.32157152226453 1661489097.2 +55.16485947431113 1661494120.3 +50.54749814470932 1661499143.4 +46.496502560654584 1661504166.6 +41.873191604531115 1661509189.7 +35.5453702627336 1661514212.8 +25.128046545151612 1661519236 +4.324551758895843 1661524259.1 +0.0 1661529282.2 +0.0 1661534305.4 +63.383239056420855 1661575593.1 +55.704617681171804 1661580593.7 +50.92781603561822 1661585594.2 +46.82641440679043 1661590594.7 +42.20310345066695 1661595595.2 +35.9279607087534 1661600595.7 +25.646278801036512 1661605596.2 +5.116340189621839 1661610596.8 +0.0 1661615597.3 +0.0 1661620597.8 +64.42565319471232 1661662089.1 +56.24437588803248 1661667066.9 +51.31408355304879 1661672044.7 +47.156326252926256 1661677022.6 +42.53896492332445 1661682000.4 +36.3082785996623 1661686978.2 +26.164511056921413 1661691956.1 +5.916350801980418 1661696933.9 +0.0 1661701911.7 +0.0 1661706889.6 +65.45616807996046 1661748585 +56.77223484184981 1661753540.1 +51.700351070479364 1661758495.2 +47.48851065417299 1661763450.3 +42.87255384087105 1661768405.3 +36.69454611709287 1661773360.4 +26.68869293932799 1661778315.5 +6.723715557160516 1661783270.6 +0.0 1661788225.7 +0.0 1661793180.7 +66.46147994282207 1661835080.9 +57.294144169145476 1661840013.2 +52.080668961388255 1661844945.5 +47.82209957171958 1661849877.7 +43.20841531352855 1661854810 +37.08676326104511 1661859742.3 +27.216551893145322 1661864674.5 +7.540707010273048 1661869606.8 +0.0 1661874539.1 +0.0 1661879471.3 +67.44386133840803 1661921576.8 +57.80869935361961 1661926486.2 +52.46325940740807 1661931395.6 +48.16391067089875 1661936305 +43.55022641270772 1661941214.4 +37.47670784988644 1661946123.8 +27.746683402073565 1661951033.2 +8.369597716428919 1661955942.6 +0.0 1661960852 +0.0 1661965761.4 +68.39876715649658 1662008072.7 +58.31730491157208 1662012959.2 +52.843577298316966 1662017845.6 +48.49977214355625 1662022732.1 +43.88976495677599 1662027618.6 +37.87260206524944 1662032505 +28.28416905382332 1662037391.5 +9.208115120517219 1662042277.9 +0.0 1662047164.4 +0.0 1662052050.9 +69.31289362774447 1662094568.6 +58.81401121648121 1662099432.1 +53.22984481574753 1662104295.5 +48.83931068762453 1662109159 +44.23525312736592 1662114022.5 +38.2744459071341 1662118886 +28.81797763416232 1662123749.4 +10.056259222537953 1662128612.9 +0.0 1662133476.4 +0.0 1662138339.9 +70.18624075215173 1662181064.5 +59.307040449979574 1662185904.9 +53.60648563524566 1662190745.3 +49.17884923169279 1662195585.8 +44.58074129795585 1662200426.2 +38.67628974901878 1662205266.6 +29.361412912433757 1662210107.1 +10.910352951080357 1662214947.5 +0.0 1662219788 +0.0 1662224628.4 +71.02108108482926 1662267560.3 +59.79044298554552 1662272377.7 +53.98680352615456 1662277195 +49.520660330871955 1662282012.4 +44.92622946854579 1662286829.7 +39.07813359090345 1662291647.1 +29.91079781722686 1662296464.4 +11.77407337755519 1662301281.8 +0.0 1662306099.1 +0.0 1662310916.5 +71.8091924441445 1662354056.1 +60.267895894589785 1662358850.4 +54.367121417063466 1662363644.6 +49.860198874940224 1662368438.8 +45.277667265657385 1662373233 +39.483654504198874 1662378027.3 +30.460182722019965 1662382821.5 +12.643743430551698 1662387615.7 +0.0 1662392409.9 +0.0 1662397204.2 +72.55057483009745 1662440551.9 +60.739399177112375 1662445323 +54.743762236561594 1662450094.1 +50.205687045530155 1662454865.1 +45.62683250765809 1662459636.2 +39.895125044015984 1662464407.2 +31.00729507170216 1662469178.3 +13.52304018148063 1662473949.4 +0.0 1662478720.4 +0.0 1662483491.5 +73.25117786920973 1662527047.8 +61.203548316813446 1662531795.6 +55.120403056059736 1662536543.5 +50.551175216120086 1662541291.3 +45.984219931291356 1662546039.2 +40.30291851242231 1662550787 +31.566306674427693 1662555534.9 +14.411963630342001 1662560282.7 +0.0 1662565030.6 +0.0 1662569778.4 +73.9110015614814 1662613543.6 +61.65579820347118 1662618268.2 +55.49704387555787 1662622992.8 +50.89666338671002 1662627717.4 +46.33933479981372 1662632442 +40.71806612365018 1662637166.6 +32.12164120574246 1662641891.2 +15.300887079203363 1662646615.8 +0.0 1662651340.5 +0.0 1662656065.1 +74.52636883550169 1662700039.4 +62.10804809012891 1662704740.7 +55.8714121399451 1662709442.1 +51.242151557299955 1662714143.4 +46.694449668336084 1662718844.7 +41.13548628998895 1662723546.1 +32.68432987987877 1662728247.4 +16.20538685251883 1662732948.7 +0.0 1662737650.1 +0.0 1662742351.4 +75.10690638920298 1662786535.3 +62.54839872374332 1662791213.3 +56.24437588803248 1662795891.3 +51.587639727889886 1662800569.3 +47.05551416338012 1662805247.4 +41.55290645632771 1662809925.4 +33.2433414826043 1662814603.4 +17.1098866258343 1662819281.4 +0.0 1662823959.4 +0.0 1662828637.5 +75.65034166747442 1662873031.1 +62.98139521453619 1662877685.8 +56.6187441524197 1662882340.5 +51.9390775250015 1662886995.2 +47.416578658424164 1662891649.9 +41.96805406755558 1662896304.5 +33.80830271185151 1662900959.2 +18.020336025671437 1662905613.9 +0.0 1662910268.6 +0.0 1662914923.3 +76.16262429683765 1662959527 +63.40844207880739 1662964158.4 +56.98575827398541 1662968789.7 +52.28456569559143 1662973421 +47.77764315346818 1662978052.3 +42.39142386041601 1662982683.6 +34.37694101250946 1662987314.9 +18.934462496919338 1662991946.3 +0.0 1662996577.6 +0.0 1663001208.9 +76.64007720588191 1663046023 +63.82953931655692 1663050630.9 +57.35644946696188 1663055238.8 +52.63600349270303 1663059846.8 +48.13870764851222 1663064454.7 +42.81252109816555 1663069062.6 +34.94557931316743 1663073670.5 +19.84858896816724 1663078278.5 +0.0 1663082886.4 +0.0 1663087494.3 +77.09232709253965 1663132519 +64.24695948289569 1663137103.5 +57.72119103341667 1663141688 +52.98149166329297 1663146272.5 +48.50344921496701 1663150857 +43.23956796243675 1663155441.5 +35.5164901689363 1663160026 +20.774614692458478 1663164610.6 +0.0 1663169195.1 +0.0 1663173779.6 +77.51937395681085 1663219015 +64.65248039619112 1663223576.1 +58.08820515498238 1663228137.2 +53.33065690529366 1663232698.2 +48.87046333653273 1663237259.3 +43.666614826707956 1663241820.4 +36.08880554100503 1663246381.5 +21.698367861638808 1663250942.6 +0.0 1663255503.6 +0.0 1663260064.7 +77.92121779869552 1663305511.1 +65.0543242380758 1663310048.7 +58.45294672143717 1663314586.4 +53.682094702405266 1663319124 +49.23520490298752 1663323661.6 +44.09366169097916 1663328199.3 +36.663393468184665 1663332736.9 +22.628070657340803 1663337274.5 +0.0 1663341812.1 +0.0 1663346349.8 +78.30153568960442 1663392007.3 +65.4502184534388 1663396521.5 +58.81401121648121 1663401035.6 +54.033532499516866 1663405549.8 +49.60221902455322 1663410063.9 +44.52070855525036 1663414578.1 +37.2379813953643 1663419092.3 +23.557773453042813 1663423606.4 +0.0 1663428120.6 +0.0 1663432634.7 +78.66260018464845 1663478503.6 +65.84243559739103 1663482994.3 +59.175075711525245 1663487484.9 +54.38269774151757 1663491975.6 +49.972910217529694 1663496466.3 +44.951432490932326 1663500957 +37.812569322543936 1663505447.6 +24.493425875266478 1663509938.3 +0.0 1663514429 +0.0 1663518919.6 +79.00441128382761 1663565000 +66.22275348829994 1663569467.1 +59.536140206569286 1663573934.3 +54.7281859121075 1663578401.5 +50.337651783984484 1663582868.7 +45.38442898172518 1663587335.8 +38.390834321134335 1663591803 +25.423128670968477 1663596270.2 +0.0 1663600737.4 +0.0 1663605204.5 +79.3283735034418 1663651496.4 +66.59939430779805 1663655940.1 +59.89125507509165 1663660383.8 +55.0796237092191 1663664827.4 +50.70834297696096 1663669271.1 +45.815152917407154 1663673714.8 +38.97137187483564 1663678158.4 +26.358781093192157 1663682602.1 +0.0 1663687045.8 +0.0 1663691489.4 +79.63308232719108 1663737993 +66.97603512729619 1663742413.2 +60.24864249872492 1663746833.3 +55.4310615063307 1663751253.5 +51.08130672504833 1663755673.6 +46.24814940820002 1663760093.8 +39.54595980201528 1663764513.9 +27.29443351541583 1663768934.1 +0.0 1663773354.2 +0.0 1663777774.4 +79.92816445300797 1663824489.8 +67.340776693751 1663828886.4 +60.597807740725614 1663833283 +55.78022674833141 1663837679.6 +51.451997918024794 1663842076.3 +46.67887334388198 1663846472.9 +40.124224800605674 1663850869.5 +28.227813382528584 1663855266.1 +0.0 1663859662.8 +0.0 1663864059.4 +80.20767025437073 1663910986.7 +67.69816411738427 1663915359.7 +60.95292260924798 1663919732.8 +56.12571491892134 1663924105.9 +51.82268911100127 1663928479 +47.117819461196525 1663932852.1 +40.70476235430698 1663937225.2 +29.157516178230587 1663941598.3 +0.3670141215657061 1663945971.4 +0.0 1663950344.5 +80.4715997312794 1663997483.7 +68.05327898590663 1664001833.2 +61.29841077983791 1664006182.8 +56.47715271603294 1664010532.4 +52.19338030397773 1664014881.9 +47.548543396878486 1664019231.5 +41.283027352897385 1664023581 +30.08721897393259 1664027930.6 +2.377637847288903 1664032280.1 +0.0 1664036629.7 +80.73185213677729 1664083980.9 +68.40244422790734 1664088306.9 +61.64984857694951 1664092632.9 +56.82264088662288 1664096958.9 +52.5640714969542 1664101285 +47.98521695908213 1664105611 +41.85761528007702 1664109937 +31.0191943247455 1664114263 +4.400160826055441 1664118589 +0.0 1664122915 +80.97425566271019 1664170478.3 +68.7442553270865 1664174780.7 +61.9916596761287 1664179083.2 +57.17407868373448 1664183385.7 +52.940712316452334 1664187688.2 +48.421890521285746 1664191990.7 +42.43588027866741 1664196293.1 +31.942947493925832 1664200595.6 +6.42268380482198 1664204898.1 +0.0 1664209200.6 +81.20930504582157 1664256975.8 +69.08379387115477 1664261254.8 +62.33714784671863 1664265533.7 +57.51956685432441 1664269812.6 +53.3114035094288 1664274091.6 +48.854887012078635 1664278370.5 +43.01046820584705 1664282649.5 +32.8630235916954 1664286928.4 +8.435580085656085 1664291207.4 +0.0 1664295486.3 +81.43245517588959 1664343473.6 +69.4137057172906 1664347729 +62.67668639078689 1664351984.4 +57.86873209632511 1664356239.8 +53.682094702405266 1664360495.2 +49.29156057428226 1664364750.6 +43.58505613302668 1664369006 +33.783099689464976 1664373261.4 +10.432900042036092 1664377516.8 +0.0 1664381772.3 +81.64597860802519 1664429971.5 +69.74589011853733 1664434203.4 +63.0125478634444 1664438435.3 +58.21422026691504 1664442667.2 +54.0587355219034 1664446899.1 +49.72823413648588 1664451130.9 +44.159644060206325 1664455362.8 +34.691276534191196 1664459594.7 +12.408694047440324 1664463826.6 +0.0 1664468058.5 +81.85355241363914 1664516469.7 +70.06617526674074 1664520678.1 +63.348409336101895 1664524886.4 +58.55970843750497 1664529094.8 +54.42942671487987 1664533303.2 +50.16490769868952 1664537511.5 +44.73423198738596 1664541719.9 +35.60172593402833 1664545928.2 +14.355607959047262 1664550136.6 +0.0 1664554345 +82.05377207643153 1664602968.1 +70.38051078842247 1664607153 +63.68199825364849 1664611337.8 +58.90151953668415 1664615522.7 +54.80011790785633 1664619707.5 +50.59790418948239 1664623892.4 +45.30881991456559 1664628077.2 +36.5062257073438 1664632262.1 +16.27731884826767 1664636446.9 +0.0 1664640631.8 +82.24576955759137 1664689466.8 +70.69484631010421 1664693628.1 +64.01191009978432 1664697789.5 +59.24700770727408 1664701950.8 +55.17675872735447 1664706112.2 +51.03457775168603 1664710273.5 +45.87745821522355 1664714434.9 +37.401098782726834 1664718596.2 +18.16787708857987 1664722757.6 +0.0 1664726919 +82.43408996734044 1664775965.6 +71.00550476037517 1664780103.5 +64.34409450103105 1664784241.4 +59.58654625134234 1664788379.3 +55.54744992033093 1664792517.1 +51.47125131388965 1664796655 +46.44609651588152 1664800792.9 +38.29597185810987 1664804930.7 +20.027282679983873 1664809068.6 +0.0 1664813206.5 +82.61051112404617 1664862464.8 +71.3042639576028 1664866579.2 +64.66805672064523 1664870693.6 +59.92835735052152 1664874808 +55.9181411133074 1664878922.4 +51.90424780468253 1664883036.8 +47.01105774512873 1664887151.2 +39.17526860903882 1664891265.6 +21.845908924547242 1664895380 +0.0 1664899494.4 +82.78552776445203 1664948964.2 +71.60529570994134 1664953055.2 +64.99429149537029 1664957146.1 +60.267895894589785 1664961237.1 +56.28883230628387 1664965328 +52.334971740364495 1664969419 +47.57374641926502 1664973509.9 +40.05229280485684 1664977600.9 +23.635655075313313 1664981691.8 +0.0 1664985782.8 +82.95232222322534 1665035463.9 +71.90037783575819 1665039531.4 +65.31457664357369 1665043598.9 +60.607434438658046 1665047666.5 +56.65952349926033 1665051734 +52.76796823115736 1665055801.5 +48.13870764851222 1665059869 +40.921962857853345 1665063936.5 +25.388298950649514 1665068004.1 +0.0 1665072071.6 +83.11543961058786 1665121963.8 +72.1895103350534 1665126008 +65.6348617917771 1665130052.1 +60.94329591131554 1665134096.2 +57.02653762082605 1665138140.3 +53.19869216683933 1665142184.4 +48.697719251237764 1665146228.5 +41.78200621291742 1665150272.7 +27.10611310566676 1665154316.8 +0.0 1665158360.9 +83.27260737142873 1665208464.1 +72.46901613641617 1665212484.8 +65.94919731345884 1665216505.6 +61.27915738397304 1665220526.3 +57.39722881380251 1665224547 +53.631688657632196 1665228567.8 +49.25078122744162 1665232588.5 +42.63382738634892 1665236609.3 +28.79277461177579 1665240630 +0.0 1665244650.7 +83.42382550574793 1665294964.6 +72.74852193777893 1665298962 +66.26353283514057 1665302959.4 +61.61501885663054 1665306956.8 +57.76197038025731 1665310954.2 +54.0587355219034 1665314951.6 +49.803843203645485 1665318948.9 +43.47829441695888 1665322946.3 +30.44460639756586 1665326943.7 +0.0 1665330941.1 +83.57136656865637 1665381465.5 +73.0280277391417 1665385439.5 +66.57419128541154 1665389413.6 +61.95088032928805 1665393387.7 +58.12898450182301 1665397361.7 +54.485782386174606 1665401335.8 +50.353228108438586 1665405309.9 +44.316811821047196 1665409283.9 +32.05933590792606 1665413258 +0.0 1665417232.1 +83.71523056015404 1665467966.6 +73.29790684257205 1665471917.4 +66.8848497356825 1665475868.2 +62.28079217542389 1665479818.9 +58.49372606827781 1665483769.7 +54.91282925044581 1665487720.5 +50.90261301323169 1665491671.3 +45.13975290068138 1665495622.1 +33.64518532448897 1665499572.9 +0.0 1665503523.6 +83.85087237001913 1665554468 +73.56551339089148 1665558395.6 +67.18955855943179 1665562323.1 +62.61070402155973 1665566250.6 +58.85479056332184 1665570178.2 +55.33987611471701 1665574105.7 +51.446048291503125 1665578033.2 +45.95306728238315 1665581960.8 +35.1962050207329 1665585888.3 +0.0 1665589815.9 +83.98283710847348 1665640969.8 +73.82576579638938 1665644874.1 +67.4942673831811 1665648778.4 +62.940615867695556 1665652682.8 +59.22180468488755 1665656587.1 +55.76097335246654 1665660491.4 +51.9858064983638 1665664395.8 +46.760432037563255 1665668300.1 +36.713799512957735 1665672204.4 +0.0 1665676108.8 +84.1148018469278 1665727471.8 +74.08374564677638 1665731353 +67.79302658040872 1665735234.1 +63.26685064242062 1665739115.3 +59.582869179931585 1665742996.5 +56.18207059021607 1665746877.7 +52.52329215011356 1665750758.8 +47.554493023400155 1665754640 +38.198836839974504 1665758521.2 +0.0 1665762402.4 +84.24308951397137 1665813974.1 +74.33804842575262 1665817832.2 +68.09405833274727 1665821690.3 +63.59081286203478 1665825548.3 +59.94166111986472 1665829406.4 +56.599490756554836 1665833264.4 +53.0511511039309 1665837122.5 +48.33665475619372 1665840980.6 +39.65272151808308 1665844838.6 +0.0 1665848696.7 +84.36542755449328 1665900476.8 +74.59235120472884 1665904311.8 +68.38319083204247 1665908146.8 +63.911098010238184 1665911981.8 +60.29904854349799 1665915816.8 +57.01463836778271 1665919651.8 +53.581282612859134 1665923486.8 +49.11286686246562 1665927321.8 +41.07545354728345 1665931156.8 +0.0 1665934991.8 +84.48776559501518 1665986979.8 +74.83702728577265 1665990791.8 +68.67827295785933 1665994603.7 +64.23138315844157 1665998415.7 +60.654163412020345 1666002227.7 +57.432058534121474 1666006039.7 +54.1031919401548 1666009851.7 +49.87209812798356 1666013663.7 +42.46108330105395 1666017475.7 +0.0 1666021287.7 +84.6041540090154 1666073483 +75.08170336681646 1666077272.1 +68.96740545715451 1666081061.1 +64.551668306645 1666084850.2 +61.005601209131946 1666088639.2 +57.84352907393857 1666092428.3 +54.627373822561374 1666096217.3 +50.62310721186893 1666100006.4 +43.81783296102716 1666103795.4 +0.0 1666107584.5 +84.72054242301563 1666159986.6 +75.32042982133859 1666163752.7 +69.25286088503896 1666167518.9 +64.86600382832673 1666171285.1 +61.36071607765431 1666175051.2 +58.25132254234491 1666178817.4 +55.139656451924594 1666182583.6 +51.36448959782185 1666186349.8 +45.13975290068138 1666190115.9 +0.0 1666193882.1 +84.82730413908344 1666246490.4 +75.55320664933905 1666250233.8 +69.5360437578125 1666253977.1 +65.18261190511936 1666257720.5 +61.71215387476592 1666261463.8 +58.66279308216201 1666265207.2 +55.64826200987707 1666268950.6 +52.092568214431594 1666272693.9 +46.43052019142742 1666276437.3 +0.0 1666280180.7 +84.9400154816729 1666332994.5 +75.78598347733951 1666336715.1 +69.81554955917527 1666340435.8 +65.49099780027943 1666344156.4 +62.05764204535586 1666347877 +59.06463692404668 1666351597.6 +56.15686756782954 1666355318.3 +52.808747577998 1666359038.9 +47.68645776185449 1666362759.5 +0.0 1666366480.1 +85.04082757121904 1666419498.9 +76.01140616251845 1666423196.9 +70.09137828912726 1666426894.8 +65.8016562505504 1666430592.8 +62.403130215945794 1666434290.8 +59.464208210820445 1666437988.7 +56.655846427849575 1666441686.7 +53.50935061711029 1666445384.7 +48.9052930568517 1666449082.6 +1.3374962641083417 1666452780.6 +85.14758928728683 1666506003.6 +76.23455629258649 1666509678.9 +70.36493446396837 1666513354.3 +66.10636507429969 1666517029.7 +62.742668760014055 1666520705.1 +59.86237498129435 1666524380.5 +57.148875661347944 1666528055.9 +54.20627658481184 1666531731.3 +50.09524825805159 1666535406.7 +0.0 1666539082.1 +85.24472430542221 1666592508.5 +76.45770642265451 1666596161.4 +70.63481356739871 1666599814.3 +66.41107389804901 1666603467.2 +63.088156930604 1666607120.1 +60.25826919665735 1666610773 +57.63963233973541 1666614425.9 +54.881676601537606 1666618078.8 +51.248101183821625 1666621731.7 +0.0 1666625384.6 +85.34553639496833 1666679013.6 +76.67122985479011 1666682644.1 +70.90469267082904 1666686274.6 +66.71210565038754 1666689905.1 +63.42401840326149 1666693535.6 +60.648213785498676 1666697166.2 +58.12303487530134 1666700796.7 +55.5511269917417 1666704427.2 +52.37207401579437 1666708057.7 +44.00615337077622 1666711688.2 +85.43672178658204 1666765518.9 +76.88475328692572 1666769127.2 +71.1686221477377 1666772735.4 +67.01086484761515 1666776343.6 +63.75987987591899 1666779951.8 +61.034481302929244 1666783560.1 +58.60048778434561 1666787168.3 +56.2072736126026 1666790776.5 +53.45894457233723 1666794384.7 +49.17517216028203 1666797993 +85.52790717819575 1666852024.5 +77.09232709253965 1666855610.5 +71.42660199812471 1666859196.6 +67.30594697343203 1666862782.6 +64.08979172205483 1666866368.7 +61.42074882035981 1666869954.7 +59.074263621979114 1666873540.7 +56.853793535531075 1666877126.8 +54.51098540856113 1666880712.8 +51.71592739493346 1666884298.9 +85.61909256980944 1666938530.2 +77.29622382674282 1666942094.2 +71.6868544036226 1666945658.2 +67.6010290992489 1666949222.1 +64.41970356819066 1666952786.1 +61.803339266379616 1666956350.1 +59.53614020656928 1666959914.1 +57.48246457889454 1666963478 +55.53187359587684 1666967042 +53.6917214003377 1666970606 +85.71027796142315 1667025036.1 +77.50012056094599 1667028578.1 +71.94115718259884 1667032120.2 +67.8901615985441 1667035662.2 +64.74366578780483 1667039204.2 +62.17770753076685 1667042746.2 +59.99801679115945 1667046288.3 +58.10378147943648 1667049830.3 +56.51793206287358 1667053372.3 +55.563026244785036 1667056914.3 +85.79778628162607 1667111542.1 +77.69806766862749 1667115062.3 +72.1895103350534 1667118582.5 +68.17561702642853 1667122102.7 +65.06990056252988 1667125622.9 +62.55434835026499 1667129143.1 +60.45026667781718 1667132663.3 +58.70724950041341 1667136183.5 +57.46688825444044 1667139703.7 +57.334923515986105 1667143223.9 +85.87934497530733 1667198048.3 +77.89006514978732 1667201546.8 +72.43786348750798 1667205045.3 +68.4551228277913 1667208543.8 +65.38423608421162 1667212042.3 +62.92136247183069 1667215540.8 +60.898839493064145 1667219039.4 +59.30336337856882 1667222537.9 +58.39291397873168 1667226036.4 +59.140245991206285 1667229534.9 +85.9609036689886 1667284554.5 +78.07838555953639 1667288031.5 +72.68253956855177 1667291508.4 +68.73462862915407 1667294985.4 +65.70084416100427 1667298462.4 +63.28610403828549 1667301939.3 +61.33919012667854 1667305416.3 +59.88162837715922 1667308893.3 +59.28183742759305 1667312370.2 +60.619333691701385 1667315847.2 +86.04246236266988 1667371060.8 +78.26670596928544 1667374516.4 +72.92126602307391 1667377971.9 +69.01413443051683 1667381427.5 +66.01517968268601 1667384883.1 +63.64716853332953 1667388338.6 +61.77813624399308 1667391794.2 +60.45026667781718 1667395249.8 +60.135931156135456 1667398705.3 +62.14287781044788 1667402160.9 +86.11807142982947 1667457567.1 +78.44907675251285 1667461001.4 +73.15999247759605 1667464435.8 +69.28769060535794 1667467870.1 +66.31988850643529 1667471304.4 +63.99860633044112 1667474738.7 +62.20291055315339 1667478173.1 +61.005601209131946 1667481607.4 +60.964821862291316 1667485041.7 +63.59081286203478 1667488476 +86.19368049698907 1667544073.4 +78.6277704643295 1667547486.6 +73.38909223418574 1667550899.9 +69.5516200822666 1667554313.1 +66.6245973301846 1667557726.4 +64.34777157244181 1667561139.7 +62.62628034601382 1667564552.9 +61.54903648740338 1667567966.2 +61.76255991953898 1667571379.4 +64.96908847298376 1667574792.7 +86.26928956414868 1667630579.6 +78.80646417614612 1667633972 +73.61819199077546 1667637364.3 +69.82149918569694 1667640756.7 +66.9293061539339 1667644149 +64.69920936955343 1667647541.4 +63.03775088583093 1667650933.8 +62.08284506774239 1667654326.1 +62.52914532787845 1667657718.5 +66.28505878611634 1667661110.8 +86.3412215598975 1667717085.8 +78.9792082614411 1667720457.4 +73.84501919225424 1667723829.1 +70.07947903608392 1667727200.7 +67.22438827975076 1667730572.3 +65.0387479136217 1667733944 +63.44327179912636 1667737315.6 +62.601077323627294 1667740687.3 +63.270527713831385 1667744058.9 +67.54467342795417 1667747430.5 +86.41315355564635 1667803591.8 +79.1460027202144 1667806942.9 +74.06449225091151 1667810294 +70.33973144158183 1667813645.2 +67.51947040556763 1667816996.3 +65.37460938627919 1667820347.4 +63.84511564101102 1667823698.5 +63.10741032646886 1667827049.6 +63.98303000598702 1667830400.8 +68.73830570056484 1667833751.9 +86.48281299628427 1667890097.7 +79.3127971789877 1667893428.5 +74.28396530956879 1667896759.3 +70.59403422055807 1667900090.1 +67.80492583345206 1667903420.9 +65.70452123241503 1667906751.7 +64.23733278496324 1667910082.5 +63.60043955996722 1667913413.3 +64.66805672064523 1667916744.1 +69.8874815549241 1667920074.8 +86.54879536551145 1667976603.3 +79.47591456635023 1667979914 +74.49521618659348 1667983224.7 +70.84238737301264 1667986535.4 +68.0881087062256 1667989846.1 +66.03075600714011 1667993156.8 +64.62360030239383 1667996467.4 +64.08384209553316 1667999778.1 +65.33015296802779 1668003088.8 +70.98030173798864 1668006399.5 +86.61110066332785 1668063108.7 +79.63308232719108 1668066399.5 +74.70873961872908 1668069690.3 +71.08706345405643 1668072981.1 +68.36761450758836 1668076271.9 +66.35104115534351 1668079562.7 +65.00391819330272 1668082853.5 +64.551668306645 1668086144.3 +65.96477363791294 1668089435.1 +72.01676624975843 1668092725.9 +86.67708303255502 1668149613.7 +79.79025008803195 1668152884.9 +74.91263635293225 1668156156 +71.32946697998933 1668159427.2 +68.64344323754037 1668162698.4 +66.66537667702524 1668165969.5 +65.37093231486843 1668169240.7 +65.01354489123516 1668172511.8 +66.56824165888987 1668175783 +73.00650178816593 1668179054.1 +86.73711577526052 1668236118.4 +79.94374077746205 1668239370.2 +75.11653308713541 1668242621.9 +71.5645163631007 1668245873.7 +68.91104978585979 1668249125.4 +66.97008550077453 1668252377.2 +65.73567388132324 1668255628.9 +65.45616807996046 1668258880.7 +67.1584059105236 1668262132.4 +73.93252751245717 1668265384.2 +86.79942107307691 1668322622.7 +80.0912818403705 1668325855.3 +75.31448019481691 1668329087.9 +71.79729319110116 1668332320.5 +69.17497926276846 1668335553.1 +67.27479432452382 1668338785.7 +66.08711167843484 1668342018.3 +65.8928416421641 1668345250.9 +67.71741751324913 1668348483.5 +74.80587463686444 1668351716.1 +86.85577674437165 1668409126.5 +80.23287327675726 1668412340.2 +75.50647767597675 1668415553.9 +72.02639294769087 1668418767.6 +69.43523166826637 1668421981.3 +67.5698764503407 1668425195 +66.43627692043553 1668428408.7 +66.31393887991364 1668431622.4 +68.2571757201098 1668434836.2 +75.6191890185662 1668438049.9 +86.91580948707714 1668495629.7 +80.37673726825493 1668498824.8 +75.69479808572581 1668502019.9 +72.2495430777589 1668505215 +69.69321151865337 1668508410.1 +67.85900894963589 1668511605.2 +66.77213839309303 1668514800.3 +66.72173234831997 1668517995.4 +68.7754079759947 1668521190.5 +76.37614772897325 1668524385.6 +86.97216515837188 1668582132.3 +80.51237907812003 1668585309.1 +75.87944142406413 1668588485.9 +72.46901613641617 1668591662.7 +69.94383722621883 1668594839.5 +68.14446437752034 1668598016.3 +67.10205023922886 1668601193 +67.11762656368296 1668604369.8 +69.27211428090384 1668607546.6 +77.07675076808555 1668610723.4 +87.02257120314493 1668668634.3 +80.64434381657436 1668671793.1 +76.06181220729152 1668674951.8 +72.68253956855177 1668678110.6 +70.18624075215173 1668681269.4 +68.4239701788831 1668684428.1 +67.42828501395392 1668687586.9 +67.50389408111351 1668690745.7 +69.7495671899481 1668693904.5 +77.72327069101401 1668697063.2 +87.07297724791802 1668755135.5 +80.77630855502869 1668758276.6 +76.23823336399725 1668761417.7 +72.89011337416571 1668764558.7 +70.42496720667387 1668767699.8 +68.69384928231342 1668770840.9 +67.74262053563567 1668773981.9 +67.88053490061166 1668777123 +70.2077667031275 1668780264.1 +78.32306164058019 1668783405.1 +87.12338329269107 1668841635.9 +80.90459622207227 1668844759.6 +76.41097744929222 1668847883.3 +73.09401010836888 1668851007 +70.65406696326357 1668854130.7 +68.96145583063287 1668857254.4 +68.04732935938496 1668860378.1 +68.24159939565568 1668863501.8 +70.64444026533114 1668866625.5 +78.8724465453733 1668869749.2 +87.17378933746414 1668928135.5 +81.02693426259417 1668931242.1 +76.5800444631764 1668934348.8 +73.29790684257205 1668937455.5 +70.88316671985325 1668940562.1 +69.2157586096091 1668943668.8 +68.34241148520182 1668946775.4 +68.5907646376564 1668949882.1 +71.06553750308066 1668952988.8 +79.37877954821485 1668956095.4 +87.22051831082645 1669014634.1 +81.1433226765944 1669017724 +76.74316185053895 1669020814 +73.48990432373188 1669023904 +71.1063168499213 1669026994 +69.47006138858534 1669030084 +68.63154398449703 1669033173.9 +68.93257573683557 1669036263.9 +71.46370427355457 1669039353.9 +79.84660575932669 1669042443.9 +87.26724728418876 1669101131.6 +81.25971109059464 1669104205.3 +76.90032961137982 1669107279 +73.67822473348095 1669110352.6 +71.3198402820569 1669113426.3 +69.71473746962913 1669116499.9 +68.91104978585979 1669119573.6 +69.25653795644973 1669122647.3 +71.84997179098514 1669125720.9 +80.2736526235979 1669128794.6 +87.31170370244016 1669187628.1 +81.37242243318408 1669190685.8 +77.05154774569901 1669193743.5 +73.86059551670834 1669196801.3 +71.52968664278173 1669199859 +69.95346392415127 1669202916.7 +69.1868785158118 1669205974.4 +69.57314603324237 1669209032.2 +72.21471335743995 1669212089.9 +80.6695468389609 1669215147.6 +87.35248304928078 1669274123.4 +81.48286122066266 1669277165.6 +77.19908880860744 1669280207.7 +74.03928922852498 1669283249.9 +71.731310821874 1669286292.1 +70.18256368074097 1669289334.3 +69.45080799272047 1669292376.4 +69.87785485699166 1669295418.6 +72.56615115455155 1669298460.8 +81.0365609605266 1669301503 +87.3932623961214 1669360617.4 +81.5859458653197 1669363644.5 +77.34662987151589 1669366671.5 +74.21203331381994 1669369698.5 +71.9292579295555 1669372725.6 +70.405713810809 1669375752.6 +69.70511077169668 1669378779.6 +70.17293698280854 1669381806.6 +72.89974007209814 1669384833.7 +81.37242243318408 1669387860.7 +87.43404174296205 1669447110.1 +81.68675795486584 1669450122.4 +77.48454423649189 1669453134.7 +74.37882777259324 1669456147 +72.12352796582624 1669459159.3 +70.6192372429446 1669462171.7 +69.9475142976296 1669465184 +70.45244278417131 1669468196.3 +73.21634814889077 1669471208.6 +81.68080832834417 1669474220.9 +87.47482108980269 1669533601.4 +81.7838929730012 1669536599.4 +77.61650897494621 1669539597.4 +74.5359955334341 1669542595.4 +72.30589874905364 1669545593.4 +70.82681104855853 1669548591.5 +70.18624075215173 1669551589.5 +70.7259989590124 1669554587.5 +73.52105697264008 1669557585.5 +81.97221338275027 1669560583.5 +87.50965081012164 1669620091.1 +81.87875543602567 1669623075.3 +77.74847371340054 1669626059.5 +74.69543584938589 1669629043.6 +72.48459246087027 1669632027.8 +71.03070778276171 1669635012 +70.41166343733067 1669637996.2 +70.9839788093994 1669640980.3 +73.81018947193527 1669643964.5 +82.23614285965893 1669646948.7 +87.54675308555152 1669706579.3 +81.9662637562286 1669709550.1 +77.87081175392245 1669712520.9 +74.84297691229432 1669715491.6 +72.65733654616524 1669718462.4 +71.22270526392154 1669721433.2 +70.62886394087704 1669724404 +71.22865489044321 1669727374.8 +74.08006857536562 1669730345.6 +82.47854638559183 1669733316.3 +87.58158280587048 1669793065.8 +82.05377207643153 1669796023.7 +77.99314979444435 1669798981.5 +74.98824542009184 1669801939.4 +72.82045393352777 1669804897.3 +71.40734860225983 1669807855.1 +70.83871030160186 1669810813 +71.46738134496533 1669813770.9 +74.34399805227429 1669816728.7 +82.70396907077077 1669819686.6 +87.61273545477869 1669879550.5 +82.13900784152356 1669882495.9 +78.10358858192292 1669885441.4 +75.12615978506784 1669888386.8 +72.97762169436864 1669891332.3 +71.58376975896557 1669894277.7 +71.04033448069414 1669897223.1 +71.69648110155504 1669900168.6 +74.58867413331808 1669903114 +82.9115428763847 1669906059.4 +87.64161554857597 1669966033.4 +82.21461690868317 1669968966.9 +78.21629992451238 1669971900.4 +75.2544474521114 1669974833.9 +73.12516275727708 1669977767.4 +71.75651384426052 1669980700.9 +71.22865489044321 1669983634.4 +71.91000453369064 1669986567.9 +74.82145096131855 1669989501.4 +83.10948998406619 1669992434.9 +87.67276819748417 1670052514.3 +82.29249853095367 1670055436.4 +78.31711201405852 1670058358.5 +75.38046256404408 1670061280.6 +73.27270382018551 1670064202.7 +71.91963123162307 1670067124.7 +71.4110256736706 1670070046.8 +72.11390126789381 1670072968.9 +75.03497439345415 1670075891 +83.28223406936115 1670078813 +87.69797121987071 1670138993.3 +82.3621579715916 1670141904.5 +78.42019665871557 1670144815.6 +75.50280060456599 1670147726.8 +73.40834563005062 1670150638 +72.07312192105316 1670153549.2 +71.58376975896557 1670156460.3 +72.30589874905364 1670159371.5 +75.24254819906807 1670162282.7 +83.44902852813448 1670165193.9 +87.72317424225724 1670225470.1 +82.42814034081877 1670228370.9 +78.51138205032926 1670231271.7 +75.61323939204455 1670234172.5 +73.53663329709417 1670237073.3 +72.21471335743995 1670239974.2 +71.74688714632809 1670242875 +72.48459246087027 1670245775.8 +75.43681823533882 1670248676.6 +83.60251921756458 1670251577.4 +87.74837726464376 1670311944.8 +82.49412271004593 1670314835.7 +78.60256744194297 1670317726.7 +75.72000110811234 1670320617.7 +73.65897133761608 1670323508.7 +72.35262772241593 1670326399.7 +71.90037783575819 1670329290.7 +72.65733654616524 1670332181.7 +75.6191890185662 1670335072.7 +83.74043358254056 1670337963.7 +87.7735802870303 1670398417.1 +82.55047838134065 1670401298.9 +78.68412613562423 1670404180.6 +75.82308575276937 1670407062.3 +73.7753597516163 1670409944 +72.48459246087027 1670412825.8 +72.04791889866664 1670415707.5 +72.8145043070061 1670418589.2 +75.78598347733951 1670421470.9 +83.86644869447323 1670424352.7 +87.79510623800607 1670484887.2 +82.6068340526354 1670487760.2 +78.75973520278383 1670490633.2 +75.91427114438308 1670493506.3 +73.8821214676841 1670496379.3 +72.60693050139217 1670499252.3 +72.17988363712097 1670502125.4 +72.96572244132531 1670504998.4 +75.93947416676961 1670507871.4 +83.98283710847348 1670510744.5 +87.81435963387095 1670571354.8 +82.65724009740846 1670574219.7 +78.83534426994342 1670577084.6 +75.99950690947512 1670579949.5 +73.98293355723023 1670582814.4 +72.71736928887074 1670585679.3 +72.30589874905364 1670588544.3 +73.10363680630131 1670591409.2 +76.08701522967804 1670594274.1 +84.0859217531305 1670597139 +87.83588558484672 1670657819.8 +82.70764614218153 1670660677.2 +78.90132663917058 1670663534.6 +76.08106560315638 1670666392 +74.07411894884395 1670669249.4 +72.82045393352777 1670672106.8 +72.42228716305388 1670674964.2 +73.23192447334488 1670677821.6 +76.21897996813239 1670680679 +84.18078421615498 1670683536.4 +87.8514619093008 1670744282.4 +82.74842548902217 1670747132.8 +78.963631936987 1670749983.3 +76.15894722542689 1670752833.7 +74.1556776425252 1670755684.2 +72.91531639655224 1670758534.7 +72.5253718077109 1670761385.1 +73.3483128873451 1670764235.6 +76.33536838213261 1670767086.1 +84.2682925363579 1670769936.5 +87.86703823375491 1670830742.2 +82.7892048358628 1670833586.3 +79.01998760828172 1670836430.5 +76.22492959465406 1670839274.6 +74.23723633620648 1670842118.8 +73.00282471675517 1670844962.9 +72.62023427073537 1670847807.1 +73.44912497689126 1670850651.2 +76.44807972472208 1670853495.4 +84.34985123003918 1670856339.5 +87.88034200309811 1670917199.3 +82.82403455618177 1670920037.8 +79.0703936530548 1670922876.2 +76.28496233735954 1670925714.6 +74.30321870543365 1670928553.1 +73.07843378391476 1670931391.5 +72.7077425909383 1670934229.9 +73.54625999502662 1670937068.4 +76.54521474285744 1670939906.8 +84.41583359926634 1670942745.3 +87.89224125614145 1671003653.6 +82.86113683161163 1671006487 +79.11117299989543 1671009320.4 +76.34131800865428 1671012153.7 +74.36920107466081 1671014987.1 +73.15036577966362 1671017820.4 +72.78930128461958 1671020653.8 +73.63149576011864 1671023487.1 +76.63045050794946 1671026320.5 +84.47586634197184 1671029153.8 +87.90186795407388 1671090105.1 +82.88633985399817 1671092934 +79.15195234673607 1671095762.9 +76.38577442690568 1671098591.8 +74.41960711943388 1671101420.7 +73.2103985223691 1671104249.6 +72.85528365384674 1671107078.5 +73.70342775586747 1671109907.4 +76.70238250369832 1671112736.3 +84.5262723867449 1671115565.2 +87.91149465200631 1671176553.6 +82.9115428763847 1671179378.7 +79.18678206705502 1671182203.8 +76.4265537737463 1671185028.9 +74.46633609279618 1671187854 +73.26080456714217 1671190679 +72.91163932514148 1671193504.1 +73.76941012509464 1671196329.2 +76.76836487292547 1671199154.3 +84.5730013601072 1671201979.4 +87.92112134993874 1671262999.2 +82.93079627224957 1671265821.1 +79.21198508944155 1671268643 +76.45770642265451 1671271464.9 +74.5071154396368 1671274286.8 +73.30753354050448 1671277108.7 +72.95609574339288 1671279930.6 +73.8198161698677 1671282752.5 +76.81877091769854 1671285574.4 +84.60783108042617 1671288396.3 +87.92707097646041 1671349441.7 +82.94637259670367 1671352261.1 +79.23718811182809 1671355080.4 +76.48885907156271 1671357899.8 +74.5359955334341 1671360719.2 +73.33868618941267 1671363538.5 +72.99687509023352 1671366357.9 +73.86059551670834 1671369177.3 +76.85955026453918 1671371996.6 +84.6330341028127 1671374816 +87.93302060298208 1671435881.1 +82.958271849747 1671438698.6 +79.25276443628219 1671441516.1 +76.50811246742758 1671444333.6 +74.55752148440988 1671447151 +73.3638892117992 1671449968.5 +73.02207811262004 1671452786 +73.89174816561653 1671455603.5 +76.89437998485815 1671458420.9 +84.65456005378846 1671461238.4 +87.93669767439285 1671522317.4 +82.96789854767943 1671525133.6 +79.26239113421462 1671527949.9 +76.51773916536001 1671530766.1 +74.57309780886398 1671533582.4 +73.3794655362533 1671536398.6 +73.04360406359581 1671539214.8 +73.9110015614814 1671542031.1 +76.9159059358339 1671544847.3 +84.67013637824256 1671547663.6 +87.93669767439285 1671608750.5 +82.97157561909019 1671611566.2 +79.2683407607363 1671614381.8 +76.52963841840334 1671617197.5 +74.58272450679641 1671620013.1 +73.38909223418574 1671622828.8 +73.05323076152824 1671625644.4 +73.91695118800307 1671628460.1 +76.91958300724468 1671631275.8 +84.67381344965332 1671634091.4 +87.93669767439285 1671695180.4 +82.97157561909019 1671697996.1 +79.2683407607363 1671700811.8 +76.52368879188167 1671703627.6 +74.58272450679641 1671706443.3 +73.38909223418574 1671709259 +73.05323076152824 1671712074.7 +73.91695118800307 1671714890.5 +76.91958300724468 1671717706.2 +84.67381344965332 1671720521.9 +87.93669767439285 1671781607 +82.96789854767943 1671784423.5 +79.26239113421462 1671787239.9 +76.51773916536001 1671790056.4 +74.57309780886398 1671792872.8 +73.3794655362533 1671795689.2 +73.03765443707414 1671798505.7 +73.90732449007064 1671801322.1 +76.90995630931224 1671804138.6 +84.6641867517209 1671806955 +87.93302060298208 1671868030.3 +82.958271849747 1671870848.2 +79.25276443628219 1671873666 +76.50443539601682 1671876483.8 +74.55752148440988 1671879301.6 +73.35793958527753 1671882119.5 +73.01840104120927 1671884937.3 +73.8821214676841 1671887755.1 +76.88475328692572 1671890572.9 +84.64861042726679 1671893390.8 +87.92707097646041 1671954450.4 +82.94637259670367 1671957270.2 +79.23351104041733 1671960090.1 +76.48290944504105 1671962909.9 +74.53231846202334 1671965729.8 +73.332736562891 1671968549.6 +72.98724839230107 1671971369.5 +73.85096881877591 1671974189.3 +76.84992356660675 1671977009.2 +84.62340740488027 1671979829 +87.92112134993874 1672040867 +82.93079627224957 1672043689.6 +79.21198508944155 1672046512.1 +76.45770642265451 1672049334.6 +74.50116581311514 1672052157.2 +73.29790684257205 1672054979.7 +72.94646904546045 1672057802.2 +73.8042398454136 1672060624.7 +76.80319459324444 1672063447.3 +84.5885776845613 1672066269.8 +87.91744427852798 1672127280.4 +82.9115428763847 1672130106.2 +79.18083244053335 1672132932.1 +76.42287670233554 1672135757.9 +74.45670939486375 1672138583.8 +73.25117786920973 1672141409.6 +72.89606300068738 1672144235.5 +73.75015672922979 1672147061.3 +76.74683892194972 1672149887.2 +84.55374796424233 1672152713 +87.90554502548464 1672213690.3 +82.88633985399817 1672216520.2 +79.1460027202144 1672219350 +76.37614772897325 1672222179.8 +74.40998042150144 1672225009.6 +73.194822197915 1672227839.4 +72.83375770287097 1672230669.2 +73.68417436000261 1672233499 +76.67717948131178 1672236328.9 +84.50106936435837 1672239158.7 +87.89591832755221 1672300096.9 +82.86113683161163 1672302931.3 +79.10522337337376 1672305765.8 +76.33169131072185 1672308600.2 +74.35362475020672 1672311434.6 +73.13478945520951 1672314269 +72.76777533364381 1672317103.4 +73.60629273773212 1672319937.8 +76.59929785904129 1672322772.3 +84.44698624817454 1672325606.7 +87.88629162961978 1672386500.1 +82.82403455618177 1672389339.8 +79.06444402653312 1672392179.4 +76.27533563942711 1672395019.1 +74.29359200750122 1672397858.7 +73.06285745946067 1672400698.4 +72.68621663996254 1672403538 +73.51510734611841 1672406377.7 +76.50811246742758 1672409217.3 +84.38468095035815 1672412057 +87.87071530516567 1672472900 +82.7892048358628 1672475745.5 +79.01403798176005 1672478591 +76.21303034161072 1672481436.5 +74.21798294034161 1672484282 +72.9812987657794 1672487127.5 +72.59503124834883 1672489973 +73.41797232798305 1672492818.5 +76.40730037788146 1672495664 +84.30907188319854 1672498509.5 +87.85513898071157 1672559296.4 +82.74842548902217 1672562148.4 +78.95400523905455 1672565000.4 +76.14337090097278 1672567852.3 +74.14010131807112 1672570704.3 +72.89011337416571 1672573556.3 +72.49421915880271 1672576408.3 +73.30753354050448 1672579260.3 +76.29091196388121 1672582112.2 +84.22751318951727 1672584964.2 +87.83956265625748 1672645689.5 +82.70764614218153 1672648548.5 +78.89169994123814 1672651407.6 +76.07143890522394 1672654266.7 +74.05486555297908 1672657125.7 +72.79297835603035 1672659984.8 +72.38745744273491 1672662843.9 +73.19114512650424 1672665702.9 +76.16857392335932 1672668562 +84.13632779790358 1672671421.1 +87.82030926039262 1672732079.2 +82.65724009740846 1672734946 +78.82571757201099 1672737812.7 +75.98620314013192 1672740679.4 +73.95773053484372 1672743546.2 +72.68621663996254 1672746412.9 +72.27106902873467 1672749279.7 +73.05918038804991 1672752146.4 +76.0306595583833 1672755013.2 +84.03551570835744 1672757879.9 +87.80105586452774 1672818465.6 +82.6068340526354 1672821340.6 +78.7501085048514 1672824215.6 +75.89869481992896 1672827090.7 +73.85691844529758 1672829965.7 +72.57577785248398 1672832840.7 +72.13910429028033 1672835715.7 +72.91531639655224 1672838590.8 +75.87944142406413 1672841465.8 +83.92280436576796 1672844340.8 +87.77952991355197 1672904848.6 +82.55047838134065 1672907732.5 +78.6744994376918 1672910616.4 +75.8015598017936 1672913500.3 +73.75015672922979 1672916384.2 +72.4474901854404 1672919268.1 +72.00118992530433 1672922151.9 +72.76409826223305 1672925035.8 +75.72000110811234 1672927919.7 +83.80046632524606 1672930803.6 +87.7602765176871 1672991228.4 +82.49044563863517 1672994121.7 +78.58699111748886 1672997015 +75.70074771224748 1672999908.3 +73.63149576011864 1673002801.7 +72.31552544698607 1673005695 +71.8536488623959 1673008588.3 +72.59503124834883 1673011481.6 +75.54357995140661 1673014374.9 +83.66850158679173 1673017268.3 +87.73280094018968 1673077604.9 +82.42446326940801 1673080508.2 +78.50175535239683 1673083411.5 +75.59398599617968 1673086314.8 +73.50548064818598 1673089218.1 +72.17988363712097 1673092121.4 +71.69648110155504 1673095024.7 +72.42228716305388 1673097928 +75.36120916817922 1673100831.4 +83.5209605238833 1673103734.7 +87.70759791780314 1673163978.1 +82.35848090018084 1673166891.9 +78.40462033426145 1673169805.8 +75.47759758217946 1673172719.7 +73.37351590973164 1673175633.5 +72.02639294769087 1673178547.4 +71.52968664278173 1673181461.2 +72.23396675330481 1673184375.1 +75.16098950538681 1673187288.9 +83.36379276304243 1673190202.8 +87.67871782400584 1673250348.1 +82.286548904432 1673253273 +78.30748531612609 1673256198 +75.35525954165755 1673259122.9 +73.23560154475564 1673262047.9 +71.87517481337167 1673264972.8 +71.35694255748678 1673267897.7 +72.0360196456233 1673270822.7 +74.94973862836211 1673273747.6 +83.19104867774747 1673276672.6 +87.65351480161931 1673336714.9 +82.2109398372724 1673339651.5 +78.20072360005828 1673342588 +75.22697187461398 1673345524.6 +73.08806048184721 1673348461.1 +71.70610779948747 1673351397.7 +71.1686221477377 1673354334.2 +71.82844584000937 1673357270.8 +74.7206388717724 1673360207.3 +83.00867789452006 1673363143.9 +87.62236215271112 1673423078.6 +82.1330582150019 1673426027.3 +78.08801225746882 1673428976 +75.09500713615964 1673431924.6 +72.936842347528 1673434873.3 +71.5333637141925 1673437822 +70.97435211146697 1673440770.7 +71.60897278135211 1673443719.3 +74.48191241725029 1673446668 +82.80478116031689 1673449616.7 +87.58753243239215 1673509439.2 +82.04782244990986 1673512400.5 +77.97162384346859 1673515361.8 +74.95341569977288 1673518323.1 +72.77372496016548 1673521284.4 +71.3509929309651 1673524245.7 +70.76677830585304 1673527207 +71.37619595335164 1673530168.3 +74.22760963827405 1673533129.6 +82.58530810165963 1673536090.9 +87.55637978348395 1673595796.7 +81.96031412970693 1673598771.2 +77.84928580294668 1673601745.6 +74.81182426338611 1673604720 +72.60693050139217 1673607694.4 +71.16267252121602 1673610668.8 +70.55325487371744 1673613643.2 +71.13151987230783 1673616617.7 +73.95773053484372 1673619592.1 +82.3465816471375 1673622566.5 +87.52155006316498 1673682151.2 +81.86912873809324 1673685139.3 +77.72327069101401 1673688127.3 +74.658333573956 1673691115.3 +72.43418641609722 1673694103.3 +70.96472541353454 1673697091.3 +70.3301047436494 1673700079.3 +70.87721709333161 1673703067.3 +73.67822473348095 1673706055.3 +82.08860179675051 1673709043.3 +87.48444778773512 1673768502.8 +81.77426627506877 1673771504.9 +77.59498302397046 1673774506.9 +74.50116581311514 1673777509 +72.25549270428057 1673780511 +70.76082867933137 1673783513.1 +70.1010049870597 1673786515.2 +70.61328761642294 1673789517.2 +73.3794655362533 1673792519.3 +81.80909599538774 1673795521.4 +87.44366844089448 1673854851.4 +81.67713125693341 1673857868 +77.45934121410535 1673860884.5 +74.33804842575262 1673863901.1 +72.06717229453149 1673866917.7 +70.54730524719577 1673869934.3 +69.8563289060159 1673872950.8 +70.33973144158183 1673875967.4 +73.06880708598234 1673878984 +81.50806424304919 1673882000.5 +87.40288909405385 1673941197.1 +81.57404661227636 1673944228.7 +77.31774977771859 1673947260.2 +74.16530434045764 1673950291.7 +71.87517481337167 1673953323.2 +70.3301047436494 1673956354.7 +69.60797575356132 1673959386.2 +70.05059894228664 1673962417.7 +72.7388952398465 1673965449.2 +81.17815239691336 1673968480.8 +87.36210974721321 1674027540.1 +81.46728489620855 1674030586.9 +77.17020871481014 1674033633.8 +73.99256025516267 1674036680.7 +71.6712780791685 1674039727.6 +70.1010049870597 1674042774.5 +69.34772334806343 1674045821.3 +69.74589011853733 1674048868.2 +72.39340706925658 1674051915.1 +80.82303752839098 1674054962 +87.32133040037257 1674113880.2 +81.36052318014076 1674116942.9 +77.02266765190171 1674120005.5 +73.81018947193527 1674123068.2 +71.46370427355457 1674126130.8 +69.86595560394834 1674129193.5 +69.080116799744 1674132256.1 +69.43523166826637 1674135318.8 +72.03234257421254 1674138381.4 +80.43677001096043 1674141444.1 +87.27687398212119 1674200217.6 +81.24413476614053 1674203296.5 +76.86549989106085 1674206375.3 +73.62781868870788 1674209454.1 +71.25018084141898 1674212532.9 +69.62722914942619 1674215611.8 +68.80061099838123 1674218690.6 +69.10899689354129 1674221769.4 +71.6557017547144 1674224848.2 +80.01934984462166 1674227927.1 +87.23014500875888 1674286552.4 +81.12774635214029 1674289647.8 +76.70238250369832 1674292743.2 +73.43354865243714 1674295838.5 +71.03070778276171 1674298933.9 +69.37519892556087 1674302029.3 +68.51515557049679 1674305124.7 +68.7754079759947 1674308220.1 +71.2598075393514 1674311315.4 +79.56342288655316 1674314410.8 +87.18568859050748 1674372884.5 +81.0054083116184 1674375996.8 +76.53926511633577 1674379109.1 +73.23560154475564 1674382221.5 +70.80755765269366 1674385333.8 +69.12089614658464 1674388446.1 +68.21639637326916 1674391558.4 +68.42991980540477 1674394670.7 +70.84238737301264 1674397783 +79.0703936530548 1674400895.3 +87.13528254573441 1674459214.1 +80.8830702710965 1674462343.7 +76.36652103104082 1674465473.3 +73.03397736566338 1674468602.9 +70.57845789610397 1674471732.5 +68.85469411456506 1674474862.1 +67.91536462093062 1674477991.7 +68.06885531036072 1674481121.2 +70.41166343733067 1674484250.8 +78.53063544619413 1674487380.4 +87.08260394585045 1674545541.2 +80.75705515916383 1674548688.4 +76.19377694574585 1674551835.6 +72.8300806314602 1674554982.9 +70.33973144158183 1674558130.1 +68.58708756624564 1674561277.3 +67.6010290992489 1674564424.5 +67.6922144908626 1674567571.7 +69.95346392415127 1674570718.9 +77.94642082108204 1674573866.1 +87.0285208296666 1674631865.8 +80.6250904207095 1674635031 +76.01508323392922 1674638196.2 +72.6165571993246 1674641361.4 +70.09505536053803 1674644526.5 +68.31125883629362 1674647691.7 +67.2807439510455 1674650856.9 +67.3118965999537 1674654022.1 +69.48563771303942 1674657187.2 +77.31180015119692 1674660352.4 +86.97584222978264 1674718188.1 +80.4871760557335 1674721371.5 +75.8327124507018 1674724555 +72.39708414066735 1674727738.4 +69.84670220808347 1674730921.9 +68.0280759635201 1674734105.3 +66.95083210490968 1674737288.8 +66.91372982947979 1674740472.2 +68.9889314081303 1674743655.7 +76.62450088142782 1674746839.1 +86.92175911359881 1674804508 +80.34558461934674 1674807710 +75.64439204095275 1674810912.1 +72.1739340105993 1674814114.1 +69.59239942910722 1674817316.1 +67.73299383770323 1674820518.2 +66.6090210057305 1674823720.2 +66.50820891618436 1674826922.2 +68.47437622365617 1674830124.3 +75.87944142406413 1674833326.3 +86.85945381578242 1674890825.6 +80.20399318295996 1674894046.5 +75.4523945597929 1674897267.5 +71.95078388053128 1674900488.4 +69.33441957872024 1674903709.3 +67.43791171188636 1674906930.2 +66.26353283514057 1674910151.1 +66.08711167843484 1674913372 +67.9368905719064 1674916592.9 +75.07575374029479 1674919813.8 +86.80309814448768 1674977141 +80.05645212005153 1674980381.1 +75.2544474521114 1674983621.2 +71.7157344974199 1674986861.3 +69.06821754670067 1674990101.3 +67.13915251465873 1674993341.4 +65.9084179666182 1674996581.5 +65.65411518764196 1674999821.5 +67.37787896918087 1675003061.6 +74.21203331381994 1675006301.7 +86.74306540178219 1675063454.3 +79.90891105714309 1675066713.8 +75.05422778931901 1675069973.3 +71.47700804289776 1675073232.8 +68.80061099838123 1675076492.3 +66.82849406438777 1675079751.8 +65.54735347157416 1675083011.3 +65.2078149275059 1675086270.8 +66.7936643440688 1675089530.3 +73.29195721605038 1675092789.8 +86.67708303255502 1675149765.4 +79.75174329630222 1675153044.6 +74.84665398370507 1675156323.8 +71.23828158837564 1675159603 +68.52478226842923 1675162882.2 +66.51415854270603 1675166161.3 +65.17666227859769 1675169440.5 +64.7496154143265 1675172719.7 +66.18197414145929 1675175998.9 +72.31184837557531 1675179278.1 +86.61705028984952 1675236074.5 +79.59230298035045 1675239373.6 +74.63908017809113 1675242672.7 +70.98992843592107 1675245971.9 +68.24527646706646 1675249271 +66.19387339450263 1675252570.1 +64.7963443876888 1675255869.2 +64.2781121318039 1675259168.3 +65.54735347157416 1675262467.5 +71.2753838638055 1675265766.6 +86.54879536551145 1675322381.6 +79.43513521950959 1675325700.8 +74.42555674595555 1675329020.1 +70.7415752834665 1675332339.4 +67.96209359429292 1675335658.7 +65.86763861977755 1675338978 +64.41007687025821 1675342297.3 +63.79470959623796 1675345616.6 +64.89120685071326 1675348935.9 +70.18256368074097 1675352255.2 +86.4791359248735 1675408686.7 +79.2683407607363 1675412026.4 +74.20608368729827 1675415366.1 +70.48727250449028 1675418705.8 +67.67068853988684 1675422045.5 +65.53177714712005 1675425385.2 +64.01785972630599 1675428724.9 +63.29573073621792 1675432064.6 +64.20618013605505 1675435404.3 +69.0333878263817 1675438743.9 +86.41315355564635 1675494989.9 +79.09927374685209 1675498350.2 +73.9888831837519 1675501710.5 +70.23296972551402 1675505070.8 +67.37787896918087 1675508431.1 +65.19591567446255 1675511791.5 +63.61601588442132 1675515151.8 +62.78939773337636 1675518512.1 +63.490000772488656 1675521872.4 +67.83380592724936 1675525232.7 +86.33754448848674 1675581291.3 +78.92652966155711 1675584672.4 +73.75978342716222 1675588053.5 +69.96904024860537 1675591434.7 +67.082796843364 1675594815.8 +64.85637713039429 1675598197 +63.20454534460422 1675601578.1 +62.265215850969795 1675604959.2 +62.748618386535725 1675608340.4 +66.58014091193321 1675611721.5 +86.26561249273792 1675667590.8 +78.75378557626216 1675670993 +73.5306836705725 1675674395.2 +69.69916114517501 1675677797.3 +66.7780880196147 1675681199.5 +64.50493933328269 1675684601.6 +62.78939773337636 1675688003.8 +61.73140727063078 1675691406 +61.976083351674596 1675694808.1 +65.25822097227896 1675698210.3 +86.19000342557831 1675753888.7 +78.57141479303476 1675757312.1 +73.29790684257205 1675760735.4 +69.4292820417447 1675764158.8 +66.4733791958654 1675767582.2 +64.14982446476033 1675771005.5 +62.36602794051592 1675774428.9 +61.18202236583769 1675777852.3 +61.172395667905256 1675781275.6 +63.876268289919224 1675784699 +86.1121218033078 1675840184.9 +78.38904400980735 1675843629.6 +73.05918038804991 1675847074.4 +69.1557258669036 1675850519.1 +66.16272074559443 1675853963.9 +63.79470959623796 1675857408.6 +61.935304004833945 1675860853.4 +60.62301076311215 1675864298.1 +60.34350496174939 1675867742.9 +62.41643398528899 1675871187.6 +86.03056310962654 1675926479.4 +78.20072360005828 1675929945.7 +72.82045393352777 1675933412 +68.88216969206249 1675936878.3 +65.8483852239127 1675940344.6 +63.433645101193925 1675943810.9 +61.492680816108646 1675947277.2 +60.04842283593252 1675950743.5 +59.47978453527454 1675954209.8 +60.886940240020806 1675957676.1 +85.95127697105617 1676012772.3 +78.01240319030923 1676016260.3 +72.57577785248398 1676019748.4 +68.59671426417808 1676023236.4 +65.52810007570929 1676026724.4 +63.062953908217466 1676030212.4 +61.05005762738334 1676033700.4 +59.46053113940968 1676037188.5 +58.581234388480745 1676040676.5 +59.28183742759305 1676044164.5 +85.8697182773749 1676099063.7 +77.82040570914937 1676102573.6 +72.32742470002941 1676106083.5 +68.31125883629362 1676109593.4 +65.2078149275059 1676113103.3 +62.69226271524099 1676116613.2 +60.597807740725614 1676120123 +58.86074018984352 1676123632.9 +57.651531592778746 1676127142.8 +57.58554922355158 1676130652.7 +85.78220995717197 1676185353.6 +77.62245860146788 1676188885.5 +72.07679899246394 1676192417.4 +68.0280759635201 1676195949.3 +64.88158015278084 1676199481.2 +62.31562189574286 1676203013.1 +60.135931156135456 1676206545 +58.25132254234491 1676210076.9 +56.69067614816854 1676213608.8 +55.79212600137475 1676217140.7 +85.69102456555828 1676271642.1 +77.41856186726473 1676275196.2 +71.81881914207693 1676278750.2 +67.73299383770323 1676282304.3 +64.551668306645 1676285858.3 +61.935304004833945 1676289412.3 +59.674054571545284 1676292966.4 +57.62632857039221 1676296520.4 +55.6890413567177 1676300074.5 +53.9052448324733 1676303628.5 +85.59983917394457 1676357929.2 +77.21466513306154 1676361505.5 +71.55856673657902 1676365081.8 +67.43791171188636 1676368658.2 +64.22175646050916 1676372234.5 +61.54903648740338 1676375810.8 +59.20027873391178 1676379387.1 +56.98575827398541 1676382963.5 +54.65852647146957 1676386539.8 +49.231527831576756 1676390116.1 +85.50865378233088 1676444214.9 +77.00709132744761 1676447813.6 +71.30058688619204 1676451412.4 +67.13915251465873 1676455011.1 +63.88589498785166 1676458609.8 +61.162768969972824 1676462208.6 +58.72282582486751 1676465807.3 +56.33556127964617 1676469406 +53.59090931079157 1676473004.7 +49.80016613223473 1676476603.5 +85.4115187641955 1676530499.3 +76.79356789531202 1676534120.6 +71.03070778276171 1676537741.8 +66.83812076232019 1676541363.1 +63.54635644378339 1676544984.3 +60.766874754609816 1676548605.6 +58.23942328930157 1676552226.8 +55.66978796085284 1676555848.1 +52.49213950120536 1676559469.3 +44.850620401386195 1676563090.6 +85.31438374606013 1676616782.5 +76.57409483665474 1676620426.4 +70.76082867933137 1676624070.3 +66.5334119385709 1676627714.1 +63.20454534460422 1676631358 +60.368707984135916 1676635001.9 +57.74639405580321 1676638645.8 +54.99211538901617 1676642289.6 +51.354862899889426 1676645933.5 +0.0 1676649577.4 +85.21952128303568 1676703064.5 +76.35689433310837 1676706731.1 +70.49094957590104 1676710397.7 +66.22870311482161 1676714064.3 +62.85905717401428 1676717730.9 +59.972813768772916 1676721397.5 +57.24968775089408 1676725064.1 +54.3011390478363 1676728730.7 +50.18048402314361 1676732397.3 +0.0 1676736063.9 +85.11275956696788 1676789345.3 +76.12779457651868 1676793034.7 +70.21739340105992 1676796724.1 +65.91804466455064 1676800413.6 +62.51356900342435 1676804103 +59.56729285547748 1676807792.4 +56.75070889087404 1676811481.8 +53.596858937313236 1676815171.3 +48.97722505260052 1676818860.7 +0.0 1676822550.1 +85.00967492231084 1676875624.9 +75.90464444645063 1676879337.3 +69.93788759969716 1676883049.6 +65.60965876939056 1676886762 +62.16440376142365 1676890474.3 +59.15949938707115 1676894186.7 +56.24437588803248 1676897899 +52.8843566451576 1676901611.4 +47.730914180105884 1676905323.7 +0.0 1676909036 +84.89923613483228 1676961903.5 +75.66959506333929 1676965638.9 +69.65470472692363 1676969374.2 +65.29305069259793 1676973109.6 +61.81296596431205 1676976844.9 +58.75397847377572 1676980580.3 +55.72982070355833 1676984315.6 +52.152600957137096 1676988051 +46.45572321381395 1676991786.3 +0.0 1676995521.7 +84.7865247922428 1677048181.1 +75.43086860881715 1677051939.5 +69.3692492990392 1677055697.9 +64.97276554439452 1677059456.4 +61.45785109578968 1677063214.8 +58.33655830743694 1677066973.2 +55.211588447673435 1677070731.7 +51.41489564259492 1677074490.1 +45.13975290068138 1677078248.5 +0.0 1677082007 +84.67381344965332 1677134457.6 +75.19214215429501 1677138239.2 +69.080116799744 1677142020.8 +64.65248039619112 1677145802.4 +61.10046367215642 1677149584 +57.92508776761984 1677153365.6 +54.68740656526686 1677157147.1 +50.663886558709564 1677160928.7 +43.792629938640616 1677164710.3 +0.0 1677168491.9 +84.55742503565311 1677220733.2 +74.94973862836211 1677224538 +68.78871174533789 1677228342.8 +64.33219524798771 1677232147.6 +60.739399177112375 1677235952.5 +57.50399052987031 1677239757.3 +54.15954761144953 1677243562.1 +49.8973011503701 1677247366.9 +42.41067725628088 1677251171.8 +0.0 1677254976.6 +84.4350869951312 1677307007.8 +74.69911292079665 1677310835.9 +68.49590217463194 1677314664.1 +64.00823302837355 1677318492.2 +60.380607237179255 1677322320.3 +57.08062073700987 1677326148.4 +53.62573903111053 1677329976.5 +49.11881648898729 1677333804.7 +40.993894853602185 1677337632.8 +0.0 1677341460.9 +84.31502150972021 1677393281.6 +74.45075976834208 1677397133.1 +68.19487042229339 1677400984.5 +63.68199825364849 1677404836 +60.019542742135215 1677408687.5 +56.65952349926033 1677412539 +53.09193045077153 1677416390.4 +48.33070512967205 1677420241.9 +39.54595980201528 1677424093.4 +0.0 1677427944.9 +84.18673384267663 1677479554.5 +74.19050736284417 1677483429.4 +67.89611122506577 1677487304.3 +63.35208640751265 1677491179.2 +59.65252862056951 1677495054.1 +56.23247663498914 1677498929 +52.54849517250009 1677502803.9 +47.532967072424384 1677506678.7 +38.0609224749985 1677510553.6 +0.4485728152469742 1677514428.5 +84.0547691042223 1677565826.6 +73.93252751245717 1677569725 +67.59140240131647 1677573623.3 +63.02217456137683 1677577521.7 +59.287787054114716 1677581420.1 +55.805429770717936 1677585318.4 +52.005059894228665 1677589216.8 +46.71965269072262 1677593115.1 +36.54105542766276 1677597013.5 +0.4618765845901653 1677600911.9 +83.91685473924629 1677652098 +73.66859803554851 1677656019.8 +67.28669357756716 1677659941.7 +62.69226271524099 1677663863.6 +58.91709586113825 1677667785.5 +55.37470583503597 1677671707.4 +51.451997918024794 1677675629.2 +45.89671161108841 1677679551.1 +34.986358660008065 1677683473 +0.47745290904426685 1677687394.9 +83.78121292938121 1677738368.6 +73.39871893211817 1677742314 +66.97603512729619 1677746259.4 +62.356401242583495 1677750204.9 +58.55008173957254 1677754150.3 +54.94170934424311 1677758095.8 +50.89666338671002 1677762041.2 +45.067820904932546 1677765986.7 +33.400509243445164 1677769932.1 +0.0 1677773877.5 +83.63734893788354 1677824638.5 +73.12516275727708 1677828607.5 +66.66537667702524 1677832576.6 +62.02053976992599 1677836545.6 +58.17939054659608 1677840514.7 +54.51098540856113 1677844483.7 +50.34360141050616 1677848452.8 +44.22562642943349 1677852421.8 +31.779830106563292 1677856390.9 +0.0 1677860359.9 +83.4898078749751 1677910907.7 +72.84565695591431 1677914900.4 +66.35104115534351 1677918893.1 +61.68100122585771 1677922885.8 +57.80274972709794 1677926878.5 +54.0743118463575 1677930871.2 +49.77864018125895 1677934863.9 +43.37153270089109 1677938856.6 +30.118371622840794 1677942849.3 +0.0 1677946842 +83.3385897406559 1677997176.3 +72.56615115455155 1678001192.7 +66.03075600714011 1678005209.1 +61.33919012667854 1678009225.5 +57.432058534121474 1678013241.8 +53.64131535556463 1678017258.2 +49.215951507122654 1678021274.6 +42.50781227441625 1678025291 +28.425760490210084 1678029307.3 +0.0 1678033323.7 +83.18142197981504 1678083444.4 +72.2806957266671 1678087484.5 +65.7104708589367 1678091524.5 +60.99965158261028 1678095564.6 +57.05541771462334 1678099604.7 +53.19869216683933 1678103644.8 +48.64731320646469 1678107684.9 +41.634465150008985 1678111725 +26.698319637260422 1678115765 +0.0 1678119805.1 +83.0183045924525 1678169711.8 +71.98561360085024 1678173775.7 +65.39018571073329 1678177839.5 +60.660113038542015 1678181903.3 +56.68104945023611 1678185967.1 +52.76201860463569 1678190031 +48.076402350695815 1678194094.8 +40.75516839908005 1678198158.6 +24.930099437470115 1678202222.5 +0.0 1678206286.3 +82.84556050715753 1678255978.8 +71.69053147503337 1678260066.4 +65.06395093600821 1678264154 +60.31462486795209 1678268241.6 +56.304408630737974 1678272329.2 +52.31939541591039 1678276416.8 +47.50181442351619 1678280504.4 +39.866244950218686 1678284591.9 +23.13072658877161 1678288679.5 +0.0 1678292767.1 +82.67281642186256 1678342245.2 +71.39177227780574 1678346356.6 +64.7340390898724 1678350468 +59.96913669736216 1678354579.4 +55.92776781123983 1678358690.8 +51.879044782296 1678362802.2 +46.929499051447465 1678366913.6 +38.96542224831397 1678371024.9 +21.292846948343378 1678375136.3 +0.0 1678379247.7 +82.49412271004593 1678428511.2 +71.08111382753478 1678432646.4 +64.40412724373654 1678436781.6 +59.62364852677222 1678440916.8 +55.5511269917417 1678445052 +51.43642159357069 1678449187.2 +46.348961497746146 1678453322.4 +38.0609224749985 1678457457.6 +19.411915405963608 1678461592.8 +0.0 1678465728 +82.30580230029686 1678514776.8 +70.77640500378546 1678518935.8 +64.06826577107906 1678523094.9 +59.27588780107138 1678527253.9 +55.1708091008328 1678531412.9 +50.99379840484539 1678535572 +45.770696499155754 1678539731 +37.15274563027227 1678543890 +17.502103769786537 1678548049 +0.0 1678552208.1 +82.11380481913703 1678601042 +70.45611985558207 1678605224.8 +63.73467685353246 1678609407.7 +58.92672255907068 1678613590.6 +54.79416828133466 1678617773.5 +50.551175216120086 1678621956.4 +45.186481874043686 1678626139.2 +36.232669532502705 1678630322.1 +15.555189858179599 1678634505 +0.0 1678638687.9 +81.91585771145553 1678687306.8 +70.13583470737866 1678691513.5 +63.39881538087496 1678695720.3 +58.57528476195907 1678699927 +54.413850390425765 1678704133.7 +50.11082458250569 1678708340.5 +44.602267248931625 1678712547.2 +35.30664380821146 1678716754 +13.573446226253694 1678720960.7 +0.0 1678725167.5 +81.7060113507307 1678773571.3 +69.8118724877645 1678777801.9 +63.0570042816958 1678782032.5 +58.22611951995838 1678786263.1 +54.03720957092763 1678790493.7 +49.66225176725872 1678794724.3 +44.01805262381956 1678798954.9 +34.37694101250946 1678803185.6 +11.566499571941263 1678807416.2 +0.0 1678811646.8 +81.48881084718433 1678859835.4 +69.47968808651777 1678864089.9 +62.71151611110586 1678868344.4 +57.87468172284678 1678872598.9 +53.65689168001873 1678876853.4 +49.21962857853342 1678881107.9 +43.43156544359658 1678885362.4 +33.441288590285794 1678889616.9 +9.528400268720622 1678893871.4 +0.0 1678898125.9 +81.2656607171163 1678946099.4 +69.14609916897116 1678950377.7 +62.36602794051592 1678954656.1 +57.52324392573517 1678958934.5 +53.28025086052059 1678963212.9 +48.77332831839736 1678967491.3 +42.84367374707375 1678971769.7 +32.50195909665136 1678976048.1 +7.4747246410458805 1678980326.4 +0.0 1678984604.8 +81.03061133400493 1679032363 +68.804288069792 1679036665.3 +62.02053976992599 1679040967.6 +57.16812905721281 1679045269.9 +52.8999329696117 1679049572.2 +48.33070512967205 1679053874.4 +42.253509495440014 1679058176.7 +31.55667997649526 1679062479 +5.401795617506278 1679066781.3 +0.0 1679071083.6 +80.78820780807203 1679118626.5 +68.45879989920206 1679122952.7 +61.67137452792528 1679127278.9 +56.81669126010121 1679131605 +52.52329215011356 1679135931.2 +47.88808194094675 1679140257.4 +41.663345243806276 1679144583.6 +30.607723784928396 1679148909.7 +3.328866593966676 1679153235.9 +0.0 1679157562.1 +80.52795540257414 1679204889.8 +68.1036850306797 1679209239.9 +61.31993673081368 1679213590 +56.46157639157884 1679217940 +52.142974259204664 1679222290.1 +47.44178168081069 1679226640.2 +41.07545354728345 1679230990.2 +29.656495038250625 1679235340.3 +1.2559375704270734 1679239690.4 +0.0 1679244040.5 +80.26402592566545 1679291153 +67.74857016215734 1679295526.9 +60.96849893370208 1679299900.9 +56.11013859446724 1679304274.9 +51.76038381318486 1679308648.8 +46.99915849208539 1679313022.8 +40.485289295649714 1679317396.8 +28.701589220162088 1679321770.7 +0.0 1679326144.7 +0.0 1679330518.7 +79.98452012430269 1679377416 +67.38155604059163 1679381813.9 +60.61338406517972 1679386211.7 +55.755023725944866 1679390609.6 +51.38601554879763 1679395007.4 +46.55880785847099 1679399405.3 +39.891447972605214 1679403803.2 +27.746683402073565 1679408201 +0.0 1679412598.9 +0.0 1679416996.8 +79.68943799848583 1679463679 +67.01681447413682 1679468100.7 +60.25231957013568 1679472522.5 +55.3999088574225 1679476944.2 +51.009374729299495 1679481366 +46.116184669745685 1679485787.7 +39.301283720971476 1679490209.4 +26.789505028874114 1679494631.2 +0.0 1679499052.9 +0.0 1679503474.7 +79.38472917473652 1679549941.9 +66.6401736546387 1679554387.5 +59.89125507509165 1679558833.1 +55.04479398890014 1679563278.7 +50.629056838390596 1679567724.4 +45.67356148102039 1679572170 +38.711119469337746 1679576615.6 +25.83459921078558 1679581061.3 +0.0 1679585506.9 +0.0 1679589952.5 +79.05849440001145 1679636204.7 +66.2598557637298 1679640674.2 +59.53019058004761 1679645143.7 +54.68740656526686 1679649613.2 +50.25609309030322 1679654082.7 +45.23093829229508 1679658552.2 +38.12322777281491 1679663021.7 +24.879693392697046 1679667491.2 +0.0 1679671960.7 +0.0 1679676430.2 +78.71895585594318 1679722467.6 +65.86763861977755 1679726961 +59.16544901359282 1679731454.3 +54.3322916967445 1679735947.7 +49.881724825915995 1679740441.1 +44.794264730091456 1679744934.4 +37.53306352118118 1679749427.8 +23.924787574608512 1679753921.1 +0.0 1679758414.5 +0.0 1679762907.8 +78.35789136089916 1679808730.6 +65.47542147582533 1679813247.8 +58.80438451854879 1679817765 +53.9808538996329 1679822282.2 +49.50508400641786 1679826799.4 +44.357591167887826 1679831316.6 +36.94289926954743 1679835833.8 +22.96988175651998 1679840351 +0.0 1679844868.2 +0.0 1679849385.4 +77.97757346999026 1679894993.6 +65.07585018905155 1679899534.6 +58.433693325572314 1679904075.6 +53.62573903111053 1679908616.6 +49.128443186919725 1679913157.7 +43.92091760568419 1679917698.7 +36.358684644435364 1679922239.7 +22.018653009842208 1679926780.8 +0.0 1679931321.8 +0.0 1679935862.8 +77.57572962810559 1679981256.7 +64.66805672064523 1679985821.5 +58.06667920400661 1679990386.3 +53.27062416258816 1679994951.2 +48.75775199394326 1679999516 +43.48424404348055 1680004080.8 +35.77447001932331 1680008645.7 +21.067424263164437 1680013210.5 +0.0 1680017775.4 +0.0 1680022340.2 +77.14868276383437 1680067519.9 +64.25658618082812 1680072108.5 +57.695988011030146 1680076697.1 +52.9155092940658 1680081285.8 +48.387060800966786 1680085874.4 +43.051247552687684 1680090463 +35.190255394211235 1680095051.6 +20.118468071597572 1680099640.3 +0.0 1680104228.9 +0.0 1680108817.5 +76.69643287717665 1680153783.3 +63.83916601448935 1680158395.7 +57.32161974664292 1680163008 +52.55812187043253 1680167620.4 +48.016369607990335 1680172232.8 +42.61457399048405 1680176845.2 +34.60604076909917 1680181457.6 +19.17913857796314 1680186070 +0.0 1680190682.4 +0.0 1680195294.8 +76.21897996813239 1680240046.8 +63.41439170532906 1680244683 +56.948655998555544 1680249319.1 +52.208956628431835 1680253955.2 +47.64935548642462 1680258591.4 +42.18752712621285 1680263227.5 +34.02550321539787 1680267863.7 +18.2375365292178 1680272499.8 +0.0 1680277136 +0.0 1680281772.1 +75.70669733876915 1680326310.6 +62.98139521453619 1680330970.5 +56.57428773416831 1680335630.3 +51.85384175990947 1680340290.2 +47.27866429344816 1680344950.1 +41.75680319053089 1680349609.9 +33.44723821680747 1680354269.8 +17.304156662105036 1680358929.6 +0.0 1680363589.5 +0.0 1680368249.3 +75.16693913190846 1680412574.7 +62.538772025810886 1680417258.2 +56.19764691467017 1680421941.7 +51.502403962797864 1680426625.3 +46.91392272699336 1680431308.8 +41.329756326259684 1680435992.4 +32.86897321821707 1680440675.9 +16.372181311292135 1680445359.5 +0.0 1680450043 +0.0 1680454726.6 +74.58272450679641 1680498839 +62.096148837085586 1680503546.2 +55.817329023761275 1680508253.4 +51.150966165686256 1680512960.6 +46.55285823194932 1680517667.8 +40.90638653339924 1680522375 +32.29438529103743 1680527082.2 +15.448428142111798 1680531789.4 +0.0 1680536496.6 +0.0 1680541203.8 +73.96735723277615 1680585103.6 +61.640221879017076 1680589834.4 +55.44068820426313 1680594565.3 +50.79585129716389 1680599296.1 +46.18584411038362 1680604026.9 +40.485289295649714 1680608757.7 +31.725746990379466 1680613488.6 +14.534301670863904 1680618219.4 +0.0 1680622950.2 +0.0 1680627681.1 +73.31121061191524 1680671368.6 +61.18202236583769 1680676123 +55.06037031335424 1680680877.4 +50.450363126573954 1680685631.8 +45.82705217045049 1680690386.2 +40.06419205790018 1680695140.7 +31.154836134610594 1680699895.1 +13.62385227102676 1680704649.5 +0.0 1680709403.9 +0.0 1680714158.3 +72.61060757280295 1680757633.9 +60.71419615472585 1680762411.9 +54.67777986733443 1680767189.9 +50.098925329462354 1680771967.8 +45.46598767540645 1680776745.8 +39.646771891561414 1680781523.7 +30.586197833952628 1680786301.7 +12.719352497711295 1680791079.7 +0.0 1680795857.6 +0.0 1680800635.6 +71.86922518685 1680843899.7 +60.23674324568158 1680848701.2 +54.29746197642554 1680853502.6 +49.74976008746166 1680858304.1 +45.108600251773176 1680863105.6 +39.22935172522264 1680867907 +30.027186231227095 1680872708.5 +11.830429048849927 1680877510 +0.0 1680882311.4 +0.0 1680887112.9 +71.077436756124 1680930165.9 +59.75561326522655 1680934990.8 +53.91119445899497 1680939815.8 +49.40427191687172 1680944640.7 +44.75348538325082 1680949465.6 +38.81420411399478 1680954290.5 +29.468174628501554 1680959115.5 +10.94150559998856 1680963940.4 +0.0 1680968765.3 +0.0 1680973590.2 +70.24259642344647 1681016432.6 +59.266261103138945 1681021280.9 +53.52860401297516 1681026129.3 +49.05878374628179 1681030977.6 +44.40204758613922 1681035825.9 +38.40641064558844 1681040674.3 +28.90916302577602 1681045522.6 +10.062208849059626 1681050371 +0.0 1681055219.3 +0.0 1681060067.6 +69.36329967251753 1681102699.7 +58.76955479822981 1681107571.4 +53.144609050655504 1681112443.2 +48.713295575691866 1681117314.9 +44.052882344138524 1681122186.6 +37.994940105771335 1681127058.3 +28.35977812098292 1681131930 +9.19253879606312 1681136801.7 +0.0 1681141673.4 +0.0 1681146545.1 +68.44322357474796 1681188967.5 +58.264626311688104 1681193862.5 +52.758341533224936 1681198757.5 +48.36780740510192 1681203652.5 +43.701444547026924 1681208547.5 +37.593096263886665 1681213442.5 +27.812665771300722 1681218337.5 +8.334767996109957 1681223232.5 +0.0 1681228127.5 +0.0 1681233022.5 +67.48464068524866 1681275235.7 +57.75234368232488 1681280154 +52.37207401579437 1681285072.3 +48.02599630592276 1681289990.5 +43.35595637643698 1681294908.8 +37.19352497711291 1681299827 +27.266957937918388 1681304745.3 +7.484351338978311 1681309663.5 +0.0 1681314581.8 +0.0 1681319500.1 +66.49858221825193 1681361504.6 +57.23411142643998 1681366446.1 +51.9858064983638 1681371387.5 +47.68645776185449 1681376329 +43.01046820584705 1681381270.4 +36.79168113522824 1681386211.9 +26.729472286168622 1681391153.3 +6.648106490000919 1681396094.7 +0.0 1681401036.2 +0.0 1681405977.6 +65.481371102347 1681447774.2 +56.7099295440334 1681452738.7 +51.593589354411556 1681457703.3 +47.34464666267532 1681462667.9 +42.670929661778786 1681467632.4 +36.399463991276 1681472597 +26.189714079307944 1681477561.6 +5.819215783845049 1681482526.1 +0.0 1681487490.7 +0.0 1681492455.3 +64.43895696405552 1681534044.4 +56.1761209636944 1681539032 +51.207321836980995 1681544019.6 +47.01105774512873 1681549007.2 +42.33506818912128 1681553994.8 +36.00356977591301 1681558982.5 +25.661855125490614 1681563970.1 +4.999951775621609 1681568957.7 +0.0 1681573945.3 +0.0 1681578932.9 +63.383239056420855 1681620315.3 +55.63268568542297 1681625325.9 +50.82105431955043 1681630336.5 +46.67519627247122 1681635347.1 +41.99552964505302 1681640357.7 +35.61730225848245 1681645368.3 +25.13399617167328 1681650378.9 +4.192587020441509 1681655389.5 +0.0 1681660400.1 +0.0 1681665410.7 +62.30967226922119 1681706586.9 +55.08557333574077 1681711620.4 +50.43478680211985 1681716654 +46.33933479981372 1681721687.5 +41.663345243806276 1681726721 +35.231034741051865 1681731754.5 +24.60981428926671 1681736788 +3.4007985897155137 1681741821.5 +0.0 1681746855 +0.0 1681751888.5 +61.22280171267832 1681792859.4 +54.530238804426 1681797915.7 +50.04484221327853 1681802972 +46.00942295367789 1681808028.4 +41.33343339767044 1681813084.7 +34.85071685014298 1681818141 +24.09753165990348 1681823197.3 +2.6126872304002764 1681828253.6 +0.0 1681833310 +0.0 1681838366.3 +60.120354831681354 1681879132.6 +53.9675501302897 1681884211.7 +49.65857469584796 1681889290.8 +45.679511107542055 1681894369.8 +41.00352155153462 1681899448.9 +34.47407603064483 1681904527.9 +23.582976475429344 1681909607 +1.8401521955391407 1681914686 +0.0 1681919765.1 +0.0 1681924844.2 +59.00233162623027 1681965406.8 +53.39663927452083 1681970508.5 +49.27230717841739 1681975610.2 +45.35327633281698 1681980711.9 +40.68323640333121 1681985813.6 +34.0974352111467 1681990915.3 +23.07664347258778 1681996017 +1.0831934851321066 1682001118.7 +0.0 1682006220.4 +0.0 1682011322.1 +57.86505502491435 1682051681.8 +52.81837427593043 1682056806 +48.88603966098683 1682061930.3 +45.02931411320282 1682067054.5 +40.35927418371705 1682072178.8 +33.726744018170244 1682077303 +22.57766461256774 1682082427.3 +0.3299118461358324 1682087551.5 +0.0 1682092675.7 +0.0 1682097800 +56.70625247262264 1682137957.7 +52.24010927734004 1682143104.4 +48.49977214355625 1682148251.1 +44.709028964999426 1682153397.8 +40.04266610692441 1682158544.5 +33.36200245171544 1682163691.2 +22.078685752547706 1682168837.9 +0.0 1682173984.6 +0.0 1682179131.3 +0.0 1682184278 +55.53187359587683 1682224234.6 +51.649945025706295 1682229403.6 +48.11350462612569 1682234572.7 +44.38874381679602 1682239741.7 +39.72833058524268 1682244910.7 +32.99498833014973 1682250079.8 +21.591606145571003 1682255248.8 +0.0 1682260417.8 +0.0 1682265586.9 +0.0 1682270755.9 +55.359129510581866 1682310512.5 +51.05015407614013 1682315703.8 +47.72723710869512 1682320895 +44.068458668592626 1682326086.3 +39.41399506356095 1682331277.6 +32.63987346162737 1682336468.8 +21.10820361000507 1682341660.1 +0.0 1682346851.4 +0.0 1682352042.6 +0.0 1682357233.9 +53.1290327262014 1682396791.4 +50.444413500052285 1682402004.8 +47.34464666267532 1682407218.2 +43.75780021832166 1682412431.6 +39.10928623981165 1682417645 +32.28248603799409 1682422858.3 +20.62707362955004 1682428071.7 +0.0 1682433285.1 +0.0 1682438498.5 +0.0 1682443711.8 +51.892348551639195 1682483071.5 +49.84094547907536 1682488306.9 +46.96432877176643 1682493542.2 +43.44346469663992 1682498777.6 +38.802304860951445 1682504012.9 +31.933320795993396 1682509248.3 +20.153297791916536 1682514483.7 +0.0 1682519719 +0.0 1682524954.4 +0.0 1682530189.8 +50.64236060773379 1682569352.7 +49.22557820505509 1682574609.9 +46.57806125433585 1682579867.1 +43.13280624636895 1682585124.3 +38.503545663723806 1682590381.5 +31.58783262540346 1682595638.8 +19.69142120732637 1682600896 +0.0 1682606153.2 +0.0 1682611410.4 +0.0 1682616667.6 +47.96596356321726 1682655635 +48.60653385962405 1682660913.9 +46.20142043483772 1682666192.9 +42.82809742261965 1682671471.8 +38.20251391138527 1682676750.8 +31.246021526224293 1682682029.7 +19.229544622736203 1682687308.7 +0.0 1682692587.6 +0.0 1682697866.5 +0.0 1682703145.5 +48.07272527928505 1682741918.6 +47.9755902611497 1682747219.1 +45.82110254392882 1682752519.6 +42.523388598870355 1682757820.1 +37.90970434067931 1682763120.6 +30.912432608677697 1682768421.1 +18.77729473607847 1682773721.7 +0.0 1682779022.2 +0.0 1682784322.7 +0.0 1682789623.2 +46.75080533963082 1682828203.4 +47.35059628919699 1682833525.3 +45.444461724430674 1682838847.3 +42.22235684653181 1682844169.2 +37.618299286273206 1682849491.1 +30.580248207430955 1682854813.1 +18.3287219208315 1682860135 +0.0 1682865457 +0.0 1682870778.9 +0.0 1682876100.9 +44.73423198738596 1682914489.5 +46.715975619311855 1682919832.7 +45.073770531454215 1682925175.9 +41.929547275825854 1682930519.1 +37.33511641349967 1682935862.3 +30.250336361295123 1682941205.5 +17.888371287217105 1682946548.8 +0.0 1682951892 +0.0 1682957235.2 +0.0 1682962578.4 +40.32812153480885 1683000776.9 +46.075405322905056 1683006141.2 +44.69712971195609 1683011505.6 +41.634465150008985 1683016869.9 +37.049660985615226 1683022234.2 +29.930051213091723 1683027598.5 +17.455374796424234 1683032962.8 +0.0 1683038327.2 +0.0 1683043691.5 +0.0 1683049055.8 +42.65535333732469 1683087065.7 +45.43483502649825 1683092451 +44.33238814550129 1683097836.3 +41.34306009560288 1683103221.5 +36.77610481077414 1683108606.8 +29.609766064888323 1683113992 +17.028327932153037 1683119377.3 +0.0 1683124762.5 +0.0 1683130147.8 +0.0 1683135533 +35.297017110279036 1683173356 +44.794264730091456 1683178762 +43.96169695252482 1683184168 +41.05987722282935 1683189574 +36.50027608082213 1683194980 +29.301380169728258 1683200386 +16.607230694403505 1683205792.1 +0.0 1683211198.1 +0.0 1683216604.1 +0.0 1683222010.1 +29.77883307877253 1683259647.7 +44.14406773575222 1683265074.3 +43.600632457480785 1683270500.9 +40.774421794944914 1683275927.5 +36.232669532502705 1683281354 +28.99072171945729 1683286780.6 +16.1957601545864 1683292207.2 +0.0 1683297633.8 +0.0 1683303060.3 +0.0 1683308486.9 +32.6495001595598 1683345941 +43.49754781282375 1683351387.9 +43.23361833591508 1683356834.9 +40.50086562010381 1683362281.8 +35.96279042907237 1683367728.8 +28.686012895707986 1683373175.7 +15.787966686180061 1683378622.6 +0.0 1683384069.6 +0.0 1683389516.5 +0.0 1683394963.5 +31.785779733084965 1683432235.8 +42.847350818484514 1683437702.9 +42.87850346739272 1683443170 +40.225036890151806 1683448637.1 +35.702538023574476 1683454104.2 +28.39093076989112 1683459571.3 +15.388395399406301 1683465038.5 +0.0 1683470505.6 +0.0 1683475972.7 +0.0 1683481439.8 +25.331943279354782 1683518532.3 +42.19715382414528 1683524019.3 +42.523388598870355 1683529506.4 +39.95148071531071 1683534993.4 +35.44455817318747 1683540480.5 +28.101798270595918 1683545967.5 +14.996178255454064 1683551454.6 +0.0 1683556941.6 +0.0 1683562428.7 +0.0 1683567915.7 +18.1463511376041 1683604830.4 +41.54695682980604 1683610337.2 +42.168273730347984 1683615843.9 +39.687551238402044 1683621350.7 +35.1962050207329 1683626857.5 +27.812665771300722 1683632364.3 +14.615860364545169 1683637871 +0.0 1683643377.8 +0.0 1683648884.6 +0.0 1683654391.4 +0.0 1683691130.2 +40.89675983546681 1683696656.5 +41.82278555975806 1683702182.8 +39.42362176149338 1683707709 +34.94557931316743 1683713235.3 +27.53315996993796 1683718761.5 +14.23921954504703 1683724287.8 +0.0 1683729814.1 +0.0 1683735340.3 +0.0 1683740866.6 +0.0 1683777431.8 +40.24656284112758 1683782977.3 +41.47729738916812 1683788522.8 +39.16336935599548 1683794068.3 +34.703175787234535 1683799613.9 +27.253654168575196 1683805159.4 +13.868528352070564 1683810704.9 +0.0 1683816250.4 +0.0 1683821795.9 +0.0 1683827341.4 +0.0 1683863735.2 +39.60004291819911 1683869299.7 +41.13548628998895 1683874864.2 +38.915016203540915 1683880428.7 +34.46812640412316 1683885993.2 +26.983775065144858 1683891557.7 +13.507463857026528 1683897122.3 +0.0 1683902686.8 +0.0 1683908251.3 +0.0 1683913815.8 +0.0 1683950040.5 +38.95579555038154 1683955623.7 +40.79962481733145 1683961206.9 +38.660713424564676 1683966790.2 +34.23534957612271 1683972373.4 +26.719845588236183 1683977956.7 +13.152348988504164 1683983539.9 +0.0 1683989123.1 +0.0 1683994706.4 +0.0 1684000289.6 +0.0 1684036347.6 +38.31522525397474 1684041949.3 +40.469712971195605 1684047551 +38.42198697004254 1684053152.7 +34.006249819533004 1684058754.4 +26.45959318273828 1684064356.1 +12.806860817914234 1684069957.8 +0.0 1684075559.5 +0.0 1684081161.2 +0.0 1684086762.9 +0.0 1684122656.8 +37.68060458408961 1684128276.6 +40.139801125059776 1684133896.5 +38.17731088899873 1684139516.4 +33.783099689464976 1684145136.3 +26.211240030283715 1684150756.1 +12.47099934525673 1684156376 +0.0 1684161995.9 +0.0 1684167615.8 +0.0 1684173235.6 +0.0 1684208967.9 +37.04598391420447 1684214605.7 +39.81951597685638 1684220243.4 +37.94453406099827 1684225881.2 +33.5636266308077 1684231518.9 +25.96288687782915 1684237156.7 +12.141087499120898 1684242794.4 +0.0 1684248432.2 +0.0 1684254070 +0.0 1684259707.7 +0.0 1684295281.1 +36.42098994225177 1684300936.4 +39.505180455174646 1684306591.8 +37.71543430440857 1684312247.1 +33.3501031986721 1684317902.4 +25.718210796785346 1684323557.8 +11.814852724395825 1684329213.1 +0.0 1684334868.4 +0.0 1684340523.8 +0.0 1684346179.1 +0.0 1684381596.4 +35.79967304170984 1684387269 +39.19452200490368 1684392941.6 +37.49228417434054 1684398614.2 +33.14252939305817 1684404286.8 +25.485433968784886 1684409959.4 +11.504194274124856 1684415632 +0.0 1684421304.6 +0.0 1684426977.2 +0.0 1684432649.8 +0.0 1684467913.8 +35.18430576768956 1684473603.4 +38.88981318115438 1684479292.9 +37.2691340442725 1684484982.5 +32.938632658855 1684490672 +25.256334212195185 1684496361.5 +11.199485450375555 1684502051.1 +0.0 1684507740.6 +0.0 1684513430.1 +0.0 1684519119.7 +0.0 1684554233.5 +34.58083774671264 1684559939.6 +38.588781428815835 1684565645.8 +37.0556106121369 1684571351.9 +32.74068555117349 1684577058 +25.03318408212715 1684582764.2 +10.900726253147928 1684588470.3 +0.0 1684594176.4 +0.0 1684599882.6 +0.0 1684605588.7 +0.0 1684640555.4 +33.98104679714647 1684646277.8 +38.29597185810987 1684652000.2 +36.84576425141207 1684657722.6 +32.54868807001367 1684663445 +24.81371102346988 1684669167.3 +10.611593753852729 1684674889.7 +0.0 1684680612.1 +0.0 1684686334.5 +0.0 1684692056.9 +0.0 1684726879.7 +33.39088254551273 1684732617.9 +38.00456680370377 1684738356.2 +36.6441400723198 1684744094.5 +32.36404473167536 1684749832.7 +24.60613721785595 1684755571 +10.332087952489962 1684761309.3 +0.0 1684767047.5 +0.0 1684772785.8 +0.0 1684778524.1 +0.0 1684813206.3 +32.81261754692233 1684818960.1 +37.725061002341 1684824713.8 +36.44619296463831 1684830467.6 +32.181673948447965 1684836221.4 +24.40224048365278 1684841975.2 +10.062208849059626 1684847728.9 +0.0 1684853482.7 +0.0 1684859236.5 +0.0 1684864990.3 +0.0 1684899535.3 +32.24397924626437 1684905304.2 +37.4515048274999 1684911073.1 +36.25192292836756 1684916842 +32.00892986315299 1684922610.9 +24.20429337597128 1684928379.8 +9.79827937215096 1684934148.7 +0.0 1684939917.6 +0.0 1684945686.5 +0.0 1684951455.4 +0.0 1684985866.7 +31.684967643538833 1684991650.4 +37.18757535059124 1684997434 +36.0636025186185 1685003217.7 +31.836185777858027 1685009001.3 +24.010023339700545 1685014784.9 +9.543976593174724 1685020568.6 +0.0 1685026352.2 +0.0 1685032135.9 +0.0 1685037919.5 +0.0 1685072200.7 +31.139259810156492 1685077998.7 +36.92732294509333 1685083796.6 +35.887181361912766 1685089594.6 +31.673068390495494 1685095392.6 +23.827652556473147 1685101190.5 +9.29562344072016 1685106988.5 +0.0 1685112786.5 +0.0 1685118584.4 +0.0 1685124382.4 +0.0 1685158537.2 +30.607723784928396 1685164349.1 +36.6730201661171 1685170160.9 +35.708487650096146 1685175972.8 +31.512223558243864 1685181784.7 +23.648958844656505 1685187596.6 +9.06057405760879 1685193408.4 +0.0 1685199220.3 +0.0 1685205032.2 +0.0 1685210844.1 +0.0 1685244876.3 +30.093168600454256 1685250701.6 +36.430616640184205 1685256527 +35.541693191322835 1685262352.3 +31.358732868813764 1685268177.7 +23.476214759361543 1685274003 +8.831474301019083 1685279828.4 +0.0 1685285653.7 +0.0 1685291479.1 +0.0 1685297304.4 +0.0 1685331218 +29.584563042501788 1685337056.4 +36.19189018566207 1685342894.8 +35.378575803960295 1685348733.2 +31.21119180590533 1685354571.6 +23.315369927109916 1685360409.9 +8.614273797472723 1685366248.3 +0.0 1685372086.7 +0.0 1685377925.1 +0.0 1685383763.5 +0.0 1685417562.4 +29.09748343552509 1685423413.4 +35.96279042907237 1685429264.4 +35.22140804311943 1685435115.3 +31.073277440929328 1685440966.3 +23.15592961115814 1685446817.3 +8.404427436747882 1685452668.2 +0.0 1685458519.2 +0.0 1685464370.1 +0.0 1685470221.1 +0.0 1685503909.6 +28.62003052648082 1685509772.7 +35.743317370415106 1685515635.7 +35.073866980210994 1685521498.8 +30.93763563106423 1685527361.9 +23.004711476838942 1685533225 +8.202803257655622 1685539088 +0.0 1685544951.1 +0.0 1685550814.2 +0.0 1685556677.3 +0.0 1685590259.5 +28.167780639823086 1685596134.2 +35.5297939382795 1685602008.9 +34.92632591730258 1685607883.6 +30.805670892609896 1685613758.4 +22.857170413930508 1685619633.1 +8.014482847906555 1685625507.8 +0.0 1685631382.5 +0.0 1685637257.2 +0.0 1685643131.9 +0.0 1685676612.2 +27.725157451097793 1685682498.1 +35.32816975918723 1685688383.9 +34.78841155232656 1685694269.8 +30.683332852087993 1685700155.7 +22.71925604895451 1685706041.5 +7.832112064679156 1685711927.4 +0.0 1685717813.3 +0.0 1685723699.1 +0.0 1685729585 +0.0 1685762967.7 +27.304060213348258 1685768864.3 +35.13389972291649 1685774760.8 +34.6623964403939 1685780657.3 +30.566944438087763 1685786553.8 +22.587291310500174 1685792450.4 +7.657095424273279 1685798346.9 +0.0 1685804243.4 +0.0 1685810139.9 +0.0 1685816036.5 +0.0 1685849326.1 +26.896266744941922 1685855232.8 +34.9515289396891 1685861139.5 +34.53410877335033 1685867046.2 +30.454233095498296 1685872952.8 +22.46495326997827 1685878859.5 +7.4903009654999835 1685884766.2 +0.0 1685890672.9 +0.0 1685896579.5 +0.0 1685902486.2 +0.0 1685935687.5 +26.509999227511354 1685941603.8 +34.77283522787246 1685947520.1 +34.4177203593501 1685953436.4 +30.353421005952164 1685959352.7 +22.34856485597804 1685965269 +7.339082831180788 1685971185.3 +0.0 1685977101.6 +0.0 1685983017.9 +0.0 1685988934.2 +0.0 1686022051.7 +26.14525766105655 1686027977.1 +34.60604076909917 1686033902.5 +34.305009016760636 1686039827.9 +30.250336361295123 1686045753.3 +22.23812606849948 1686051678.7 +7.191541768272353 1686057604.2 +0.0 1686063529.6 +0.0 1686069455 +0.0 1686075380.4 +0.0 1686108418.9 +25.799769490466613 1686114352.9 +34.45255007966907 1686120286.9 +34.204196927214504 1686126220.9 +30.159150969681424 1686132154.8 +22.13504142384244 1686138088.8 +7.05957702981802 1686144022.8 +0.0 1686149956.8 +0.0 1686155890.7 +0.0 1686161824.7 +0.0 1686194789.1 +25.469857644330784 1686200731.1 +34.305009016760636 1686206673.1 +34.10338483766837 1686212615.1 +30.073915204589397 1686218557.1 +22.04017896081798 1686224499.1 +6.931289362774448 1686230441.1 +0.0 1686236383.1 +0.0 1686242325.1 +0.0 1686248267.1 +0.0 1686281162.3 +25.165148820581486 1686287111.8 +34.16936720689554 1686293061.3 +34.015876517465436 1686299010.7 +29.992356510908127 1686304960.2 +21.95267064061504 1686310909.7 +6.814900948774215 1686316859.1 +0.0 1686322808.6 +0.0 1686328758.1 +0.0 1686334707.5 +0.0 1686367538.6 +24.87969339269705 1686373495 +34.04107953985197 1686379451.3 +33.9306407523734 1686385407.7 +29.92042451515929 1686391364.1 +21.867434875523013 1686397320.5 +6.708139232706415 1686403276.8 +0.0 1686409233.2 +0.0 1686415189.6 +0.0 1686421146 +0.0 1686453917.9 +24.61944098719914 1686459880.6 +33.92469112585173 1686465843.3 +33.8527591301029 1686471806 +29.854442145932126 1686477768.7 +21.795502879774176 1686483731.4 +6.607327143160285 1686489694.2 +0.0 1686495656.9 +0.0 1686501619.6 +0.0 1686507582.3 +0.0 1686540300.2 +24.380714532677008 1686546268.7 +33.817929409783936 1686552237.2 +33.783099689464976 1686558205.7 +29.788459776704958 1686564174.1 +21.729520510547008 1686570142.6 +6.5198188229573475 1686576111.1 +0.0 1686582079.6 +0.0 1686588048.1 +0.0 1686594016.5 +0.0 1686626685.6 +24.163514029130646 1686632659.3 +33.72079439164857 1686638633 +33.72079439164857 1686644606.6 +29.738053731931892 1686650580.3 +21.667215212730603 1686656554 +6.444209755797751 1686662527.6 +0.0 1686668501.3 +0.0 1686674474.9 +0.0 1686680448.6 +0.0 1686713074.1 +23.96924399285991 1686719052.4 +33.63555862655654 1686725030.7 +33.66671127546474 1686731008.9 +29.687647687158826 1686736987.2 +21.613132096546778 1686742965.4 +6.372277760048915 1686748943.7 +0.0 1686754921.9 +0.0 1686760900.2 +0.0 1686766878.5 +0.0 1686799465.7 +23.802449534086612 1686805448 +33.5636266308077 1686811430.2 +33.619982302102436 1686817412.5 +29.646868340318193 1686823394.8 +21.566403123184475 1686829377 +6.312245017343417 1686835359.3 +0.0 1686841341.5 +0.0 1686847323.8 +0.0 1686853306.1 +0.0 1686885860.4 +23.65490847117818 1686891846.1 +33.497644261580525 1686897831.7 +33.5792029552618 1686903817.4 +29.609766064888323 1686909803.1 +21.53157340286551 1686915788.7 +6.265516043981114 1686921774.4 +0.0 1686927760.1 +0.0 1686933745.7 +0.0 1686939731.4 +0.0 1686972258.1 +23.53257043065628 1686978246.6 +33.44723821680747 1686984235.1 +33.54437323494283 1686990223.6 +29.58088597109103 1686996212 +21.500420753957304 1687002200.5 +6.22473669714048 1687008189 +0.0 1687014177.4 +0.0 1687020165.9 +0.0 1687026154.4 +0.0 1687058659 +23.43543541252091 1687064649.6 +33.40645886996683 1687070640.3 +33.519170212556304 1687076631 +29.559360020115253 1687082621.7 +21.475217731570773 1687088612.3 +6.195856603343185 1687094603 +0.0 1687100593.7 +0.0 1687106584.4 +0.0 1687112575 +0.0 1687145062.8 +23.36577597188298 1687151055.1 +33.371629149647866 1687157047.4 +33.497644261580525 1687163039.7 +29.543783695661155 1687169031.9 +21.459641407116674 1687175024.2 +6.174330652367414 1687181016.5 +0.0 1687187008.7 +0.0 1687193001 +0.0 1687198993.3 +0.0 1687231469.8 +23.315369927109916 1687237463 +33.3501031986721 1687243456.3 +33.4880175636481 1687249449.5 +29.534156997728722 1687255442.8 +21.450014709184238 1687261436.1 +6.164703954434982 1687267429.3 +0.0 1687273422.6 +0.0 1687279415.9 +0.0 1687285409.1 +0.0 1687317879.7 +23.290166904723385 1687323873.4 +33.34047650073967 1687329867 +33.47839086571567 1687335860.7 +29.530479926317962 1687341854.3 +21.44406508266257 1687347847.9 +6.158754327913312 1687353841.6 +0.0 1687359835.2 +0.0 1687365828.9 +0.0 1687371822.5 +0.0 1687404292.7 +23.29384397613415 1687410286.1 +33.34642612726134 1687416279.5 +33.48206793712643 1687422272.9 +29.534156997728722 1687428266.4 +21.453691780595 1687434259.8 +6.1683810258457425 1687440253.2 +0.0 1687446246.6 +0.0 1687452240 +0.0 1687458233.5 +0.0 1687490708.6 +23.31904699852068 1687496701.2 +33.35605282519377 1687502693.8 +33.49396719016977 1687508686.4 +29.543783695661155 1687514679 +21.465591033638344 1687520671.6 +6.189906976821515 1687526664.1 +0.0 1687532656.7 +0.0 1687538649.3 +0.0 1687544641.9 +0.0 1687577127.6 +23.369453043293742 1687583118.7 +33.381255847580306 1687589109.8 +33.507270959512965 1687595101 +29.559360020115253 1687601092.1 +21.484844429503205 1687607083.3 +6.215109999208049 1687613074.4 +0.0 1687619065.6 +0.0 1687625056.7 +0.0 1687631047.8 +0.0 1687663549.4 +23.44138503904258 1687669538.5 +33.416085567899266 1687675527.6 +33.534746537010406 1687681516.7 +29.58088597109103 1687687505.8 +21.510047451889736 1687693494.9 +6.255889346048683 1687699484 +0.0 1687705473.1 +0.0 1687711462.2 +0.0 1687717451.3 +0.0 1687749974.1 +23.54219712858871 1687755960.6 +33.462814541261565 1687761947 +33.5636266308077 1687767933.5 +29.609766064888323 1687773919.9 +21.547149727319614 1687779906.4 +6.300345764300077 1687785892.8 +0.0 1687791879.3 +0.0 1687797865.7 +0.0 1687803852.2 +0.0 1687836401.7 +23.664535169110607 1687842384.9 +33.519170212556304 1687848368.1 +33.60072890623757 1687854351.3 +29.646868340318193 1687860334.5 +21.587929074160247 1687866317.7 +6.356701435594813 1687872300.9 +0.0 1687878284.1 +0.0 1687884267.3 +0.0 1687890250.5 +0.0 1687922832.1 +23.81207623201904 1687928811.5 +33.58515258178347 1687934790.8 +33.64518532448897 1687940770.2 +29.687647687158826 1687946749.6 +21.63238549241164 1687952728.9 +6.42268380482198 1687958708.3 +0.0 1687964687.6 +0.0 1687970667 +0.0 1687976646.4 +0.0 1688009265.3 +23.98482031731401 1688015240.2 +33.66076164894307 1688021215.1 +33.70154099578371 1688027190.1 +29.738053731931892 1688033165 +21.688741163706375 1688039139.9 +6.500565427092485 1688045114.9 +0.0 1688051089.8 +0.0 1688057064.7 +0.0 1688063039.7 +0.0 1688095701.2 +24.179090353584748 1688101671.1 +33.751947040556765 1688107641 +33.7615737384892 1688113610.9 +29.794409403226627 1688119580.8 +21.754723532933543 1688125550.7 +6.585801192184514 1688131520.7 +0.0 1688137490.6 +0.0 1688143460.5 +0.0 1688149430.4 +0.0 1688182139.7 +24.39629085713111 1688188104 +33.84908205869214 1688194068.4 +33.82755610771637 1688200032.7 +29.854442145932126 1688205997 +21.820705902160707 1688211961.3 +6.676986583798212 1688217925.6 +0.0 1688223890 +0.0 1688229854.3 +0.0 1688235818.6 +0.0 1688268580.9 +24.635017311653247 1688274539 +33.955843774759934 1688280497.2 +33.8994881034652 1688286455.3 +29.92042451515929 1688292413.5 +21.896314969320304 1688298371.7 +6.7800712284552525 1688304329.8 +0.0 1688310288 +0.0 1688316246.1 +0.0 1688322204.3 +0.0 1688355024.6 +24.89894678856191 1688360976 +34.078181815281845 1688366927.5 +33.98104679714647 1688372878.9 +29.992356510908127 1688378830.3 +21.983823289523244 1688384781.7 +6.896459642455484 1688390733.1 +0.0 1688396684.6 +0.0 1688402636 +0.0 1688408587.4 +0.0 1688441470.9 +25.184402216446347 1688447415 +34.204196927214504 1688453359.1 +34.072232188760175 1688459303.3 +30.073915204589397 1688465247.4 +22.075008681136943 1688471191.5 +7.018797682977386 1688477135.6 +0.0 1688483079.8 +0.0 1688489023.9 +0.0 1688494968 +0.0 1688527919.5 +25.48911104019565 1688533855.8 +34.345788363601265 1688539792.1 +34.16341758037387 1688545728.4 +30.159150969681424 1688551664.7 +22.172143699272315 1688557601 +7.150762421431719 1688563537.3 +0.0 1688569473.6 +0.0 1688575409.9 +0.0 1688581346.2 +0.0 1688614370.6 +25.81534581492072 1688620298.5 +34.493329426509696 1688626226.4 +34.26650222503091 1688632154.3 +30.250336361295123 1688638082.3 +22.278905415340112 1688644010.2 +7.292353857818484 1688649938.1 +0.0 1688655866 +0.0 1688661793.9 +0.0 1688667721.8 +0.0 1688700824 +26.164511056921413 1688706743 +34.65644681387223 1688712662 +34.3709913859878 1688718581 +30.347471379430495 1688724500 +22.389344202818677 1688730419 +7.439894920726918 1688736338 +0.0 1688742257 +0.0 1688748176 +0.0 1688754095 +0.0 1688787279.7 +26.531525178487122 1688793189.2 +34.82551382775644 1688799098.8 +34.48965235509893 1688805008.3 +30.454233095498292 1688810917.9 +22.505732616818907 1688816827.5 +7.597062681567783 1688822737 +0.0 1688828646.6 +0.0 1688834556.2 +0.0 1688840465.7 +0.0 1688873737.5 +26.91779269591769 1688879637.1 +35.00193498446216 1688885536.7 +34.611990395620836 1688891436.3 +30.560994811566093 1688897336 +22.634020283862473 1688903235.6 +7.76980676686275 1688909135.2 +0.0 1688915034.8 +0.0 1688920934.4 +0.0 1688926834 +0.0 1688960197.5 +27.323313609213123 1688966086.6 +35.190255394211235 1688971975.8 +34.738005507553495 1688977864.9 +30.677383225566327 1688983754.1 +22.765985022316812 1688989643.3 +7.9425508521577175 1688995532.4 +0.0 1689001421.6 +0.0 1689007310.8 +0.0 1689013199.9 +0.0 1689046659.5 +27.746683402073565 1689052537.7 +35.38820250189273 1689058415.9 +34.86997024600783 1689064294.1 +30.799721266088227 1689070172.4 +22.903899387292814 1689076050.6 +8.130871261906785 1689081928.8 +0.0 1689087807 +0.0 1689093685.2 +0.0 1689099563.5 +0.0 1689133123.5 +28.18703403568795 1689138990.3 +35.59209923609591 1689144857.1 +35.01156168239459 1689150723.9 +30.93168600454256 1689156590.7 +23.04549082367958 1689162457.4 +8.322868743066614 1689168324.2 +0.0 1689174191 +0.0 1689180057.8 +0.0 1689185924.6 +0.0 1689219589.4 +28.645233548867353 1689225444.3 +35.80562266823151 1689231299.2 +35.15910274530303 1689237154.1 +31.063650742996895 1689243009 +23.196708957998776 1689248863.9 +8.526765477269782 1689254718.8 +0.0 1689260573.7 +0.0 1689266428.6 +0.0 1689272283.5 +0.0 1689306057.2 +29.122686457911623 1689311899.7 +36.02877279829954 1689317742.3 +35.31259343473313 1689323584.8 +31.205242179383657 1689329427.3 +23.35614927395055 1689335269.9 +8.740288909405384 1689341112.4 +0.0 1689346955 +0.0 1689352797.5 +0.0 1689358640.1 +0.0 1689392526.7 +29.609766064888323 1689398356.5 +36.25787255488923 1689404186.2 +35.475710822095664 1689410015.9 +31.349106170881328 1689415845.7 +23.522943732723846 1689421675.4 +8.96343903947342 1689427505.1 +0.0 1689433334.9 +0.0 1689439164.6 +0.0 1689444994.4 +0.0 1689478998 +30.114694551430027 1689484814.5 +36.49659900941137 1689490631 +35.636555654347305 1689496447.5 +31.500324305200525 1689502264 +23.695687818018808 1689508080.5 +9.19253879606312 1689513897 +0.0 1689519713.5 +0.0 1689525529.9 +0.0 1689531346.4 +0.0 1689565470.9 +30.63660387872569 1689571273.7 +36.741275090455176 1689577076.5 +35.80929973964227 1689582879.4 +31.657492066041392 1689588682.2 +23.87438152983545 1689594485 +9.431265250585252 1689600287.8 +0.0 1689606090.7 +0.0 1689611893.5 +0.0 1689617696.3 +0.0 1689651945.3 +31.166735387653933 1689657734.1 +36.993305314320494 1689663522.8 +35.987993451458905 1689669311.6 +31.820609453403925 1689675100.3 +24.056752313062848 1689680889.1 +9.675941331629057 1689686677.8 +0.0 1689692466.6 +0.0 1689698255.3 +0.0 1689704044.1 +0.0 1689738421.3 +31.710170665925364 1689744195.6 +37.25950734634007 1689749969.8 +36.1703642346863 1689755744.1 +31.989676467288135 1689761518.4 +24.245072722811912 1689767292.6 +9.930244110605292 1689773066.9 +0.0 1689778841.2 +0.0 1689784615.4 +0.0 1689790389.7 +0.0 1689824898.7 +32.269182268650894 1689830658.1 +37.52711389465951 1689836417.5 +36.358684644435364 1689842176.9 +32.1624205525831 1689847936.3 +24.443019830493412 1689853695.7 +10.194173587513959 1689859455 +0.0 1689865214.4 +0.0 1689870973.8 +0.0 1689876733.2 +0.0 1689911377.4 +32.83782056930887 1689917121.6 +37.802942624611504 1689922865.7 +36.556631752116864 1689928609.9 +32.33884170928883 1689934354 +24.646916564696586 1689940098.1 +10.467729762355054 1689945842.3 +0.0 1689951586.4 +0.0 1689957330.6 +0.0 1689963074.7 +0.0 1689997857.5 +33.416085567899266 1690003586 +38.08244842597428 1690009314.5 +36.75457885979837 1690015043.1 +32.52348504762714 1690020771.6 +24.854490370310515 1690026500.1 +10.74723556371782 1690032228.6 +0.0 1690037957.1 +0.0 1690043685.7 +0.0 1690049414.2 +0.0 1690084338.8 +34.000300193011334 1690090051.3 +38.37158092526948 1690095763.9 +36.958475594001534 1690101476.4 +32.71548252878697 1690107189 +25.068013802446114 1690112901.5 +11.03269099160226 1690118614.1 +0.0 1690124326.6 +0.0 1690130039.1 +0.0 1690135751.7 +0.0 1690170821.3 +34.6000911425775 1690176517.5 +38.666663051086346 1690182213.7 +37.17199902613714 1690187909.9 +32.90975256505771 1690193606.1 +25.29116393251415 1690199302.4 +11.331450188829887 1690204998.6 +0.0 1690210694.8 +0.0 1690216391 +0.0 1690222087.3 +0.0 1690257304.8 +35.20583171866533 1690262984.4 +38.96542224831397 1690268664 +37.38552245827273 1690274343.5 +33.1076996727392 1690280023.1 +25.52026368910385 1690285702.7 +11.632481941168429 1690291382.2 +0.0 1690297061.8 +0.0 1690302741.4 +0.0 1690308420.9 +0.0 1690343789.4 +35.82119899268561 1690349452 +39.27013107206328 1690355114.6 +37.60867258834077 1690360777.2 +33.315273478353134 1690366439.8 +25.74936344569355 1690372102.4 +11.94681746285016 1690377765 +0.0 1690383427.6 +0.0 1690389090.2 +0.0 1690394752.8 +0.0 1690430275 +36.44024333811664 1690435920.3 +39.58078952233424 1690441565.6 +37.8318227184088 1690447210.9 +33.52284728396707 1690452856.3 +25.988089900215684 1690458501.6 +12.26710261105356 1690464146.9 +0.0 1690469792.2 +0.0 1690475437.5 +0.0 1690481082.8 +0.0 1690516761.6 +37.065237310069335 1690522389.3 +39.90107467053765 1690528017 +38.066872101520175 1690533644.7 +33.73637071610267 1690539272.4 +26.23049342614858 1690544900.1 +12.593337385778634 1690550527.9 +0.0 1690556155.6 +0.0 1690561783.3 +0.0 1690567411 +0.0 1690603248.9 +37.69618090854371 1690608858.8 +40.22135981874104 1690614468.6 +38.299648929520636 1690620078.5 +33.9595208461707 1690625688.3 +26.48111913371406 1690631298.2 +12.926926303325224 1690636908 +0.0 1690642517.8 +0.0 1690648127.7 +0.0 1690653737.5 +0.0 1690689737.1 +38.33080157842884 1690695328.8 +40.54532203835521 1690700920.5 +38.53837538404277 1690706512.2 +34.18494353134964 1690712103.9 +26.735421912690285 1690717695.6 +13.268737402504396 1690723287.3 +0.0 1690728879 +0.0 1690734470.6 +0.0 1690740062.3 +0.0 1690776226.1 +38.97137187483564 1690781799.4 +40.877506439601945 1690787372.6 +38.78305146508657 1690792945.9 +34.41177073282843 1690798519.2 +26.99935138959896 1690804092.4 +13.617902644505094 1690809665.7 +0.0 1690815239 +0.0 1690820812.2 +0.0 1690826385.5 +0.0 1690862715.8 +39.61194217124245 1690868270.4 +41.211095357148544 1690873824.9 +39.03735424406281 1690879379.5 +34.646820115939796 1690884934.1 +27.263280866507625 1690890488.7 +13.975290068138365 1690896043.3 +0.0 1690901597.9 +0.0 1690907152.4 +0.0 1690912707 +0.0 1690949206.1 +40.25618953906 1690954741.8 +41.55290645632771 1690960277.4 +39.285707396517374 1690965813.1 +34.88554657046195 1690971348.7 +27.53683704134872 1690976884.4 +14.336354563182404 1690982420 +0.0 1690987955.7 +0.0 1690993491.3 +0.0 1690999027 +0.0 1691035697.1 +40.90270946198848 1691041213.5 +41.89839462691765 1691046730 +39.54595980201528 1691052246.5 +35.13022265150573 1691057763 +27.812665771300722 1691063279.5 +14.710722827569626 1691068796 +0.0 1691074312.4 +0.0 1691079828.9 +0.0 1691085345.4 +21.85185855106891 1691122188.6 +41.55290645632771 1691127685.6 +42.24388279750758 1691133182.7 +39.80988927892395 1691138679.8 +35.378575803960295 1691144176.9 +28.09217157266349 1691149674 +15.087363647067761 1691155171.1 +0.0 1691160668.2 +0.0 1691166165.2 +0.0 1691171662.3 +21.653911443387415 1691208680.6 +42.19715382414528 1691214158 +42.59304803950828 1691219635.5 +40.07381875583261 1691225113 +35.62692895641487 1691230590.5 +28.381304071958688 1691236067.9 +15.473631164498329 1691241545.4 +0.0 1691247022.9 +0.0 1691252500.3 +0.0 1691257977.8 +27.228451146188664 1691295173.1 +42.847350818484514 1691300630.7 +42.95043546314155 1691306088.4 +40.343697859262946 1691311546 +35.8812317353911 1691317003.6 +28.670436571253887 1691322461.3 +15.86584830845057 1691327918.9 +0.0 1691333376.6 +0.0 1691338834.2 +0.0 1691344291.8 +34.63719341800737 1691381666 +43.493870741412984 1691387103.6 +43.305550331663916 1691392541.2 +40.61725403410404 1691397978.9 +36.14516121229976 1691403416.5 +28.971468323592426 1691408854.1 +16.265419595224333 1691414291.7 +0.0 1691419729.3 +0.0 1691425166.9 +0.0 1691430604.5 +35.9279607087534 1691468159.4 +44.14406773575223 1691473576.7 +43.666614826707956 1691478994.1 +40.89675983546681 1691484411.5 +36.40909068920843 1691489828.9 +29.270227520820058 1691495246.3 +16.667263437109003 1691500663.7 +0.0 1691506081.1 +0.0 1691511498.5 +0.0 1691516915.8 +37.6338756107273 1691554653 +44.78463803215902 1691560050 +44.03135639316275 1691565447 +41.176265636829584 1691570844 +36.67896979263877 1691576241 +29.58088597109103 1691581637.9 +17.08468360344777 1691587034.9 +0.0 1691592431.9 +0.0 1691597828.9 +0.0 1691603225.9 +34.6623964403939 1691641147.1 +45.42888539997658 1691646523.5 +44.398370514728455 1691651899.9 +41.46172106471402 1691657276.3 +36.952525967479865 1691662652.6 +29.889271866251093 1691668029 +17.502103769786537 1691673405.4 +0.0 1691678781.8 +0.0 1691684158.2 +0.0 1691689534.6 +43.192838989074446 1691727641.4 +46.06577862497262 1691732997 +44.76311208118325 1691738352.7 +41.75085356400922 1691743708.3 +37.22835469743187 1691749063.9 +30.205879943043726 1691754419.6 +17.929150634057738 1691759775.2 +0.0 1691765130.9 +0.0 1691770486.5 +0.0 1691775842.1 +45.230938292295086 1691814136 +46.70039929485775 1691819470.7 +45.13380327415971 1691824805.4 +42.03998606330441 1691830140.1 +37.50786049879464 1691835474.9 +30.52616509124713 1691840809.6 +18.359874569739702 1691846144.3 +0.0 1691851479 +0.0 1691856813.8 +0.0 1691862148.5 +45.576426462885024 1691900630.8 +47.33501996474289 1691905944.4 +45.50676702224708 1691911258.1 +42.33506818912128 1691916571.7 +37.791043371568165 1691921885.4 +30.850127310861293 1691927199 +18.796548131943332 1691932512.7 +0.0 1691937826.3 +0.0 1691943140 +0.0 1691948453.7 +47.884404869535985 1691987125.8 +47.960013936695596 1691992418.2 +45.88113528663431 1691997710.7 +42.63382738634892 1692003003.1 +38.08244842597428 1692008295.5 +31.180039156997125 1692013588 +19.23917132066864 1692018880.4 +0.0 1692024172.8 +0.0 1692029465.3 +0.0 1692034757.7 +49.17884923169279 1692073621 +48.58133083723752 1692078892.1 +46.257776106132454 1692084163.1 +42.93485913868746 1692089434.2 +38.37158092526948 1692094705.3 +31.515900629654627 1692099976.4 +19.69142120732637 1692105247.4 +0.0 1692110518.5 +0.0 1692115789.6 +0.0 1692121060.7 +50.450363126573954 1692160116.3 +49.20037518266856 1692165365.9 +46.63441692563059 1692170615.5 +43.23956796243675 1692175865.1 +38.666663051086346 1692181114.7 +31.85176210231213 1692186364.3 +20.149620720505776 1692191613.8 +0.0 1692196863.4 +0.0 1692202113 +0.0 1692207362.6 +51.69440144395769 1692246611.8 +49.809792830167154 1692251839.8 +47.01105774512873 1692257067.7 +43.54427678618605 1692262295.7 +38.96542224831397 1692267523.7 +32.19725027290207 1692272751.6 +20.611497305095938 1692277979.6 +0.0 1692283207.6 +0.0 1692288435.5 +0.0 1692293663.5 +52.92513599199823 1692333107.4 +50.41553340625499 1692338313.6 +47.39137563603763 1692343519.9 +43.854935236457024 1692348726.1 +39.266454000652516 1692353932.3 +32.542738443492 1692359138.5 +21.079323516207776 1692364344.7 +0.0 1692369551 +0.0 1692374757.2 +0.0 1692379963.4 +54.134344589063005 1692419603.1 +51.015324355821164 1692424787.5 +47.771693526946514 1692429971.8 +44.16927075813876 1692435156.2 +39.57116282440181 1692440340.6 +32.894176240603606 1692445524.9 +21.550826798730373 1692450709.3 +0.0 1692455893.7 +0.0 1692461078 +0.0 1692466262.4 +55.318350163741236 1692506098.9 +51.60916567886566 1692511261.3 +48.15428397296632 1692516423.7 +44.47992920840972 1692521586.1 +39.87954871956188 1692526748.5 +33.24929110912597 1692531910.9 +22.02827970777464 1692537073.3 +0.0 1692542235.7 +0.0 1692547398.1 +0.0 1692552560.5 +56.486779413965365 1692592594.7 +52.1993299304994 1692597735 +48.53460186387522 1692602875.4 +44.800214356613125 1692608015.7 +40.19020716983284 1692613156 +33.60440597764833 1692618296.3 +22.511682243340577 1692623436.7 +0.37664081949813705 1692628577 +0.0 1692633717.3 +0.0 1692638857.6 +57.63963233973541 1692679090.6 +52.777594929089794 1692684208.7 +48.9208693813058 1692689326.9 +45.114549878294845 1692694445 +40.50454269151457 1692699563.2 +33.971420099214036 1692704681.4 +22.998761850317273 1692709799.5 +1.1024468809969683 1692714917.7 +0.0 1692720035.8 +0.0 1692725154 +58.76955479822981 1692765586.5 +53.35218285626943 1692770682.4 +49.30118727221469 1692775778.3 +45.44078465301992 1692780874.2 +40.824827839717976 1692785970.1 +34.33616166566883 1692791065.9 +23.497740710337315 1692796161.8 +1.8497788934715715 1692801257.7 +0.0 1692806353.6 +0.0 1692811449.5 +59.88162837715922 1692852082.4 +53.9208211569274 1692857156 +49.68745478964525 1692862229.5 +45.76106980122333 1692867303 +41.14511298792138 1692872376.6 +34.703175787234535 1692877450.1 +23.994447015246443 1692882523.6 +2.5971109059461748 1692887597.2 +0.0 1692892670.7 +0.0 1692897744.3 +60.98039818674542 1692938578.4 +54.479832759652936 1692943629.5 +50.070045235665056 1692948680.6 +46.08503202083749 1692953731.7 +41.47134776264645 1692958782.8 +35.07754405162176 1692963833.9 +24.499375501788148 1692968885 +3.3636963142856393 1692973936.1 +0.0 1692978987.2 +0.0 1692984038.3 +62.06131911676662 1693025074.3 +55.0328947358568 1693030102.9 +50.456312753095624 1693035131.5 +46.41494386697332 1693040160.1 +41.79530998226062 1693045188.6 +35.45418487111989 1693050217.2 +25.00570850462971 1693055245.8 +4.136231349146774 1693060274.4 +0.0 1693065303 +0.0 1693070331.5 +63.12893627744462 1693111570.3 +55.57860256923914 1693116576.3 +50.83663064400453 1693121582.3 +46.74485571310915 1693126588.2 +42.12154475698568 1693131594.2 +35.834502762028805 1693136600.2 +25.52026368910385 1693141606.2 +4.924342708462012 1693146612.2 +0.0 1693151618.1 +0.0 1693156624.1 +64.17502748714685 1693198066.3 +56.11608822098891 1693203049.6 +51.2228981614351 1693208032.9 +47.07704011435589 1693213016.2 +42.45740622964318 1693217999.5 +36.2170932080486 1693222982.8 +26.03849594498875 1693227966.1 +5.72208076570968 1693232949.4 +0.0 1693237932.7 +0.0 1693242916.1 +65.2078149275059 1693284562.2 +56.643947174806236 1693289522.8 +51.60321605234399 1693294483.3 +47.41062903190249 1693299443.9 +42.78731807577901 1693304404.5 +36.60336072547917 1693309365.1 +26.562677827395326 1693314325.6 +6.525768449479018 1693319286.2 +0.0 1693324246.8 +0.0 1693329207.4 +66.22275348829994 1693371058.1 +57.16812905721281 1693375995.9 +51.98948356977456 1693380933.7 +47.74281343314922 1693385871.4 +43.12685661984728 1693390809.2 +36.993305314320494 1693395747 +27.09053678121266 1693400684.8 +7.342759902591548 1693405622.5 +0.0 1693410560.3 +0.0 1693415498.1 +67.20881195529667 1693457554 +57.68636131309771 1693462468.9 +52.37207401579437 1693467383.9 +48.082351977217485 1693472298.8 +43.46271809250478 1693477213.7 +37.38552245827274 1693482128.6 +27.618395735029985 1693487043.5 +8.171650608747418 1693491958.4 +0.0 1693496873.3 +0.0 1693501788.2 +68.16966739990686 1693544049.9 +58.19496687105018 1693548941.9 +52.75239190670327 1693553833.9 +48.41821344987498 1693558725.9 +43.80820626309472 1693563617.9 +37.77773960222497 1693568509.9 +28.152204315368987 1693573401.9 +9.004218386314053 1693578293.9 +0.0 1693583185.9 +0.0 1693588077.9 +69.0956931241981 1693630545.8 +58.69762280248098 1693635414.8 +53.132709797612165 1693640283.8 +48.75775199394326 1693645152.9 +44.15001736227389 1693650021.9 +38.17731088899873 1693654890.9 +28.691962522229655 1693659759.9 +9.848685416924024 1693664628.9 +0.0 1693669498 +0.0 1693674367 +69.97866694653779 1693717041.7 +59.190652035979355 1693721887.7 +53.51530024363196 1693726733.7 +49.09361346660076 1693731579.6 +44.495505532863824 1693736425.6 +38.5791547308834 1693741271.6 +29.22944817397942 1693746117.6 +10.702779145466428 1693750963.6 +0.0 1693755809.6 +0.0 1693760655.6 +70.82313397714776 1693803537.5 +59.674054571545284 1693808360.4 +53.89561813454087 1693813183.4 +49.43910163719069 1693818006.3 +44.844670774864525 1693822829.2 +38.98099857276807 1693827652.1 +29.778833078772525 1693832475.1 +11.566499571941263 1693837298 +0.0 1693842120.9 +0.0 1693846943.8 +71.62087203439542 1693890033.3 +60.155184552000314 1693894833.1 +54.27593602544977 1693899633 +49.77864018125895 1693904432.8 +45.19015894545445 1693909232.6 +39.386519486063506 1693914032.4 +30.32821798356563 1693918832.2 +12.433897069826857 1693923632 +0.0 1693928431.8 +0.0 1693933231.6 +72.37783074480248 1693976529.2 +60.62301076311215 1693981305.8 +54.6525768449479 1693986082.5 +50.12412835184888 1693990859.1 +45.54159674256605 1693995635.8 +39.794312954469845 1694000412.4 +30.875330333247827 1694005189.1 +13.313193820755792 1694009965.7 +0.0 1694014742.4 +0.0 1694019519 +73.08806048184721 1694063025 +61.09083697422399 1694067778.4 +55.0328947358568 1694072531.9 +50.46961652243882 1694077285.3 +45.89671161108841 1694082038.8 +40.20578349428695 1694086792.2 +31.430664864562598 1694091545.7 +14.198440198206395 1694096299.1 +0.0 1694101052.6 +0.0 1694105806 +73.75383380064055 1694149520.8 +61.54903648740338 1694154251 +55.40585848394417 1694158981.2 +50.81510469302876 1694163711.4 +46.251826479610784 1694168441.7 +40.61725403410404 1694173171.9 +31.989676467288135 1694177902.1 +15.087363647067761 1694182632.3 +0.0 1694187362.5 +0.0 1694192092.7 +74.38477739911491 1694236016.6 +61.995336747539454 1694240723.6 +55.78022674833141 1694245430.5 +51.16059286361869 1694250137.5 +46.609213903244054 1694254844.4 +41.034674200442815 1694259551.4 +32.54868807001367 1694264258.3 +15.98591379386156 1694268965.2 +0.0 1694273672.2 +0.0 1694278379.1 +74.96899202422698 1694322512.5 +62.44390956278643 1694327196.1 +56.15686756782954 1694331879.8 +51.50835358931953 1694336563.4 +46.970278398288094 1694341247 +41.44982181167068 1694345930.7 +33.111376744149965 1694350614.3 +16.890413567177035 1694355298 +0.0 1694359981.6 +0.0 1694364665.3 +75.52205400043086 1694409008.3 +62.88058312499006 1694413668.6 +56.527558760806 1694418329 +51.85384175990947 1694422989.3 +47.32907033822122 1694427649.6 +41.867241978009446 1694432309.9 +33.676337973397175 1694436970.2 +17.800862967014165 1694441630.5 +0.0 1694446290.8 +0.0 1694450951.1 +76.04028625631574 1694495504.2 +63.30762998926126 1694500141.2 +56.898249953782475 1694504778.1 +52.20300700191016 1694509415.1 +47.690134833265255 1694514052 +42.288339215758974 1694518689 +34.23902664753347 1694523325.9 +18.711312366851303 1694527962.9 +0.0 1694532599.8 +0.0 1694537236.8 +76.52963841840334 1694582000.2 +63.72872722701079 1694586613.7 +57.26894114675894 1694591227.3 +52.54849517250009 1694595840.9 +48.051199328309295 1694600454.4 +42.71170900861942 1694605068 +34.809937503302336 1694609681.6 +19.631388464620876 1694614295.1 +0.0 1694618908.7 +0.0 1694623522.3 +76.98556537647185 1694668496.1 +64.14614739334955 1694673086.3 +57.63595526832464 1694677676.5 +52.8999329696117 1694682266.6 +48.41821344987498 1694686856.8 +43.13875587289062 1694691446.9 +35.38225287537106 1694696037.1 +20.549192007279533 1694700627.2 +0.0 1694705217.4 +0.0 1694709807.6 +77.41856186726473 1694754992.2 +64.55761793316667 1694759558.9 +58.00069683477945 1694764125.6 +53.24909821161239 1694768692.4 +48.77927794491903 1694773259.1 +43.559853110640155 1694777825.8 +35.95316373113994 1694782392.5 +21.475217731570773 1694786959.3 +0.0 1694791526 +0.0 1694796092.7 +77.83003240708182 1694841488.3 +64.96313884646209 1694846031.5 +58.36771095634514 1694850574.8 +53.596858937313236 1694855118.1 +49.14401951137382 1694859661.4 +43.990577046322116 1694864204.7 +36.52775165831957 1694868747.9 +22.404920527272775 1694873291.2 +0.0 1694877834.5 +0.0 1694882377.8 +78.21035029799071 1694927984.4 +65.35903306182509 1694932504.3 +58.72877545138918 1694937024.1 +53.94602417931393 1694941543.9 +49.514710704350286 1694946063.7 +44.41762391059332 1694950583.5 +37.100067030388296 1694955103.3 +23.334623322974778 1694959623.1 +0.0 1694964143 +0.0 1694968662.8 +78.57736441955643 1695014480.7 +65.75125020577734 1695018977 +59.089839946433216 1695023473.4 +54.29746197642554 1695027969.7 +49.881724825915995 1695032466 +44.850620401386195 1695036962.4 +37.67465495756794 1695041458.7 +24.270275745198447 1695045955 +0.0 1695050451.4 +0.0 1695054947.7 +78.92285259014635 1695100977 +66.13156809668622 1695105449.9 +59.44863188636634 1695109922.7 +54.64662721842623 1695114395.6 +50.252416018892454 1695118868.4 +45.277667265657385 1695123341.2 +38.25519251126924 1695127814.1 +25.19997854090045 1695132286.9 +0.0 1695136759.7 +0.0 1695141232.6 +79.25276443628219 1695187473.5 +66.51415854270603 1695191922.8 +59.80601930999961 1695196372.2 +54.99806501553783 1695200821.5 +50.62310721186893 1695205270.8 +45.708391201339346 1695209720.2 +38.829780438448886 1695214169.5 +26.135630963124118 1695218618.8 +0.0 1695223068.2 +0.0 1695227517.5 +79.56342288655316 1695273970.1 +66.8848497356825 1695278395.9 +60.16113417852198 1695282821.7 +55.343553186127764 1695287247.5 +50.98784877832372 1695291673.3 +46.14138769213222 1695296099.2 +39.40804543703928 1695300525 +27.069010830236888 1695304950.8 +0.0 1695309376.6 +0.0 1695313802.4 +79.85850501237003 1695360466.8 +67.2495913021373 1695364869.1 +60.516249047044354 1695369271.4 +55.69499098323937 1695373673.7 +51.360812526411095 1695378075.9 +46.57806125433586 1695382478.2 +39.986310435629676 1695386880.5 +28.00466325246055 1695391282.8 +0.0 1695395685.1 +0.0 1695400087.4 +80.14168788514355 1695446963.6 +67.61065579718134 1695451342.4 +60.86768684415595 1695455721.1 +56.04415622524007 1695460099.9 +51.73150371938756 1695464478.7 +47.01105774512873 1695468857.4 +40.56089836280931 1695473236.2 +28.934366048162556 1695477614.9 +0.0 1695481993.7 +0.0 1695486372.5 +80.4115669885739 1695533460.6 +67.97172029222536 1695537815.8 +61.21912464126755 1695542171.1 +56.39559402235167 1695546526.3 +52.10587198377479 1695550881.5 +47.44773130733236 1695555236.7 +41.141435916510616 1695559592 +29.86406884386456 1695563947.2 +1.8965078668338764 1695568302.4 +0.0 1695572657.6 +80.6695468389609 1695619957.8 +68.31720846281529 1695624289.5 +61.56461281185748 1695628621.1 +56.741082192941604 1695632952.8 +52.47883573186217 1695637284.5 +47.878455243014315 1695641616.2 +41.71970091510101 1695645947.9 +30.793771639566557 1695650279.6 +3.919030845600415 1695654611.3 +0.0 1695658943 +80.91422292000468 1695706455.1 +68.66269663340523 1695710763.2 +61.910100982447425 1695715071.4 +57.092519990053205 1695719379.5 +52.849526924838635 1695723687.7 +48.315128805217945 1695727995.8 +42.29428884228064 1695732304 +31.719797363857797 1695736612.1 +5.93560419784528 1695740920.3 +0.0 1695745228.4 +81.15294937452683 1695792952.6 +69.0022351774735 1695797237.2 +62.25558915303736 1695801521.8 +57.43800816064314 1695805806.4 +53.22389518922586 1695810091.1 +48.7540749225325 1695814375.7 +42.87255384087105 1695818660.3 +32.63987346162737 1695822944.9 +7.952177550090148 1695827229.5 +0.0 1695831514.1 +81.37609950459486 1695879450.3 +69.338096650131 1695883711.4 +62.595127697105625 1695887972.5 +57.783496331233074 1695892233.5 +53.596858937313236 1695896494.6 +49.190748484736126 1695900755.7 +43.447141768050685 1695905016.8 +33.559949559396934 1695909277.9 +9.955447132991825 1695913538.9 +0.0 1695917800 +81.59557256325213 1695965948.2 +69.66433142485607 1695970185.8 +62.93098916976312 1695974423.3 +58.12898450182301 1695978660.9 +53.9675501302897 1695982898.4 +49.62147242041809 1695987136 +44.02172969523032 1695991373.5 +34.47407603064483 1695995611.1 +11.931241138396057 1695999848.6 +0.0 1696004086.2 +81.80314636886607 1696052446.4 +69.98829364447023 1696056660.4 +63.270527713831385 1696060874.4 +58.47447267241294 1696065088.4 +54.34191839467693 1696069302.5 +50.05814598262172 1696073516.5 +44.596317622409956 1696077730.5 +35.38225287537106 1696081944.5 +13.887781747935424 1696086158.6 +0.0 1696090372.6 +82.00704310306922 1696138944.7 +70.30857879267364 1696143135.2 +63.60638918648889 1696147325.7 +58.81996084300288 1696151516.2 +54.7126095876534 1696155706.8 +50.49709209993626 1696159897.3 +45.170905549589584 1696164087.8 +36.28675264868653 1696168278.3 +15.819119335088264 1696172468.8 +0.0 1696176659.3 +82.19904058422907 1696225443.3 +70.6192372429446 1696229610.3 +63.93630103262472 1696233777.3 +59.16544901359282 1696237944.3 +55.08557333574077 1696242111.3 +50.92781603561822 1696246278.3 +45.73954385024756 1696250445.4 +37.18757535059124 1696254612.4 +17.71562720192214 1696258779.4 +0.0 1696262946.4 +82.38736099397813 1696311942.1 +70.92989569321557 1696316085.6 +64.26621287876056 1696320229.2 +59.50498755766108 1696324372.7 +55.456264528717234 1696328516.2 +51.36448959782185 1696332659.7 +46.308182150905516 1696336803.3 +38.07649879945261 1696340946.8 +19.578709864736904 1696345090.3 +0.0 1696349233.8 +82.57200433231644 1696398441.2 +71.23460451696488 1696402561.3 +64.59244765348562 1696406681.3 +59.84679865684025 1696410801.4 +55.82695572169371 1696414921.4 +51.801163160025496 1696419041.5 +46.873143380152726 1696423161.5 +38.96542224831397 1696427281.6 +21.40923536234361 1696431401.6 +0.0 1696435521.7 +82.74474841761139 1696484940.6 +71.5333637141925 1696489037.2 +64.9186824282107 1696493133.7 +60.18633720090851 1696497230.3 +56.19764691467017 1696501326.9 +52.23415965081837 1696505423.5 +47.44178168081069 1696509520.1 +39.844718999242914 1696513616.7 +23.208608211042115 1696517713.3 +0.0 1696521809.9 +82.9115428763847 1696571440.2 +71.82844584000937 1696575513.3 +65.23669502130319 1696579586.5 +60.52814830008769 1696583659.7 +56.56833810764664 1696587732.8 +52.66488358650033 1696591806 +48.00079328353622 1696595879.1 +40.71438905223942 1696599952.3 +24.970878784310745 1696604025.5 +0.0 1696608098.6 +83.07466026374723 1696657940.1 +72.11757833930457 1696661989.8 +65.55698016950659 1696666039.6 +60.86173721763428 1696670089.3 +56.939029300623105 1696674139.1 +53.0978800772932 1696678188.8 +48.55980488626175 1696682238.6 +41.57810947871425 1696686288.3 +26.698319637260422 1696690338.1 +0.0 1696694387.8 +83.2318280245881 1696744440.2 +72.40303376718902 1696748466.6 +65.87358824629922 1696752493 +61.203548316813446 1696756519.3 +57.306043422188814 1696760545.7 +53.52860401297516 1696764572.1 +49.11881648898729 1696768598.4 +42.43220320725665 1696772624.8 +28.39093076989112 1696776651.1 +0.0 1696780677.5 +83.38899578542896 1696830940.7 +72.68253956855177 1696834943.7 +66.18792376798096 1696838946.7 +61.53346016294928 1696842949.7 +57.67673461516528 1696846952.7 +53.95565087724636 1696850955.7 +49.67187846519115 1696854958.7 +43.27439768275572 1696858961.7 +30.048712182202863 1696862964.7 +0.0 1696866967.7 +83.5365368483374 1696917441.5 +72.96204536991455 1696921421.1 +66.50225928966269 1696925400.8 +61.86932163560678 1696929380.5 +58.041476181620084 1696933360.2 +54.38269774151757 1696937339.9 +50.22126336998425 1696941319.5 +44.112915086844026 1696945299.2 +31.673068390495494 1696949278.9 +0.0 1696953258.6 +83.67812828472417 1697003942.5 +73.23192447334488 1697007898.9 +66.81291773993367 1697011855.3 +62.20291055315339 1697015811.7 +58.40849030318578 1697019768.1 +54.809744605788765 1697023724.4 +50.770648274777365 1697027680.8 +44.9418057929999 1697031637.2 +33.264867433580065 1697035593.6 +0.0 1697039550 +83.81604264970017 1697090443.9 +73.49953102166431 1697094377 +67.11762656368296 1697098310.1 +62.52914532787845 1697102243.3 +58.76955479822981 1697106176.4 +55.23679147005996 1697110109.5 +51.31408355304879 1697114042.7 +45.76106980122333 1697117975.8 +34.82551382775644 1697121908.9 +0.0 1697125842 +83.95395701467616 1697176945.6 +73.76346049857298 1697180855.5 +67.42233538743227 1697184765.4 +62.85905717401428 1697188675.3 +59.13429636468461 1697192585.2 +55.657888707809505 1697196495.1 +51.85751883132023 1697200405 +46.56843455640342 1697204314.9 +36.34905794650294 1697208224.8 +0.0 1697212134.8 +84.0859217531305 1697263447.5 +74.02371290407088 1697267334.3 +67.7233671397708 1697271221 +63.18896902015012 1697275107.7 +59.49536085972865 1697278994.5 +56.08125850066994 1697282881.2 +52.39132741165923 1697286768 +47.366172613651095 1697290654.7 +37.84372197145214 1697294541.4 +0.0 1697298428.2 +84.21193686506318 1697349949.8 +74.27801568304712 1697353813.4 +68.01844926558766 1697357677 +63.50925416835352 1697361540.7 +59.85642535477268 1697365404.3 +56.502355738419475 1697369267.9 +52.92513599199823 1697373131.5 +48.14833434644465 1697376995.1 +39.307233347493145 1697380858.7 +0.0 1697384722.3 +84.34022453210675 1697436452.4 +74.53231846202334 1697440292.9 +68.31720846281529 1697444133.5 +63.83548894307859 1697447974 +60.211540223295046 1697451814.6 +56.91977590475824 1697455655.1 +53.45299494581556 1697459495.6 +48.92681900782747 1697463336.2 +40.733642448104284 1697467176.7 +0.0 1697471017.3 +84.46029001751774 1697522955.3 +74.78067161447791 1697526772.8 +68.60634096211051 1697530590.3 +64.15577409128198 1697534407.8 +60.56665509181742 1697538225.4 +57.33124644457534 1697542042.9 +53.9808538996329 1697545860.4 +49.69340441616692 1697549677.9 +42.13117145491811 1697553495.5 +0.0 1697557313 +84.57895098662887 1697609458.5 +75.02534769552172 1697613253 +68.89547346140569 1697617047.6 +64.4760592394854 1697620842.1 +60.92404251545068 1697624636.7 +57.74639405580321 1697628431.3 +54.50135871062871 1697632225.8 +50.444413500052285 1697636020.4 +43.493870741412984 1697639815 +0.0 1697643609.5 +84.68938977410743 1697695961.9 +75.26407415004384 1697699733.6 +69.18092888929013 1697703505.3 +64.79039476116714 1697707276.9 +61.273207757451374 1697711048.6 +58.15418752420955 1697714820.3 +55.013641339991935 1697718591.9 +51.18806844111613 1697722363.6 +44.82541737899966 1697726135.3 +0.0 1697729906.9 +84.8021011166969 1697782465.7 +75.49685097804432 1697786214.5 +69.46638431717457 1697789963.4 +65.10473028284885 1697793712.2 +61.624645554562974 1697797461.1 +58.55970843750497 1697801209.9 +55.52592396935516 1697804958.7 +51.91982412913663 1697808707.6 +46.11986174115645 1697812456.4 +0.0 1697816205.3 +84.91253990417547 1697868969.8 +75.73190036115568 1697872695.8 +69.7495671899481 1697876421.9 +65.41538873311981 1697880148 +61.976083351674596 1697883874.1 +58.96750190591131 1697887600.2 +56.03452952730763 1697891326.3 +52.63600349270303 1697895052.3 +47.38542600951596 1697898778.4 +0.0 1697902504.5 +85.0156245488325 1697955474.1 +75.95872756263448 1697959177.5 +70.0253959199001 1697962880.9 +65.72604718339079 1697966584.3 +62.32157152226453 1697970287.7 +59.36934574779598 1697973991.1 +56.53350838732767 1697977694.5 +53.342556158337 1697981397.9 +48.61616055755648 1697985101.3 +1.32191993965424 1697988804.7 +85.1223862649003 1698041978.7 +76.1841502478134 1698045659.5 +70.29895209474121 1698049340.3 +66.03443307855088 1698053021.1 +62.66111006633279 1698056701.9 +59.768917034569746 1698060382.7 +57.03021469223681 1698064063.5 +54.03720957092763 1698067744.3 +49.809792830167154 1698071425.2 +0.0 1698075106 +85.21952128303568 1698128483.5 +76.40135075135979 1698132141.8 +70.5725082695823 1698135800.1 +66.34141445741108 1698139458.4 +63.002921165511964 1698143116.7 +60.16113417852198 1698146775 +57.51956685432441 1698150433.3 +54.724508840696735 1698154091.6 +50.97454500898053 1698157749.9 +0.0 1698161408.2 +85.3203333725818 1698214988.6 +76.62082381001706 1698218624.5 +70.83871030160186 1698222260.4 +66.6401736546387 1698225896.3 +63.342459709580226 1698229532.1 +60.557028393884984 1698233168 +58.006646461301116 1698236803.9 +55.39395923090083 1698240439.8 +52.10219491236403 1698244075.7 +40.16500414744631 1698247711.6 +85.41746839071718 1698301493.9 +76.83434724215265 1698305107.5 +71.10263977851054 1698308721 +66.93893285186633 1698312334.6 +63.678321182237724 1698315948.2 +60.94329591131554 1698319561.8 +58.484099370345376 1698323175.3 +56.05010585176174 1698326788.9 +53.19869216683933 1698330402.5 +43.412312047731724 1698334016 +85.50865378233088 1698387999.4 +77.04192104776658 1698391590.8 +71.36656925541921 1698395182.1 +67.23401497768319 1698398773.5 +64.01191009978432 1698402364.9 +61.329563428746106 1698405956.2 +58.95787520797889 1698409547.6 +56.69662577469021 1698413138.9 +54.260359700995664 1698416730.3 +50.557124842641755 1698420321.7 +85.59983917394457 1698474505.1 +77.24581778196976 1698478074.4 +71.6245491058062 1698481643.6 +67.52909710350006 1698485212.9 +64.33814487450938 1698488782.2 +61.71215387476592 1698492351.4 +59.429378490501485 1698495920.7 +57.33124644457534 1698499490 +55.28719751483303 1698503059.2 +53.22389518922586 1698506628.5 +85.69102456555828 1698561011 +77.44971451617293 1698564558.2 +71.87885188478243 1698568105.5 +67.81822960279526 1698571652.8 +64.66805672064523 1698575200.1 +62.08652213915315 1698578747.4 +59.887578003680886 1698582294.7 +57.95029079000637 1698585842 +56.2828826797622 1698589389.2 +55.120403056059736 1698592936.5 +85.77258325923954 1698647517 +77.64766162385442 1698651042.4 +72.127205037237 1698654567.8 +68.1036850306797 1698658093.3 +64.98834186884862 1698661618.7 +62.463162958651296 1698665144.1 +60.34350496174939 1698668669.5 +58.55970843750497 1698672195 +57.24373812437241 1698675720.4 +59.73408731425078 1698679245.8 +85.85781902433156 1698734023.1 +77.84560873153592 1698737526.8 +72.37783074480248 1698741030.5 +68.38914045856414 1698744534.2 +65.30862701705202 1698748037.9 +62.833854151627754 1698751541.6 +60.79207777699635 1698755045.3 +59.15949938707115 1698758549 +58.173440920074405 1698762052.8 +58.622013735321374 1698765556.5 +85.93937771801284 1698820529.3 +78.03392914128499 1698824011.4 +72.62023427073537 1698827493.5 +68.6686462599269 1698830975.7 +65.62891216525543 1698834457.8 +63.19491864667179 1698837939.9 +61.238378037132414 1698841422.1 +59.74371401218321 1698844904.2 +59.068313995457444 1698848386.3 +60.24269287220325 1698851868.4 +86.02093641169411 1698907035.6 +78.22224955103405 1698910496.3 +72.86491035177917 1698913956.9 +68.94815206128968 1698917417.6 +65.9395706155264 1698920878.3 +63.559660213126584 1698924339 +61.67137452792528 1698927799.7 +60.31462486795209 1698931260.4 +59.932034421932286 1698934721.1 +61.78181331540384 1698938181.8 +86.10249510537537 1698993541.9 +78.40462033426145 1698996981.3 +73.09995973489055 1699000420.7 +69.22170823613077 1699003860.1 +66.24795651068646 1699007299.5 +63.917047636759854 1699010738.9 +62.10209846360724 1699014178.3 +60.87363647067762 1699017617.8 +60.77055182602057 1699021057.2 +63.25127431796652 1699024496.6 +86.17810417253497 1699080048.2 +78.58699111748886 1699083466.5 +73.332736562891 1699086884.8 +69.4915873395611 1699090303.1 +66.55493788954666 1699093721.4 +64.26621287876056 1699097139.7 +62.523195701356784 1699100558 +61.42074882035981 1699103976.3 +61.57423950978991 1699107394.6 +64.64285369825869 1699110812.9 +86.25003616828381 1699166554.4 +78.7656848293055 1699169951.8 +73.56551339089148 1699173349.1 +69.75551681646976 1699176746.5 +66.85369708677429 1699180143.8 +64.61170104935049 1699183541.2 +62.940615867695556 1699186938.6 +61.95455740069882 1699190335.9 +62.35045161606182 1699193733.3 +65.97440033584537 1699197130.6 +86.3256452354434 1699253060.6 +78.93842891460045 1699256437.2 +73.79093607607041 1699259813.8 +70.01944629337844 1699263190.4 +67.15245628400193 1699266567 +64.95718921994042 1699269943.6 +63.348409336101895 1699273320.2 +62.47873928310539 1699276696.8 +63.097783628536426 1699280073.4 +67.24591423072653 1699283450 +86.39757723119224 1699339566.7 +79.10522337337376 1699342922.7 +74.01408620613844 1699346278.7 +70.27969869887633 1699349634.7 +67.44753840981879 1699352990.8 +65.29305069259793 1699356346.8 +63.74798062287565 1699359702.8 +62.98734484105786 1699363058.8 +63.813962992102816 1699366414.9 +68.45879989920206 1699369770.9 +86.4635596004194 1699426072.6 +79.27201783214706 1699429408.2 +74.23128670968481 1699432743.9 +70.53172892274166 1699436079.5 +67.7389434642249 1699439415.2 +65.62296253873376 1699442750.8 +64.14614739334955 1699446086.5 +63.48405114596699 1699449422.2 +64.50493933328269 1699452757.8 +69.61760245149377 1699456093.5 +86.52954196964659 1699512578.3 +79.43513521950959 1699515893.8 +74.44481014182041 1699519209.3 +70.78235463030713 1699522524.8 +68.02212633699843 1699525840.2 +65.94919731345884 1699529155.7 +64.53241491078013 1699532471.2 +63.96745368153292 1699535786.7 +65.17071265207602 1699539102.2 +70.72004933249073 1699542417.7 +86.59552433887374 1699599083.7 +79.59825260687212 1699602379.3 +74.658333573956 1699605674.8 +71.03070778276171 1699608970.4 +68.30163213836119 1699612265.9 +66.26948246166224 1699615561.5 +64.91273280168903 1699618857.1 +64.44490659057719 1699622152.6 +65.81128294848283 1699625448.2 +71.77209016871464 1699628743.7 +86.6615067081009 1699685588.8 +79.75174329630222 1699688864.7 +74.86223030815918 1699692140.5 +71.26943423728383 1699695416.4 +68.5751883132023 1699698692.2 +66.58976760986565 1699701968.1 +65.2834239946655 1699705243.9 +64.9031061037566 1699708519.8 +66.4266502225031 1699711795.6 +72.77372496016547 1699715071.5 +86.72153945080642 1699772093.6 +79.90296143062142 1699775350 +75.06612704236235 1699778606.4 +71.50816069180595 1699781862.8 +68.84506741663263 1699785119.2 +66.9004260601366 1699788375.5 +65.6481655611203 1699791631.9 +65.34940636389265 1699794888.3 +67.01681447413682 1699798144.7 +73.71900408032158 1699801401.1 +86.78384474862281 1699858598 +80.05645212005153 1699861835.2 +75.2677512214546 1699865072.3 +71.74321007491734 1699868309.5 +69.11494652006297 1699871546.7 +67.19918525736423 1699874783.8 +66.00555298475356 1699878021 +65.7860799260963 1699881258.2 +67.5854527747948 1699884495.3 +74.60197790266128 1699887732.5 +86.84387749132831 1699945101.9 +80.1980435564383 1699948320.1 +75.46202125772535 1699951538.3 +71.97003727639614 1699954756.5 +69.37519892556087 1699957974.8 +67.49794445459186 1699961193 +66.35104115534351 1699964411.2 +66.21312679036751 1699967629.4 +68.12888805306623 1699970847.6 +75.43086860881715 1699974065.9 +86.90023316262304 1700031605.3 +80.33963499282507 1700034804.8 +75.65034166747442 1700038004.4 +72.19545996157507 1700041203.9 +69.63317877594785 1700044403.4 +67.79302658040872 1700047603 +66.69057969941177 1700050802.5 +66.6245973301846 1700054002.1 +68.6530699354728 1700057201.6 +76.19972657226752 1700060401.1 +86.95658883391778 1700118108.1 +80.47754935780107 1700121289.2 +75.83866207722347 1700124470.4 +72.41861009164312 1700127651.5 +69.88153192840242 1700130832.7 +68.07848200829316 1700134013.8 +67.02644117206926 1700137195 +67.02644117206926 1700140376.1 +69.1557258669036 1700143557.3 +76.9159059358339 1700146738.4 +87.00699487869083 1700204610.2 +80.61546372277706 1700207773.3 +76.02103286045089 1700210936.3 +72.6321335237787 1700214099.4 +70.12620800944623 1700217262.4 +68.35798780965592 1700220425.5 +67.35267594679434 1700223588.6 +67.41270868949984 1700226751.6 +69.63912840246952 1700229914.7 +77.57572962810559 1700233077.8 +87.06335054998557 1700291111.6 +80.7474284612314 1700294256.9 +76.19377694574585 1700297402.2 +72.83970732939264 1700300547.5 +70.36493446396837 1700303692.7 +68.63154398449703 1700306838 +67.66701146847608 1700309983.3 +67.79302658040872 1700313128.6 +70.1010049870597 1700316273.9 +78.1851472756042 1700319419.2 +87.11375659475863 1700377612.2 +80.87344357316407 1700380740.1 +76.36652103104082 1700383867.9 +73.04728113500657 1700386995.7 +70.60366091849049 1700390123.5 +68.89547346140569 1700393251.4 +67.97172029222536 1700396379.2 +68.15409107545277 1700399507 +70.543628175785 1700402634.9 +78.74415887832973 1700405762.7 +87.16416263953171 1700464112 +80.99578161368596 1700467222.7 +76.53926511633577 1700470333.4 +73.24522824268807 1700473444.1 +70.82681104855853 1700476554.8 +69.1557258669036 1700479665.5 +68.27642911597466 1700482776.3 +68.50920594397513 1700485887 +70.96472541353454 1700488997.7 +79.26239113421462 1700492108.4 +87.21089161289402 1700550610.8 +81.11811965420786 1700553704.8 +76.70238250369832 1700556798.7 +73.44544790548048 1700559892.6 +71.04996117862657 1700562986.6 +69.41002864587983 1700566080.5 +68.56556161526987 1700569174.5 +68.8510170431543 1700572268.4 +71.37024632682997 1700575362.4 +79.73984404325888 1700578456.3 +87.2553480311454 1700637108.6 +81.2345080682081 1700640186.2 +76.85955026453918 1700643263.7 +73.63149576011864 1700646341.2 +71.26943423728383 1700649418.8 +69.65470472692363 1700652496.3 +68.84506741663263 1700655573.9 +69.18092888929013 1700658651.4 +71.75651384426052 1700661728.9 +80.17651760546252 1700664806.5 +87.30207700450771 1700723605.4 +81.34721941079756 1700726666.9 +77.01671802538004 1700729728.4 +73.81613909845694 1700732789.9 +71.48295766941943 1700735851.4 +69.89710825285654 1700738912.9 +69.12089614658464 1700741974.4 +69.50121403749353 1700745035.9 +72.127205037237 1700748097.4 +80.57836144734719 1700751158.9 +87.34285635134835 1700810101 +81.45765819827614 1700813146.8 +77.16425908828847 1700816192.7 +73.99850988168434 1700819238.5 +71.6868544036226 1700822284.4 +70.12620800944623 1700825330.3 +69.3848256234933 1700828376.1 +69.80592286124283 1700831422 +72.48459246087027 1700834467.8 +80.94905264032366 1700837513.7 +87.38731276959975 1700896595.3 +81.56074284293317 1700899625.9 +77.31180015119692 1700902656.5 +74.17125396697931 1700905687.2 +71.8848015113041 1700908717.8 +70.35530776603593 1700911748.4 +69.64280547388029 1700914779 +70.1010049870597 1700917809.6 +72.82045393352777 1700920840.3 +81.29454081091359 1700923870.9 +87.42441504502962 1700983088.3 +81.6615549324793 1700986104.1 +77.44971451617293 1700989119.9 +74.33804842575262 1700992135.7 +72.07679899246394 1700995151.5 +70.56883119817154 1700998167.3 +69.8874815549241 1701001183.1 +70.38646041494414 1701004198.9 +73.14441615314195 1701007214.7 +81.61114888770624 1701010230.5 +87.46519439187026 1701069579.9 +81.76236702202543 1701072581.3 +77.58535632603802 1701075582.7 +74.50116581311514 1701078584.1 +72.26144233080224 1701081585.5 +70.78235463030713 1701084586.9 +70.12620800944623 1701087588.3 +70.66001658978524 1701090589.7 +73.44912497689126 1701093591.1 +81.9062310135231 1701096592.5 +87.50002411218921 1701156070.1 +81.8595020401608 1701159057.5 +77.71732106449234 1701162045 +74.658333573956 1701165032.4 +72.44381311402964 1701168019.8 +70.9839788093994 1701171007.3 +70.3589848374467 1701173994.7 +70.9239460666939 1701176982.2 +73.73825747618645 1701179969.6 +82.17383756184253 1701182957 +87.53485383250818 1701242558.6 +81.94701036036373 1701245532.6 +77.84560873153592 1701248506.5 +74.80587463686444 1701251480.5 +72.6165571993246 1701254454.4 +71.17824884567014 1701257428.3 +70.57845789610397 1701260402.3 +71.17229921914847 1701263376.2 +74.01776327754921 1701266350.2 +82.42446326940801 1701269324.1 +87.57195610793804 1701329045.5 +82.03224612545576 1701332006.4 +77.96199714553616 1701334967.4 +74.95341569977288 1701337928.3 +72.77967458668715 1701340889.2 +71.36656925541921 1701343850.1 +70.79198132823956 1701346811 +71.4110256736706 1701349771.9 +74.27801568304712 1701352732.8 +82.65129047088679 1701355693.7 +87.60083620173535 1701415530.7 +82.1197544456587 1701418479.1 +78.07838555953639 1701421427.4 +75.09133006474887 1701424375.8 +72.94051941893876 1701427324.1 +71.54299041212492 1701430272.5 +70.99587806244274 1701433220.9 +71.6401254302603 1701436169.2 +74.53231846202334 1701439117.6 +82.8648139030224 1701442065.9 +87.63198885064354 1701502014 +82.19904058422907 1701504950.3 +78.19109690212585 1701507886.6 +75.22697187461398 1701510822.9 +73.09401010836888 1701513759.3 +71.7157344974199 1701516695.6 +71.18787554360257 1701519631.9 +71.85959848891757 1701522568.2 +74.76509529002381 1701525504.5 +83.0650335658148 1701528440.8 +87.66314149955174 1701588495.5 +82.2709725799779 1701591420.2 +78.29785861819366 1701594345 +75.34930991513588 1701597269.7 +73.23560154475564 1701600194.5 +71.87885188478243 1701603119.2 +71.37024632682997 1701606044 +72.06122266800983 1701608968.8 +74.98824542009184 1701611893.5 +83.24145472252053 1701614818.3 +87.69429414845995 1701674974.9 +82.3465816471375 1701677888.6 +78.39499363632902 1701680802.3 +75.47164795565779 1701683716.1 +73.37351590973164 1701686629.8 +72.0360196456233 1701689543.5 +71.54299041212492 1701692457.3 +72.26144233080224 1701695371 +75.19809178081668 1701698284.7 +83.41052173640473 1701701198.4 +87.71949717084648 1701761452.2 +82.41256401636467 1701764355.5 +78.48985609935349 1701767258.7 +75.58803636965801 1701770161.9 +73.50548064818598 1701773065.2 +72.18356070853173 1701775968.4 +71.71205742600914 1701778871.6 +72.44381311402964 1701781774.9 +75.39008926197651 1701784678.1 +83.5676894972456 1701787581.3 +87.744700193233 1701847927.4 +82.47854638559183 1701850820.7 +78.5810414909672 1701853714 +75.69479808572581 1701856607.2 +73.63149576011864 1701859500.5 +72.32147507350774 1701862393.8 +71.86327556032833 1701865287.1 +72.6165571993246 1701868180.4 +75.57473260031482 1701871073.6 +83.70928093363237 1701873966.9 +87.76990321561954 1701934400.3 +82.54085168340823 1701937284.2 +78.66260018464845 1701940168.1 +75.79788273038284 1701943052 +73.74420710270812 1701945935.9 +72.45343981196207 1701948819.8 +72.01081662323676 1701951703.6 +72.77967458668715 1701954587.5 +75.74747668560978 1701957471.4 +83.83529604556503 1701960355.3 +87.7891566114844 1702020870.9 +82.59720735470297 1702023746 +78.74415887832973 1702026621 +75.89274519340732 1702029496.1 +73.85691844529758 1702032371.1 +72.57577785248398 1702035246.2 +72.14873098821276 1702038121.2 +72.93089272100633 1702040996.3 +75.90464444645063 1702043871.3 +83.95395701467616 1702046746.4 +87.81068256246019 1702107339.1 +82.64761339947603 1702110205.9 +78.81609087407855 1702113072.7 +75.98025351361025 1702115939.5 +73.9577305348437 1702118806.3 +72.6921662664842 1702121673.1 +72.27474610014544 1702124539.9 +73.0724841573931 1702127406.7 +76.05218550935909 1702130273.5 +84.06439580215473 1702133140.3 +87.82993595832505 1702193804.8 +82.6980194442491 1702196664 +78.88575031471649 1702199523.1 +76.06181220729152 1702202382.2 +74.04891592645741 1702205241.3 +72.79892798255199 1702208100.5 +72.39340706925658 1702210959.6 +73.20077182443667 1702213818.7 +76.18782731922418 1702216677.8 +84.16153082029011 1702219537 +87.84551228277913 1702280268 +82.73879879108972 1702283120 +78.94805561253288 1702285972.1 +76.13742127445111 1702288824.1 +74.13642424666035 1702291676.2 +72.89606300068738 1702294528.2 +72.50384585673514 1702297380.3 +73.3171602384369 1702300232.3 +76.31016535974608 1702303084.4 +84.24903914049304 1702305936.4 +87.86108860723324 1702366728.5 +82.77957813793036 1702369574.1 +79.00441128382761 1702372419.6 +76.20935327019995 1702375265.2 +74.21798294034161 1702378110.8 +72.9812987657794 1702380956.4 +72.6009808748705 1702383802 +73.42987158102638 1702386647.6 +76.42287670233554 1702389493.1 +84.3283252790634 1702392338.7 +87.87666493168734 1702453186.3 +82.82035748477101 1702456026 +79.05481732860069 1702458865.7 +76.26938601290546 1702461705.4 +74.28764238097955 1702464545.2 +73.06285745946067 1702467384.9 +72.6921662664842 1702470224.6 +73.52473404405085 1702473064.4 +76.52368879188167 1702475904.1 +84.40025727481223 1702478743.8 +87.88629162961978 1702539641.3 +82.8515101336792 1702542475.8 +79.10522337337376 1702545310.3 +76.32574168420018 1702548144.7 +74.35362475020672 1702550979.2 +73.13478945520951 1702553813.7 +72.76777533364381 1702556648.2 +73.61224236425379 1702559482.7 +76.61119711208462 1702562317.2 +84.46029001751774 1702565151.7 +87.90186795407388 1702626093.4 +82.8803902274765 1702628923.3 +79.14005309369271 1702631753.2 +76.37614772897325 1702634583.1 +74.40998042150144 1702637413 +73.194822197915 1702640242.9 +72.83970732939264 1702643072.7 +73.68785143141338 1702645902.6 +76.68680617924421 1702648732.5 +84.51664568881247 1702651562.4 +87.91149465200631 1702712542.7 +82.90559324986303 1702715368.6 +79.17715536912259 1702718194.5 +76.41692707581387 1702721020.4 +74.45670939486375 1702723846.3 +73.25117786920973 1702726672.2 +72.89974007209814 1702729498.2 +73.75383380064055 1702732324.1 +76.75278854847139 1702735150 +84.56337466217477 1702737975.9 +87.91744427852798 1702798988.9 +82.9271192008388 1702801811.5 +79.20603546291989 1702804634.1 +76.45175679613284 1702807456.7 +74.49521618659348 1702810279.3 +73.29790684257205 1702813101.8 +72.94646904546045 1702815924.4 +73.81018947193527 1702818747 +76.80914421976611 1702821569.6 +84.59820438249373 1702824392.2 +87.92707097646041 1702885432.2 +82.9426955252929 1702888252.1 +79.23351104041733 1702891072 +76.48290944504105 1702893891.9 +74.53231846202334 1702896711.7 +73.332736562891 1702899531.6 +72.98724839230107 1702902351.5 +73.85096881877591 1702905171.4 +76.85360063801751 1702907991.3 +84.62935703140194 1702910811.2 +87.93302060298208 1702971872.4 +82.958271849747 1702974690.2 +79.24681480976052 1702977508.1 +76.50443539601682 1702980325.9 +74.55752148440988 1702983143.7 +73.35793958527753 1702985961.6 +73.01840104120927 1702988779.4 +73.88579853909486 1702991597.3 +76.88475328692572 1702994415.1 +84.65456005378846 1702997233 +87.93302060298208 1703058309.4 +82.96789854767943 1703061125.9 +79.26239113421462 1703063942.3 +76.51773916536001 1703066758.8 +74.57309780886398 1703069575.2 +73.3794655362533 1703072391.7 +73.03765443707414 1703075208.1 +73.90732449007064 1703078024.6 +76.90995630931224 1703080841 +84.67013637824256 1703083657.5 +87.93669767439285 1703144743.3 +82.97157561909019 1703147559 +79.2683407607363 1703150374.7 +76.52368879188167 1703153190.4 +74.58272450679641 1703156006.1 +73.38909223418574 1703158821.8 +73.05323076152824 1703161637.5 +73.91695118800307 1703164453.3 +76.91958300724468 1703167269 +84.67381344965332 1703170084.7 +87.93669767439285 1703231173.9 +82.97157561909019 1703233989.6 +79.2683407607363 1703236805.2 +76.52963841840334 1703239620.8 +74.58272450679641 1703242436.4 +73.38909223418574 1703245252 +73.05323076152824 1703248067.7 +73.91695118800307 1703250883.3 +76.91958300724468 1703253698.9 +84.67381344965332 1703256514.5 +87.93669767439285 1703317601.3 +82.96789854767943 1703320417.5 +79.26239113421462 1703323233.7 +76.52368879188167 1703326049.9 +74.57309780886398 1703328866.1 +73.38314260766407 1703331682.3 +73.04360406359581 1703334498.5 +73.9110015614814 1703337314.7 +76.90995630931224 1703340130.9 +84.67013637824256 1703342947 +87.93302060298208 1703404025.5 +82.96194892115776 1703406842.9 +79.25276443628219 1703409660.3 +76.50811246742758 1703412477.7 +74.55752148440988 1703415295.1 +73.3638892117992 1703418112.5 +73.02207811262004 1703420929.9 +73.89174816561653 1703423747.3 +76.89070291344738 1703426564.7 +84.65456005378846 1703429382.1 +87.92707097646041 1703490446.3 +82.95232222322534 1703493265.6 +79.23718811182809 1703496084.9 +76.48885907156271 1703498904.1 +74.5359955334341 1703501723.4 +73.33868618941267 1703504542.7 +72.99687509023352 1703507362 +73.85691844529758 1703510181.2 +76.85955026453918 1703513000.5 +84.62935703140194 1703515819.8 +87.92707097646041 1703576863.8 +82.93674589877124 1703579685.6 +79.21793471596322 1703582507.4 +76.46365604917618 1703585329.2 +74.5071154396368 1703588151 +73.30753354050448 1703590972.8 +72.95609574339288 1703593794.6 +73.81613909845694 1703596616.4 +76.81282129117687 1703599438.2 +84.59820438249373 1703602260 +87.91744427852798 1703663277.9 +82.91749250290637 1703666102.9 +79.18678206705502 1703668927.9 +76.43250340026798 1703671752.8 +74.47001316420695 1703674577.8 +73.26080456714217 1703677402.8 +72.91163932514148 1703680227.7 +73.76346049857298 1703683052.7 +76.7624152464038 1703685877.7 +84.56337466217477 1703688702.6 +87.91149465200631 1703749688.7 +82.89001692540893 1703752517.5 +79.15562941814683 1703755346.3 +76.39172405342735 1703758175 +74.42555674595555 1703761003.8 +73.2103985223691 1703763832.6 +72.84933402732507 1703766661.4 +73.69747812934581 1703769490.1 +76.69643287717665 1703772318.9 +84.51664568881247 1703775147.7 +87.90186795407388 1703836096.1 +82.8648139030224 1703838929.3 +79.12079969782786 1703841762.6 +76.34131800865428 1703844595.8 +74.36920107466081 1703847429 +73.15036577966362 1703850262.2 +72.78335165809791 1703853095.5 +73.62781868870788 1703855928.7 +76.62082381001706 1703858761.9 +84.46029001751774 1703861595.1 +87.88629162961978 1703922500.1 +82.83593380922508 1703925338.4 +79.07407072446556 1703928176.7 +76.29091196388121 1703931015 +74.30916833195532 1703933853.3 +73.07843378391476 1703936691.7 +72.7077425909383 1703939530 +73.54031036850495 1703942368.3 +76.52963841840334 1703945206.6 +84.40025727481223 1703948044.9 +87.87666493168734 1704008900.8 +82.79883153379524 1704011744.8 +79.02366467969249 1704014588.8 +76.22860666606482 1704017432.8 +74.23723633620648 1704020276.8 +73.00282471675517 1704023120.8 +72.62023427073537 1704025964.8 +73.44544790548048 1704028808.9 +76.43250340026798 1704031652.9 +84.3283252790634 1704034496.9 +87.86108860723324 1704095298 +82.75805218695459 1704098148.4 +78.96730900839776 1704100998.7 +76.16262429683765 1704103849 +74.16162726904687 1704106699.4 +72.91531639655224 1704109549.7 +72.5253718077109 1704112400.1 +73.33868618941267 1704115250.4 +76.31979205767851 1704118100.7 +84.24903914049304 1704120951.1 +87.84551228277913 1704181691.9 +82.71727284011396 1704184549.2 +78.90727626569225 1704187406.5 +76.08701522967804 1704190263.7 +74.07411894884395 1704193121 +72.82045393352777 1704195978.3 +72.41861009164312 1704198835.6 +73.22002522030154 1704201692.9 +76.19972657226752 1704204550.1 +84.16153082029011 1704207407.4 +87.82625888691429 1704268082.4 +82.6668667953409 1704270947.3 +78.84129389646509 1704273812.1 +76.00545653599679 1704276676.9 +73.98293355723023 1704279541.7 +72.71369221745996 1704282406.5 +72.2962720511212 1704285271.3 +73.08806048184721 1704288136.2 +76.06548927870229 1704291001 +84.06071873074397 1704293865.8 +87.80473293593852 1704354469.6 +82.61646075056782 1704357342.6 +78.76936190071626 1704360215.5 +75.92022077090475 1704363088.5 +73.8821214676841 1704365961.4 +72.6009808748705 1704368834.4 +72.1739340105993 1704371707.3 +72.95241867198212 1704374580.3 +75.92022077090475 1704377453.3 +83.95395701467616 1704380326.2 +87.78547954007364 1704440853.5 +82.56605470579477 1704443735.1 +78.69375283355666 1704446616.8 +75.82676282418014 1704449498.5 +73.7753597516163 1704452380.2 +72.4786428343486 1704455261.8 +72.0360196456233 1704458143.5 +72.79892798255199 1704461025.2 +75.76078045495298 1704463906.9 +83.83529604556503 1704466788.5 +87.76395358909788 1704527234 +82.50602196308927 1704530125 +78.6121941398754 1704533015.9 +75.72595073463401 1704535906.9 +73.65897133761608 1704538797.9 +72.35262772241593 1704541688.9 +71.89442820923652 1704544579.8 +72.63581059518947 1704547470.8 +75.58803636965801 1704550361.8 +83.7033313071107 1704553252.8 +87.73875056671133 1704613611.3 +82.44371666527287 1704616512.1 +78.52100874826169 1704619412.9 +75.6191890185662 1704622313.8 +73.53663329709417 1704625214.6 +72.21471335743993 1704628115.4 +71.73726044839567 1704631016.3 +72.4630665098945 1704633917.1 +75.40566558643062 1704636817.9 +83.56173987072393 1704639718.8 +87.71354754432481 1704699985.3 +82.37773429604569 1704702896.5 +78.429823356648 1704705807.8 +75.50647767597675 1704708719 +73.40834563005062 1704711630.3 +72.06717229453149 1704714541.5 +71.57046598962236 1704717452.7 +72.2806957266671 1704720364 +75.20771847874911 1704723275.2 +83.40457210988306 1704726186.5 +87.68834452193828 1704786356.1 +82.30580230029686 1704789278.3 +78.32673871199096 1704792200.5 +75.38641219056575 1704795122.7 +73.27270382018551 1704798044.9 +71.91000453369064 1704800967.1 +71.3954493492165 1704803889.3 +72.08869824550727 1704806811.5 +75.00014467313517 1704809733.7 +83.23777765110977 1704812655.9 +87.65719187303009 1704872723.6 +82.23019323313726 1704875657.3 +78.22592662244482 1704878591 +75.25812452352218 1704881524.7 +73.12516275727708 1704884458.4 +71.74688714632809 1704887392.1 +71.21307856598911 1704890325.8 +71.87885188478243 1704893259.4 +74.77472198795624 1704896193.1 +83.05313431277146 1704899126.8 +87.62603922412188 1704959088.1 +82.148634539456 1704962033.8 +78.11548783496626 1704964979.5 +75.12615978506784 1704967925.2 +72.97167206784697 1704970870.8 +71.58009268755481 1704973816.5 +71.02108108482926 1704976762.2 +71.66165138123607 1704979707.9 +74.54194515995577 1704982653.6 +82.85518720508996 1704985599.3 +87.59715913032458 1705045449.4 +82.06707584577474 1705048407.6 +78.00277649237678 1705051365.8 +74.98824542009184 1705054324 +72.8145043070061 1705057282.2 +71.3954493492165 1705060240.4 +70.81718435062609 1705063198.6 +71.43622869605713 1705066156.8 +74.29359200750122 1705069115 +82.6379867015436 1705072073.2 +87.56600648141637 1705131807.7 +81.9818400806827 1705134778.9 +77.88043845185489 1705137750.1 +74.84665398370507 1705140721.3 +72.65138691964357 1705143692.5 +71.20940149457834 1705146663.7 +70.60961054501216 1705149634.8 +71.19382517012424 1705152606 +74.02966253059255 1705155577.2 +82.4088869449539 1705158548.4 +87.53117676109741 1705218162.9 +81.89433176047976 1705221147.6 +77.75810041133298 1705224132.3 +74.69543584938589 1705227116.9 +72.4786428343486 1705230101.6 +71.0151314583076 1705233086.3 +70.38646041494414 1705236071 +70.94319946255877 1705239055.6 +73.75015672922979 1705242040.3 +82.15458416597767 1705245025 +87.49407448566754 1705304515.2 +81.7994692974553 1705307513.8 +77.62613567287866 1705310512.4 +74.54194515995577 1705313511 +72.2962720511212 1705316509.6 +70.81123472410442 1705319508.3 +70.15736065835442 1705322506.9 +70.6792699856501 1705325505.5 +73.45507460341291 1705328504.1 +81.87875543602567 1705331502.7 +87.45329513882692 1705390864.5 +81.70233427931994 1705393877.5 +77.49049386301355 1705396890.5 +74.37882777259324 1705399903.5 +72.11390126789381 1705402916.5 +70.60366091849049 1705405929.6 +69.9186342038323 1705408942.6 +70.405713810809 1705411955.6 +73.14441615314195 1705414968.6 +81.5859458653197 1705417981.6 +87.41478834709719 1705477210.9 +81.6015221897738 1705480238.8 +77.35257949803756 1705483266.6 +74.21203331381994 1705486294.5 +71.91963123162307 1705489322.3 +70.38646041494414 1705492350.2 +69.66800849626684 1705495378 +70.12025838292456 1705498405.9 +72.82045393352777 1705501433.8 +81.2656607171163 1705504461.6 +87.37400900025655 1705563554.5 +81.494760473706 1705566597.6 +77.20503843512911 1705569640.7 +74.03333960200331 1705572683.9 +71.72168412394157 1705575727 +70.15736065835442 1705578770.1 +69.41002864587983 1705581813.2 +69.82149918569694 1705584856.3 +72.4786428343486 1705587899.5 +80.91422292000468 1705590942.6 +87.33322965341591 1705649895.3 +81.3879987576382 1705652954.1 +77.05749737222068 1705656012.9 +73.85691844529758 1705659071.7 +71.51411031832762 1705662130.5 +69.92826090176473 1705665189.3 +69.14609916897116 1705668248.1 +69.51084073542597 1705671306.9 +72.12352796582624 1705674365.7 +80.53758210050657 1705677424.5 +87.2865006800536 1705736233.4 +81.27528741504874 1705739308.3 +76.90032961137982 1705742383.1 +73.67227510695928 1705745458 +71.3042639576028 1705748532.9 +69.68358482072094 1705751607.8 +68.86659336760839 1705754682.6 +69.19055558722256 1705757757.5 +71.74688714632809 1705760832.4 +80.12611156068945 1705763907.3 +87.24204426180222 1705822568.8 +81.1588990010485 1705825660.1 +76.74316185053895 1705828751.5 +73.48027762579945 1705831842.8 +71.08706345405643 1705834934.1 +69.43523166826637 1705838025.5 +68.58113793972397 1705841116.8 +68.85469411456506 1705844208.2 +71.35694255748678 1705847299.5 +79.67981130055338 1705850390.8 +87.19531528843991 1705908901.5 +81.0365609605266 1705912009.7 +76.5800444631764 1705915117.9 +73.28600758952871 1705918226.1 +70.86391332398841 1705921334.3 +69.18092888929013 1705924442.4 +68.29200544042877 1705927550.6 +68.51515557049679 1705930658.8 +70.94319946255877 1705933767 +79.19273169357669 1705936875.1 +87.14490924366685 1705995231.7 +80.91422292000468 1705998357.1 +76.41097744929222 1706001482.5 +73.08438341043643 1706004607.9 +70.63481356739871 1706007733.2 +68.92294903890313 1706010858.6 +67.98729661667946 1706013984 +68.15409107545277 1706017109.4 +70.51842515339848 1706020234.8 +78.66854981117012 1706023360.1 +87.09450319889379 1706081559.4 +80.78820780807203 1706084702.3 +76.23823336399725 1706087845.3 +72.88048667623328 1706090988.2 +70.39608711287657 1706094131.1 +68.6530699354728 1706097274 +67.6766381664085 1706100417 +67.78934950899796 1706103559.9 +70.06617526674074 1706106702.8 +78.09396188399047 1706109845.7 +87.0418245990098 1706167884.6 +80.6562430696177 1706171045.4 +76.05586258076985 1706174206.2 +72.66696324409767 1706177367 +70.15736065835442 1706180527.8 +68.37724120552079 1706183688.6 +67.3563530182051 1706186849.4 +67.40675906297817 1706190010.2 +69.59834905562889 1706193171.1 +77.46896791203778 1706196331.9 +86.98774148282598 1706254207.5 +80.5183287046417 1706257386.5 +75.87349179754246 1706260565.5 +72.45343981196207 1706263744.5 +69.90673495078896 1706266923.5 +68.09405833274727 1706270102.5 +67.03239079859092 1706273281.5 +67.01086484761515 1706276460.5 +69.10899689354129 1706279639.5 +76.79356789531202 1706282818.5 +86.935062882942 1706340527.9 +80.3804143396657 1706343725.4 +75.69112101431504 1706346923 +72.23028968189405 1706350120.5 +69.65470472692363 1706353318 +67.80492583345206 1706356515.5 +66.69652932593344 1706359713 +66.60534393431972 1706362910.5 +68.60266389069974 1706366108 +76.06548927870229 1706369305.5 +86.87503014023652 1706426846.1 +80.23882290327893 1706430062.4 +75.49685097804432 1706433278.7 +72.00118992530433 1706436495.1 +69.39445232142573 1706439711.4 +67.51352077904596 1706442927.7 +66.35104115534351 1706446144 +66.18792376798096 1706449360.3 +68.06885531036072 1706452576.7 +75.27370084797627 1706455793 +86.81867446894178 1706513162 +80.0912818403705 1706516397.5 +75.30485349688448 1706519632.9 +71.77209016871464 1706522868.3 +69.13419991592784 1706526103.7 +67.20881195529667 1706529339.1 +65.99592628682115 1706532574.5 +65.76087690370976 1706535809.9 +67.51352077904596 1706539045.3 +74.42555674595555 1706542280.8 +86.75864172623628 1706599475.8 +79.94374077746205 1706602730.6 +75.1009567626813 1706605985.4 +71.53931334071416 1706609240.1 +68.86659336760839 1706612494.9 +66.90410313154736 1706615749.7 +65.6348617917771 1706619004.5 +65.31457664357369 1706622259.2 +66.93525578045556 1706625514 +73.52105697264008 1706628768.8 +86.69265935700912 1706685787.4 +79.79025008803195 1706689061.8 +74.89706002847814 1706692336.2 +71.29463725967037 1706695610.6 +68.5907646376564 1706698885.1 +66.58976760986565 1706702159.5 +65.26784767021138 1706705433.9 +64.86232675691596 1706708708.3 +66.3354648308894 1706711982.7 +72.55057483009745 1706715257.1 +86.63035405919271 1706772097 +79.63308232719108 1706775391.3 +74.68948622286422 1706778685.6 +71.04996117862657 1706781979.8 +68.31125883629362 1706785274.1 +66.26948246166224 1706788568.4 +64.89120685071326 1706791862.7 +64.39450054580412 1706795157 +65.70452123241503 1706798451.3 +71.52968664278173 1706801745.6 +86.56437168996554 1706858404.5 +79.47223749493946 1706861718.9 +74.47596279072862 1706865033.3 +70.801608026172 1706868347.7 +68.03175303493086 1706871662.1 +65.94324768693717 1706874976.5 +64.50493933328269 1706878290.9 +63.911098010238184 1706881605.4 +65.0543242380758 1706884919.8 +70.45244278417131 1706888234.2 +86.49838932073837 1706944710.1 +79.30912010757693 1706948044.9 +74.262439358593 1706951379.6 +70.55325487371744 1706954714.4 +67.74262053563567 1706958049.1 +65.61333584080133 1706961383.9 +64.11499474444136 1706964718.6 +63.418068776739815 1706968053.4 +64.37297459482835 1706971388.1 +69.31884325426614 1706974722.9 +86.42872988010045 1707031013.8 +79.14005309369271 1707034369.1 +74.03928922852498 1707037724.4 +70.29300246821953 1707041079.7 +67.44753840981879 1707044435 +65.27747436814381 1707047790.4 +63.71315090255669 1707051145.7 +62.90946321878735 1707054501 +63.666421929194385 1707057856.3 +68.12888805306623 1707061211.6 +86.35679788435161 1707117315.6 +78.96730900839776 1707120691.7 +73.81613909845694 1707124067.8 +70.02907299131087 1707127443.9 +67.15245628400193 1707130820 +64.93793582407557 1707134196 +63.30762998926126 1707137572.1 +62.391230962902455 1707140948.2 +62.93098916976312 1707144324.3 +66.88852680709326 1707147700.4 +86.28118881719202 1707203615.6 +78.79456492310278 1707207012.7 +73.58703934186725 1707210409.7 +69.7651435144022 1707213806.8 +66.8536970867743 1707217203.9 +64.59244765348562 1707220600.9 +62.89020982292249 1707223998 +61.86337200908511 1707227395.1 +62.16440376142365 1707230792.1 +65.58218319189312 1707234189.2 +86.20925682144316 1707289913.9 +78.61814376639707 1707293332.1 +73.35198995875587 1707296750.3 +69.49526441097186 1707300168.5 +66.548988263025 1707303586.8 +64.23733278496324 1707307005 +62.46911258517296 1707310423.2 +61.31398710429201 1707313841.5 +61.37034277558674 1707317259.7 +64.21580683398749 1707320677.9 +86.13364775428357 1707376210.4 +78.43350042805876 1707379650 +73.11921313075541 1707383089.6 +69.22170823613077 1707386529.1 +66.23465274134328 1707389968.7 +63.87994536132999 1707393408.3 +62.03611609438009 1707396847.9 +60.76092512808815 1707400287.4 +60.54740169595256 1707403727 +62.77749848033302 1707407166.6 +86.05208906060231 1707462505.3 +78.24745257342059 1707465966.4 +72.88048667623328 1707469427.5 +68.94815206128968 1707472888.6 +65.9239942910723 1707476349.7 +63.52115342139686 1707479810.8 +61.59944253217645 1707483271.9 +60.18633720090851 1707486732.9 +59.689630895999386 1707490194 +61.26953068604061 1707493655.1 +85.97053036692104 1707548798.6 +78.05913216367152 1707552281.4 +72.63581059518947 1707555764.2 +68.6686462599269 1707559246.9 +65.6037091428689 1707562729.7 +63.15413929983116 1707566212.5 +61.156819343451154 1707569695.2 +59.60212257579645 1707573178 +58.79843489202711 1707576660.8 +59.67773164295605 1707580143.5 +85.885294601829 1707635090.4 +77.86486212740078 1707638595 +72.38745744273491 1707642099.6 +68.38319083204246 1707645604.2 +65.2834239946655 1707649108.8 +62.78344810685469 1707652613.4 +60.704569456793415 1707656118 +59.00828125275194 1707659622.6 +57.88063134936845 1707663127.2 +59.576919553409915 1707666631.8 +85.80373590814774 1707721380.7 +77.66691501971928 1707724907.2 +72.13910429028033 1707728433.8 +68.09405833274727 1707731960.4 +64.95718921994042 1707735487 +62.40680728735655 1707739013.5 +60.24864249872492 1707742540.1 +58.39886360525335 1707746066.7 +56.923452976169 1707749593.3 +56.23247663498914 1707753119.8 +85.7162275879448 1707807669.5 +77.46896791203778 1707811218.2 +71.8848015113041 1707814766.9 +67.80492583345206 1707818315.6 +64.63322700032626 1707821864.3 +62.02648939644766 1707825412.9 +59.78449335902385 1707828961.6 +57.777546704711405 1707832510.3 +55.937394509172265 1707836059 +54.373071043585135 1707839607.7 +85.62504219633111 1707893956.9 +77.26507117783461 1707897527.8 +71.6245491058062 1707901098.8 +67.50984370763518 1707904669.7 +64.29736552766876 1707908240.7 +61.64389895042784 1707911811.6 +59.316667147912014 1707915382.5 +57.142926034826274 1707918953.5 +54.91282925044581 1707922524.4 +52.400954109591666 1707926095.4 +85.53385680471742 1707980242.9 +77.05749737222068 1707983836.3 +71.36061962889754 1707987429.6 +67.21476158181834 1707991022.9 +63.96745368153292 1707994616.2 +61.253954361586516 1707998209.5 +58.83921423886774 1708001802.8 +56.49272904048704 1708005396.1 +53.85483878770024 1708008989.5 +47.63605171708143 1708012582.8 +85.43672178658204 1708066527.7 +76.84397394008508 1708070143.5 +71.09669015198887 1708073759.3 +66.91372982947979 1708077375.1 +63.62791513746466 1708080990.9 +60.86173721763428 1708084606.7 +58.35808425841271 1708088222.5 +55.83063279310447 1708091838.3 +52.76201860463569 1708095454.1 +35.1494760473706 1708099069.9 +85.33958676844667 1708152811.2 +76.62450088142782 1708156449.6 +70.82681104855853 1708160088 +66.6090210057305 1708163726.4 +63.28610403828549 1708167364.8 +60.465843002271285 1708171003.2 +57.86505502491435 1708174641.6 +55.155232776378696 1708178280 +51.63436870125219 1708181918.4 +0.0 1708185556.8 +85.23877467890054 1708239093.4 +76.40730037788146 1708242754.5 +70.5592045002391 1708246415.6 +66.3043121819812 1708250076.7 +62.940615867695556 1708253737.8 +60.06994878690829 1708257399 +57.37202579141598 1708261060.1 +54.4702060617205 1708264721.2 +50.46961652243882 1708268382.3 +0.0 1708272043.4 +85.1379625893544 1708325374.5 +76.1841502478134 1708329058.4 +70.2833757702871 1708332742.3 +65.99592628682115 1708336426.2 +62.595127697105625 1708340110.1 +59.668104945023615 1708343794 +56.87304693139594 1708347478 +53.76960302260821 1708351161.9 +49.27230717841739 1708354845.8 +0.0 1708358529.7 +85.03487794469737 1708411654.4 +75.95872756263448 1708415361.2 +70.00386996892433 1708419068 +65.68526783655017 1708422774.8 +62.24963952651569 1708426481.6 +59.26258403172818 1708430188.5 +56.36444137344347 1708433895.3 +53.057100730452575 1708437602.1 +48.03562300385519 1708441308.9 +0.0 1708445015.7 +84.92811622862956 1708497933.2 +75.72595073463401 1708501663 +69.7206870961508 1708505392.8 +65.37093231486843 1708509122.6 +61.89452465799332 1708512852.4 +58.85111349191108 1708516582.2 +55.85215874408024 1708520312 +52.33129466895373 1708524041.8 +46.766381664084925 1708527771.6 +0.0 1708531501.4 +84.817677441151 1708584211 +75.49317390663356 1708587963.9 +69.43523166826637 1708591716.7 +65.05064716666504 1708595469.6 +61.54308686088171 1708599222.5 +58.43964295209398 1708602975.3 +55.33987611471701 1708606728.2 +51.593589354411556 1708610481 +45.46003804888478 1708614233.9 +0.0 1708617986.8 +84.70128902715076 1708670487.8 +75.2544474521114 1708674263.8 +69.14977624038193 1708678039.8 +64.7340390898724 1708681815.8 +61.18797199235936 1708685591.8 +58.02222278575522 1708689367.8 +54.815694232310435 1708693143.8 +50.8425802705262 1708696919.8 +44.124814339887365 1708700695.8 +0.0 1708704471.8 +84.5885776845613 1708756763.6 +75.00977137106761 1708760562.8 +68.86064374108672 1708764362 +64.41007687025821 1708768161.2 +60.82690749731532 1708771960.5 +57.60480261941644 1708775759.7 +54.287835278493105 1708779558.9 +50.08334900500825 1708783358.1 +42.74653872893838 1708787157.3 +0.0 1708790956.5 +84.46623964403939 1708843038.4 +74.76141821861304 1708846860.9 +68.56556161526987 1708850683.4 +64.08979172205483 1708854505.9 +60.465843002271285 1708858328.4 +57.18370538166691 1708862150.9 +53.75770376956487 1708865973.4 +49.30713689873636 1708869795.9 +41.33938302419212 1708873618.4 +0.0 1708877440.9 +84.34390160351751 1708929312.4 +74.51079251104757 1708933158.3 +68.26680241804223 1708937004.1 +63.75987987591899 1708940850 +60.10477850722725 1708944695.8 +56.762608143917376 1708948541.6 +53.220218117815094 1708952387.5 +48.524975165942784 1708956233.3 +39.895125044015984 1708960079.2 +0.0 1708963925 +84.21788649158484 1709015585.5 +74.25648973207134 1709019454.8 +67.96577066570369 1709023324 +63.433645101193925 1709027193.3 +59.74003694077245 1709031062.5 +56.33556127964617 1709034931.8 +52.68045991095443 1709038801 +47.72723710869512 1709042670.3 +38.42198697004254 1709046539.5 +0.0 1709050408.7 +84.0859217531305 1709101857.8 +73.99256025516267 1709105750.5 +67.66701146847608 1709109643.2 +63.103733255058096 1709113535.9 +59.373022819206746 1709117428.6 +55.90851441537497 1709121321.3 +52.13334756127223 1709125214.1 +46.917599798404126 1709129106.8 +36.90806954922847 1709132999.5 +0.4581995131794051 1709136892.2 +83.95395701467616 1709188129.4 +73.73458040477568 1709192045.6 +67.36230264472677 1709195961.8 +62.76787178240059 1709199878 +59.00828125275194 1709203794.2 +55.48146755110377 1709207710.4 +51.58396265647912 1709211626.6 +46.10060834529159 1709215542.8 +35.36299947950619 1709219459 +0.47377583763350667 1709223375.2 +83.81604264970017 1709274400.1 +73.46470130134534 1709278339.9 +67.05164419445578 1709282279.7 +62.43795993626476 1709286219.4 +58.63759005977548 1709290159.2 +55.0484710603109 1709294099 +51.03457775168603 1709298038.7 +45.26804056772495 1709301978.5 +33.78677676087574 1709305918.2 +0.0 1709309858 +83.66850158679173 1709360670.2 +73.19114512650424 1709364633.6 +66.74098574418483 1709368596.9 +62.10209846360724 1709372560.3 +58.264626311688104 1709376523.6 +54.617747124628934 1709380487 +50.47556614896049 1709384450.4 +44.42952316363666 1709388413.7 +32.17204725051553 1709392377.1 +0.0 1709396340.4 +83.52691015040497 1709446939.6 +72.91531639655224 1709450926.6 +66.4266502225031 1709454913.6 +61.76255991953898 1709458900.6 +57.89393511871164 1709462887.6 +54.181073562425304 1709466874.6 +49.916554546234956 1709470861.6 +43.57542943509425 1709474848.6 +30.52616509124713 1709478835.6 +0.0 1709482822.6 +83.37341946097487 1709533208.4 +72.6321335237787 1709537219.1 +66.10636507429969 1709541229.7 +61.42074882035981 1709545240.4 +57.52324392573517 1709549251 +53.74212744511077 1709553261.7 +49.35159331698775 1709557272.4 +42.715386080030186 1709561283 +28.837231030027183 1709565293.7 +0.0 1709569304.4 +83.216251700134 1709619476.6 +72.34667809589426 1709623510.9 +65.7860799260963 1709627545.3 +61.08121027629155 1709631579.7 +57.148875661347944 1709635614 +53.30545388290713 1709639648.4 +48.782955016329794 1709643682.8 +41.84798858214459 1709647717.1 +27.115739803599194 1709651751.5 +0.0 1709655785.9 +83.05313431277146 1709705744.2 +72.05754559659907 1709709802.3 +65.4657947778929 1709713860.4 +60.739399177112375 1709717918.5 +56.77223484184981 1709721976.6 +52.86878032070349 1709726034.7 +48.21431671567181 1709730092.8 +40.96869183121565 1709734150.9 +25.363095928262982 1709738209 +0.0 1709742267.1 +82.89001692540893 1709792011.2 +71.76246347078221 1709796093.1 +65.14183255827871 1709800175 +60.39391100652245 1709804256.8 +56.39559402235167 1709808338.7 +52.426157131978194 1709812420.6 +47.63972878849218 1709816502.4 +40.07976838235428 1709820584.3 +23.569672706086152 1709824666.2 +0.0 1709828748 +82.71727284011396 1709878277.8 +71.46370427355457 1709882383.4 +64.81559778355366 1709886489.1 +60.05437246245419 1709890594.7 +56.01895320285354 1709894700.4 +51.9858064983638 1709898806.1 +47.06514086131255 1709902911.7 +39.18489530697124 1709907017.4 +21.73914720847944 1709911123 +0.0 1709915228.7 +82.54085168340823 1709964543.9 +71.15672289469437 1709968673.3 +64.48568593741783 1709972802.8 +59.702934665342575 1709976932.3 +55.64458493846631 1709981061.7 +51.54318330963849 1709985191.2 +46.48687586272216 1709989320.7 +38.28039553365577 1709993450.1 +19.87011491914301 1709997579.6 +0.0 1710001709 +82.35253127365917 1710050809.5 +70.84833699953431 1710054962.8 +64.14982446476033 1710059116.1 +59.357446494752644 1710063269.4 +55.2619944924465 1710067422.7 +51.100560120913194 1710071576 +45.912287935542516 1710075729.3 +37.36994613381863 1710079882.6 +17.9639803543767 1710084035.9 +0.0 1710088189.2 +82.1642108639101 1710137074.8 +70.53172892274166 1710141251.9 +63.813962992102816 1710145429.1 +59.011958324162705 1710149606.2 +54.887626228059275 1710153783.4 +50.657936932187894 1710157960.5 +45.32807331043045 1710162137.6 +36.45581966257074 1710166314.8 +16.026693140702196 1710170491.9 +0.0 1710174669 +81.9662637562286 1710223339.7 +70.21739340105992 1710227540.7 +63.480374074556224 1710231741.7 +58.66279308216201 1710235942.7 +54.505035782039464 1710240143.7 +50.217586298573494 1710244344.7 +44.74385868531839 1710248545.7 +35.5297939382795 1710252746.7 +14.056848761819632 1710256947.7 +0.0 1710261148.7 +81.75868995061467 1710309604.3 +69.89343118144576 1710313829.1 +63.138562975377056 1710318054 +58.31135528505041 1710322278.9 +54.128394962541336 1710326503.7 +49.76901348332652 1710330728.6 +44.159644060206325 1710334953.4 +34.6000911425775 1710339178.3 +12.05357917891796 1710343403.2 +0.0 1710347628 +81.54516651847906 1710395868.5 +69.56124678019903 1710400117.3 +62.79902443130879 1710404366 +57.95991748793881 1710408614.7 +53.74807707163243 1710412863.5 +49.32639029460122 1710417112.2 +43.57542943509425 1710421361 +33.66671127546474 1710425609.7 +10.021429502218991 1710429858.5 +0.0 1710434107.2 +81.32201638841103 1710482132.5 +69.22765786265244 1710486405.1 +62.453536260718856 1710490677.8 +57.61075224593811 1710494950.4 +53.371436252134295 1710499223 +48.88009003446516 1710503495.7 +42.98526518346052 1710507768.3 +32.7251092267194 1710512040.9 +7.9677538745442495 1710516313.6 +0.0 1710520586.2 +81.08696700529966 1710568396.2 +68.88584676347327 1710572692.7 +62.10804809012891 1710576989.3 +57.25563737741575 1710581285.8 +52.9911183612254 1710585582.3 +48.43746684573985 1710589878.8 +42.395100931826775 1710594175.4 +31.779830106563292 1710598471.9 +5.904451548937077 1710602768.4 +0.0 1710607065 +80.84824055077752 1710654659.7 +68.54035859288334 1710658980.2 +61.75661029301731 1710663300.6 +56.904199580304144 1710667621 +52.6108004703165 1710671941.4 +47.99484365701456 1710676261.9 +41.80720923530395 1710680582.3 +30.834550986407194 1710684902.7 +3.8255728988758047 1710689223.1 +0.0 1710693543.5 +80.5939377718013 1710740923.1 +68.19119335088263 1710745267.4 +61.40517249590571 1710749611.7 +56.549084711781774 1710753956 +52.23415965081837 1710758300.4 +47.548543396878486 1710762644.7 +41.21704498367022 1710766989 +29.88559479484033 1710771333.3 +1.752643875336202 1710775677.6 +0.0 1710780022 +80.33000829489262 1710827186.3 +67.83380592724936 1710831554.5 +61.05005762738334 1710835922.7 +56.191697288148504 1710840290.9 +51.85384175990947 1710844659.1 +47.10592020815319 1710849027.3 +40.62688073203648 1710853395.6 +28.930688976751792 1710857763.8 +0.0 1710862132 +0.0 1710866500.2 +80.05050249352986 1710913449.3 +67.47274143220532 1710917841.4 +60.69494275886098 1710922233.5 +55.84253204614781 1710926625.7 +51.47720094041133 1710931017.8 +46.66556957453879 1710935409.9 +40.033039408991975 1710939802 +27.979460230074018 1710944194.1 +0.0 1710948586.2 +0.0 1710952978.3 +79.76136999423466 1710999712.3 +67.10205023922886 1711004128.3 +60.339827890338626 1711008544.3 +55.48514462251453 1711012960.3 +51.100560120913194 1711017376.3 +46.222946385813486 1711021792.3 +39.442875157358245 1711026208.3 +27.02455441198549 1711030624.3 +0.0 1711035040.3 +0.0 1711039456.3 +79.45666117048535 1711085975.2 +66.7313590462524 1711090415.1 +59.978763395294585 1711094855 +55.13002975399216 1711099294.8 +50.72024223000429 1711103734.7 +45.780323197088194 1711108174.6 +38.85498346083541 1711112614.5 +26.063698967375284 1711117054.4 +0.0 1711121494.2 +0.0 1711125934.1 +79.13637602228195 1711172238.1 +66.35104115534351 1711176701.8 +59.61769890025055 1711181165.6 +54.774914885469805 1711185629.4 +50.34360141050615 1711190093.1 +45.33770000836288 1711194556.9 +38.264819209201676 1711199020.6 +25.108793149286747 1711203484.4 +0.0 1711207948.1 +0.0 1711212411.9 +78.80051454962445 1711258501 +65.96477363791294 1711262988.6 +59.25663440520652 1711267476.2 +54.419800016947434 1711271963.8 +49.966960591008025 1711276451.4 +44.90102644615926 1711280939 +37.67465495756794 1711285426.7 +24.153887331198217 1711289914.3 +0.0 1711294401.9 +0.0 1711298889.5 +78.44539968110209 1711344763.9 +65.57255649396069 1711349275.4 +58.89189283875172 1711353786.8 +54.062412593314164 1711358298.3 +49.59626939803155 1711362809.7 +44.45840325743396 1711367321.2 +37.08676326104511 1711371832.7 +23.196708957998776 1711376344.1 +0.0 1711380855.6 +0.0 1711385367 +78.06875886160395 1711431026.9 +65.17666227859769 1711435562.2 +58.52487871718601 1711440097.5 +53.7072977247918 1711444632.7 +49.21962857853342 1711449168 +44.02172969523032 1711453703.3 +36.50027608082213 1711458238.6 +22.24775276643191 1711462773.9 +0.0 1711467309.2 +0.0 1711471844.5 +77.67286464624095 1711517289.9 +64.77114136530227 1711521849 +58.15418752420955 1711526408.2 +53.35585992768019 1711530967.3 +48.848937385556965 1711535526.4 +43.58505613302668 1711540085.5 +35.91238438429931 1711544644.6 +21.296524019754138 1711549203.7 +0.0 1711553762.8 +0.0 1711558321.9 +77.25544447990218 1711603553.1 +64.35967082548515 1711608136 +57.783496331233074 1711612718.9 +53.000745059157836 1711617301.8 +48.47456912116972 1711621884.7 +43.152059642233816 1711626467.6 +35.32816975918723 1711631050.6 +20.347567828187273 1711635633.5 +0.0 1711640216.4 +0.0 1711644799.3 +76.80914421976611 1711689816.5 +63.94225065914639 1711694423.1 +57.412805138256616 1711699029.8 +52.645630190635465 1711703636.5 +48.10755499960402 1711708243.2 +42.721335706551855 1711712849.9 +34.743955134075165 1711717456.5 +19.402288708031175 1711722063.2 +0.0 1711726669.9 +0.0 1711731276.6 +76.33536838213261 1711776080 +63.51520379487519 1711780710.4 +57.03616431875848 1711785340.8 +52.2905153221131 1711789971.3 +47.736863806627554 1711794601.7 +42.288339215758974 1711799232.1 +34.16341758037387 1711803862.6 +18.46068665928583 1711808493 +0.0 1711813123.4 +0.0 1711817753.9 +75.8327124507018 1711862343.7 +63.088156930604 1711866997.9 +56.66547312578201 1711871652 +51.9390775250015 1711876306.2 +47.36984968506186 1711880960.3 +41.86129235148778 1711885614.5 +33.58515258178347 1711890268.6 +17.527306792173068 1711894922.8 +0.0 1711899577 +0.0 1711904231.1 +75.2989038703628 1711948607.7 +62.64553374187869 1711953285.5 +56.28883230628387 1711957963.4 +51.587639727889886 1711962641.2 +47.00510811860706 1711967319.1 +41.430568415805816 1711971996.9 +33.00461502808216 1711976674.8 +16.597603996471076 1711981352.6 +0.0 1711986030.5 +0.0 1711990708.3 +74.73026556970484 1712034871.9 +62.20291055315339 1712039573.4 +55.90851441537497 1712044275 +51.23252485936752 1712048976.5 +46.63809399704135 1712053678 +41.00947117805629 1712058379.5 +32.43002710090253 1712063081 +15.67157827217983 1712067782.5 +0.0 1712072484.1 +0.0 1712077185.6 +74.12084792220624 1712121136.5 +61.75066066649564 1712125861.6 +55.53187359587684 1712130586.8 +50.88108706225592 1712135311.9 +46.273352430586556 1712140037.1 +40.586101385195846 1712144762.2 +31.861388800244562 1712149487.4 +14.751502174410259 1712154212.5 +0.0 1712158937.7 +0.0 1712163662.8 +73.47432799927778 1712207401.4 +61.294733708427145 1712212150.1 +55.15155570496793 1712216898.9 +50.53192182025522 1712221647.6 +45.912287935542516 1712226396.4 +40.16500414744631 1712231145.1 +31.292750499586596 1712235893.8 +13.843325329684031 1712240642.6 +0.0 1712245391.3 +0.0 1712250140.1 +72.78335165809791 1712293666.6 +60.82690749731532 1712298438.9 +54.768965258948135 1712303211.2 +50.18048402314361 1712307983.5 +45.551223440498475 1712312755.8 +39.743906909696776 1712317528.1 +30.724112198928626 1712322300.4 +12.938825556368567 1712327072.7 +0.0 1712331845 +0.0 1712336617.4 +72.04791889866664 1712379932.3 +60.35540421479273 1712384728.1 +54.38864736803924 1712389523.9 +49.83499585255368 1712394319.7 +45.19610857197612 1712399115.6 +39.32648674335801 1712403911.4 +30.159150969681424 1712408707.2 +12.04395248098553 1712413503 +0.0 1712418298.8 +0.0 1712423094.7 +71.26943423728383 1712466198.4 +59.872001679226784 1712471017.7 +54.00237985060866 1712475837 +49.485830610552995 1712480656.3 +44.84099370345376 1712485475.5 +38.915016203540915 1712490294.8 +29.60013936695589 1712495114.1 +11.155029032124162 1712499933.4 +0.0 1712504752.7 +0.0 1712509572 +70.44649315764964 1712552464.9 +59.38859914366085 1712557307.7 +53.622061959699764 1712562150.4 +49.140342439963064 1712566993.1 +44.48955590634216 1712571835.8 +38.503545663723806 1712576678.5 +29.047077390752023 1712581521.2 +10.275732281195227 1712586363.9 +0.0 1712591206.6 +0.0 1712596049.4 +69.57682310465313 1712638732 +58.89189283875172 1712643598.1 +53.235794442269196 1712648464.2 +48.79258171426223 1712653330.3 +44.13444103781979 1712658196.3 +38.09802475042838 1712663062.4 +28.49174285943725 1712667928.5 +9.40011260167705 1712672794.6 +0.0 1712677660.7 +0.0 1712682526.8 +68.6686462599269 1712724999.6 +58.38696435221001 1712729889 +52.849526924838635 1712734778.4 +48.45304317019395 1712739667.8 +43.78895286722985 1712744557.2 +37.69023128202204 1712749446.6 +27.944630509755054 1712754336 +8.542341801723884 1712759225.4 +0.0 1712764114.8 +0.0 1712769004.2 +67.71741751324913 1712811267.7 +57.88063134936845 1712816180.4 +52.46325940740807 1712821093.1 +48.10755499960402 1712826005.7 +43.43751507011825 1712830918.4 +37.28838744013736 1712835831.1 +27.39524560496196 1712840743.7 +7.688248073181482 1712845656.4 +0.0 1712850569.1 +0.0 1712855481.8 +66.73730867277406 1712897536.5 +57.36012653837264 1712902472.3 +52.07699188997749 1712907408.2 +47.76801645553575 1712912344.1 +43.09797652604999 1712917279.9 +36.8865435982527 1712922215.8 +26.85548739810129 1712927151.7 +6.849730669093179 1712932087.6 +0.0 1712937023.4 +0.0 1712941959.3 +65.72604718339079 1712983805.8 +56.83821721107698 1712988764.8 +51.690724372546924 1712993723.9 +47.42620535635659 1712998682.9 +42.75248835546005 1713003641.9 +36.4906493828897 1713008600.9 +26.318001746351523 1713013559.9 +6.017162891526548 1713018518.9 +0.0 1713023477.9 +0.0 1713028436.9 +64.69325974303176 1713070075.9 +56.304408630737974 1713075057.9 +51.30445685511636 1713080040 +47.090343883699084 1713085022.1 +42.41662688280255 1713090004.2 +36.10070479404837 1713094986.3 +25.790142792534184 1713099968.4 +5.197898883303109 1713104950.4 +0.0 1713109932.5 +0.0 1713114914.6 +63.64121890680785 1713156346.6 +55.764650423877306 1713161351.7 +50.91223971116412 1713166356.8 +46.75675496615249 1713171361.8 +42.07481578362338 1713176366.9 +35.708487650096146 1713181372 +25.260011283605948 1713186377.1 +4.3845845016013385 1713191382.2 +0.0 1713196387.2 +0.0 1713201392.3 +62.56992467471909 1713242618.1 +55.217538074195105 1713247646.1 +50.52597219373355 1713252674.1 +46.42089349349499 1713257702.1 +41.74490393748755 1713262730.1 +35.322220132665564 1713267758.1 +24.73810195631028 1713272786.1 +3.586846444353671 1713277814.1 +0.0 1713282842.1 +0.0 1713287870.1 +61.486731189586976 1713328890.3 +54.662203542880334 1713333941.2 +50.13970467630298 1713338992 +46.09098164735916 1713344042.9 +41.414992091351714 1713349093.7 +34.941902241756665 1713354144.5 +24.21986970042538 1713359195.4 +2.801007640149345 1713364246.2 +0.0 1713369297.1 +0.0 1713374347.9 +60.38428430859002 1713415163.4 +54.1031919401548 1713420237 +49.74976008746166 1713425310.6 +45.76106980122333 1713430384.2 +41.085080245215885 1713435457.8 +34.55931179573687 1713440531.4 +23.70531451595124 1713445605 +2.028472605288209 1713450678.6 +0.0 1713455752.2 +0.0 1713460825.8 +59.272210729660614 1713501437.3 +53.53455363949683 1713506533.5 +49.36349257003109 1713511629.8 +45.43483502649825 1713516726.1 +40.75884547049081 1713521822.3 +34.18494353134964 1713526918.6 +23.196708957998776 1713532014.9 +1.2596146418378336 1713537111.1 +0.0 1713542207.4 +0.0 1713547303.7 +58.138611199755445 1713587712.1 +52.9599657123172 1713592830.9 +48.97722505260052 1713597949.7 +45.108600251773176 1713603068.6 +40.434883250876645 1713608187.4 +33.81425233837318 1713613306.3 +22.69405302656797 1713618425.1 +0.5086055579524699 1713623543.9 +0.0 1713628662.8 +0.0 1713633781.6 +56.98575827398541 1713673987.8 +52.375751087205124 1713679129.1 +48.59095753516995 1713684270.4 +44.78463803215902 1713689411.7 +40.118275174084005 1713694553 +33.44723821680746 1713699694.3 +22.201023793069606 1713704835.6 +0.0 1713709976.9 +0.0 1713715118.3 +0.0 1713720259.6 +55.817329023761275 1713760264.4 +51.7878593906823 1713765428.1 +48.20469001773938 1713770591.8 +44.46435288395563 1713775755.5 +39.800262580991514 1713780919.1 +33.082496650352674 1713786082.8 +21.70799455957124 1713791246.5 +0.0 1713796410.2 +0.0 1713801573.8 +0.0 1713806737.5 +54.62737382256137 1713846542.1 +51.191745512526886 1713851728 +47.81842250030882 1713856914 +44.14406773575222 1713862099.9 +39.489604130720544 1713867285.8 +32.7251092267194 1713872471.8 +21.22091495259454 1713877657.7 +0.0 1713882843.6 +0.0 1713888029.6 +0.0 1713893215.5 +53.4181652254966 1713932820.8 +50.59195456296072 1713938028.9 +47.43583205428902 1713943236.9 +43.829732214070496 1713948445 +39.17894568044957 1713953653.1 +32.36999435819703 1713958861.2 +20.743462043550274 1713964069.2 +0.0 1713969277.3 +0.0 1713974485.4 +0.0 1713979693.5 +52.19338030397773 1714019100.6 +49.98253691546212 1714024330.7 +47.05551416338012 1714029560.7 +43.51907376379952 1714034790.8 +38.87423685670028 1714040020.9 +32.018556561085425 1714045251 +20.26968620591677 1714050481.1 +0.0 1714055711.2 +0.0 1714060941.3 +0.0 1714066171.4 +50.94339236007232 1714105381.5 +49.373119267963524 1714110633.4 +46.66924664594955 1714115885.4 +43.20841531352855 1714121137.4 +38.57547765947264 1714126389.4 +31.673068390495494 1714131641.4 +19.804132549915842 1714136893.3 +0.0 1714142145.3 +0.0 1714147397.3 +0.0 1714152649.3 +49.67187846519115 1714191663.5 +48.7540749225325 1714196937.2 +46.292605826451414 1714202211 +42.90002941836849 1714207484.7 +38.2744459071341 1714212758.5 +31.32758021990556 1714218032.2 +19.33998341021477 1714223305.9 +0.0 1714228579.7 +0.0 1714233853.4 +0.0 1714239127.1 +48.38111117444512 1714277946.8 +48.12908095057979 1714283242.1 +45.912287935542516 1714288537.5 +42.598997666029945 1714293832.8 +37.97936378131724 1714299128.2 +30.993991302358964 1714304423.5 +18.88405645214627 1714309718.9 +0.0 1714315014.2 +0.0 1714320309.6 +0.0 1714325604.9 +45.836678868382926 1714364231.3 +47.50181442351619 1714369548.1 +45.53564711604438 1714374864.9 +42.29428884228064 1714380181.7 +37.69023128202204 1714385498.5 +30.658129829701462 1714390815.3 +18.4354836368993 1714396132.1 +0.0 1714401449 +0.0 1714406765.8 +0.0 1714412082.6 +45.733594223725895 1714450517.1 +46.86719375363106 1714455855.2 +45.16127885165715 1714461193.3 +41.999206716463775 1714466531.4 +37.401098782726834 1714471869.5 +30.32821798356563 1714477207.7 +17.995133003284902 1714482545.8 +0.0 1714487883.9 +0.0 1714493222 +0.0 1714498560.2 +42.85925007152785 1714536804.2 +46.232573083745926 1714542163.4 +44.788315103569786 1714547522.7 +41.70412459064691 1714552882 +37.12159298136407 1714558241.2 +30.00793283536223 1714563600.5 +17.556186885970362 1714568959.8 +0.0 1714574319 +0.0 1714579678.3 +0.0 1714585037.6 +42.99489188139295 1714623092.7 +45.588325715928356 1714628472.9 +44.41762391059332 1714633853.2 +41.414992091351714 1714639233.4 +36.84208718000131 1714644613.6 +29.687647687158826 1714649993.9 +17.13141257681007 1714655374.1 +0.0 1714660754.4 +0.0 1714666134.6 +0.0 1714671514.9 +36.89844285129604 1714709382.6 +44.94775541952156 1714714783.6 +44.052882344138524 1714720184.7 +41.12953666346728 1714725585.7 +36.5662584500493 1714730986.7 +29.37103961036619 1714736387.8 +16.708042783949637 1714741788.8 +0.0 1714747189.9 +0.0 1714752590.9 +0.0 1714757991.9 +35.12427302498406 1714795674 +44.30123549659309 1714801095.6 +43.68586822257282 1714806517.3 +40.84635379069375 1714811938.9 +36.2927022752082 1714817360.6 +29.066330786616888 1714822782.2 +16.292895172721774 1714828203.9 +0.0 1714833625.5 +0.0 1714839047.2 +0.0 1714844468.8 +30.083541902521826 1714881966.8 +43.651038502253854 1714887408.9 +43.32112665611802 1714892851 +40.56684798933098 1714898293 +36.02877279829954 1714903735.1 +28.761621962867586 1714909177.2 +15.885101704315431 1714914619.3 +0.0 1714920061.3 +0.0 1714925503.4 +0.0 1714930945.5 +29.433344908182594 1714968261.3 +43.00084150791462 1714973723.6 +42.960062161073985 1714979185.9 +40.287342187968214 1714984648.1 +35.76484332139088 1714990110.4 +28.462862765639954 1714995572.7 +15.48325786243076 1715001035 +0.0 1715006497.3 +0.0 1715011959.5 +0.0 1715017421.8 +23.262691327225937 1715054557.4 +42.354321584986145 1715060039.6 +42.604947292551614 1715065521.9 +40.01746308453787 1715071004.2 +35.51054054241463 1715076486.5 +28.167780639823086 1715081968.7 +15.093313273589432 1715087451 +0.0 1715092933.3 +0.0 1715098415.6 +0.0 1715103897.9 +18.57934762839697 1715140855.1 +41.70412459064691 1715146357.1 +42.253509495440014 1715151859.2 +39.74758398110754 1715157361.2 +35.2562377634384 1715162863.3 +27.88232521193865 1715168365.3 +14.707045756158866 1715173867.4 +0.0 1715179369.5 +0.0 1715184871.5 +0.0 1715190373.6 +0.0 1715227154.5 +41.05392759630768 1715232676.1 +41.90207169832841 1715238197.7 +39.489604130720544 1715243719.3 +35.00788461098383 1715249240.9 +27.599142339165123 1715254762.5 +14.324455310139061 1715260284.1 +0.0 1715265805.7 +0.0 1715271327.3 +0.0 1715276848.9 +1.4442579801761422 1715313455.6 +40.40373060196844 1715318996.5 +41.556583527738475 1715324537.5 +39.22935172522264 1715330078.4 +34.76320852994003 1715335619.3 +27.31963653780236 1715341160.2 +13.953764117162592 1715346701.1 +0.0 1715352242 +0.0 1715357782.9 +0.0 1715363323.8 +0.0 1715399758.6 +39.75353360762921 1715405318.6 +41.21704498367021 1715410878.5 +38.97137187483564 1715416438.5 +34.5244820754179 1715421998.5 +27.049757434372026 1715427558.4 +13.59269962211856 1715433118.4 +0.0 1715438678.4 +0.0 1715444238.3 +0.0 1715449798.3 +0.0 1715486063.4 +39.10928623981165 1715491642.2 +40.88118351101271 1715497220.9 +38.723018722381084 1715502799.7 +34.29170524741744 1715508378.5 +26.78582795746335 1715513957.2 +13.237584753596192 1715519536 +0.0 1715525114.8 +0.0 1715530693.5 +0.0 1715536272.3 +0.0 1715572370.1 +38.46871594340484 1715577967.4 +40.54532203835521 1715583564.7 +38.47834264133727 1715589162 +34.06260549082774 1715594759.3 +26.521898480554693 1715600356.6 +12.886146956484591 1715605953.9 +0.0 1715611551.2 +0.0 1715617148.4 +0.0 1715622745.7 +0.0 1715658678.7 +37.8318227184088 1715664294.3 +40.22135981874104 1715669909.8 +38.233666560293464 1715675525.4 +33.83350573423804 1715681140.9 +26.267595701578458 1715686756.4 +12.546608412416328 1715692372 +0.0 1715697987.5 +0.0 1715703603.1 +0.0 1715709218.6 +0.0 1715744989.4 +37.197202048523664 1715750622.9 +39.895125044015984 1715756256.4 +38.000889732293004 1715761889.9 +33.614032675580766 1715767523.4 +26.022919620534648 1715773156.9 +12.216696566280497 1715778790.4 +0.0 1715784423.9 +0.0 1715790057.3 +0.0 1715795690.8 +0.0 1715831302.1 +36.5662584500493 1715836953.2 +39.58078952233425 1715842604.4 +37.7717899757033 1715848255.5 +33.400509243445164 1715853906.7 +25.778243539490845 1715859557.8 +11.896411418077093 1715865209 +0.0 1715870860.1 +0.0 1715876511.3 +0.0 1715882162.4 +0.0 1715917616.9 +35.94721410461827 1715923285.3 +39.266454000652516 1715928953.8 +37.5426902191136 1715934622.3 +33.19293543783123 1715940290.8 +25.53951708496871 1715945959.3 +11.576126269873692 1715951627.8 +0.0 1715957296.3 +0.0 1715962964.8 +0.0 1715968633.3 +0.0 1716003933.8 +35.331846830597996 1716009619.3 +38.96174517690321 1716015304.8 +37.31954008904557 1716020990.3 +32.98903870362806 1716026675.8 +25.312689883489917 1716032361.3 +11.271417446124392 1716038046.8 +0.0 1716043732.3 +0.0 1716049417.8 +0.0 1716055103.3 +0.0 1716090252.9 +34.72242918309939 1716095955.1 +38.660713424564676 1716101657.3 +37.106016656909965 1716107359.5 +32.7874145245358 1716113061.7 +25.08726719831098 1716118763.8 +10.970385693785852 1716124466 +0.0 1716130168.2 +0.0 1716135870.4 +0.0 1716141572.6 +0.0 1716176574.3 +34.12263823353324 1716182292.8 +38.36563129874781 1716188011.3 +36.89844285129604 1716193729.9 +32.59314448826506 1716199448.4 +24.870066694764617 1716205166.9 +10.681253194490655 1716210885.4 +0.0 1716216603.9 +0.0 1716222322.4 +0.0 1716228040.9 +0.0 1716262898 +33.52879691048874 1716268632.5 +38.07649879945261 1716274367 +36.6885964905712 1716280101.5 +32.40482407851599 1716285835.9 +24.656543262629015 1716291570.4 +10.398070321717128 1716297304.9 +0.0 1716303039.4 +0.0 1716308773.9 +0.0 1716314508.4 +0.0 1716349224 +32.94825935678743 1716354974.1 +37.791043371568165 1716360724.2 +36.4906493828897 1716366474.3 +32.222453295288595 1716372224.4 +24.452646528425845 1716377974.5 +10.122241591765121 1716383724.6 +0.0 1716389474.7 +0.0 1716395224.8 +0.0 1716400974.9 +0.0 1716435552.4 +32.37962105612946 1716441317.7 +37.51748719672707 1716447083.1 +36.29865190172987 1716452848.4 +32.04970920999363 1716458613.7 +24.248749794222675 1716464379 +9.858312114856453 1716470144.3 +0.0 1716475909.6 +0.0 1716481675 +0.0 1716487440.3 +0.0 1716521883.3 +31.816932381993166 1716527663.4 +37.24760809329673 1716533443.6 +36.1103314919808 1716539223.7 +31.876965124698664 1716545003.9 +24.056752313062848 1716550784 +9.60400933588022 1716556564.2 +0.0 1716562344.3 +0.0 1716568124.5 +0.0 1716573904.6 +0.0 1716608216.6 +31.271224548610824 1716614011.2 +36.98962824290973 1716619805.8 +35.9279607087534 1716625600.3 +31.710170665925364 1716631394.9 +23.87438152983545 1716637189.5 +9.355656183425655 1716642984.1 +0.0 1716648778.6 +0.0 1716654573.2 +0.0 1716660367.8 +0.0 1716694552.5 +30.73373889686106 1716700361.1 +36.735325463933506 1716706169.7 +35.749266996936775 1716711978.3 +31.55073034997359 1716717786.8 +23.689738191497142 1716723595.4 +9.116929728903523 1716729404 +0.0 1716735212.6 +0.0 1716741021.2 +0.0 1716746829.7 +0.0 1716780891 +30.21550664097616 1716786713.1 +36.48697231147894 1716792535.3 +35.58247253816348 1716798357.5 +31.393562589132728 1716804179.6 +23.516994106202176 1716810001.8 +8.88782997231382 1716815824 +0.0 1716821646.1 +0.0 1716827468.3 +0.0 1716833290.4 +0.0 1716867232.1 +29.706901083023688 1716873067.4 +36.24824585695681 1716878902.7 +35.41935515080093 1716884738 +31.246021526224293 1716890573.3 +23.35019964742888 1716896408.6 +8.664679842245787 1716902243.9 +0.0 1716908079.2 +0.0 1716913914.5 +0.0 1716919749.8 +0.0 1716953575.9 +29.213871849525322 1716959423.8 +36.0191461003671 1716965271.8 +35.26218738996007 1716971119.8 +31.104430089837525 1716976967.8 +23.193031886588013 1716982815.8 +8.451156410110187 1716988663.8 +0.0 1716994511.8 +0.0 1717000359.8 +0.0 1717006207.8 +0.0 1717039922.3 +28.73641894048105 1717045782.6 +35.79599597029908 1717051642.8 +35.10869670052996 1717057503 +30.966515724861523 1717063363.2 +23.03954119715791 1717069223.4 +8.253209302428688 1717075083.7 +0.0 1717080943.9 +0.0 1717086804.1 +0.0 1717092664.3 +0.0 1717126271.6 +28.274542355890887 1717132143.5 +35.58247253816348 1717138015.5 +34.96115563762154 1717143887.5 +30.840500612928864 1717149759.5 +22.892000134249475 1717155631.4 +8.05893926615795 1717161503.4 +0.0 1717167375.4 +0.0 1717173247.4 +0.0 1717179119.3 +0.0 1717212623.6 +27.825969540643914 1717218506.8 +35.378575803960295 1717224390.1 +34.82551382775644 1717230273.3 +30.714485500996197 1717236156.6 +22.75040869786271 1717242039.8 +7.87061885640888 1717247923.1 +0.0 1717253806.3 +0.0 1717259689.6 +0.0 1717265572.8 +0.0 1717298978.4 +27.40119523148363 1717304872.5 +35.180628696278795 1717310766.5 +34.691276534191196 1717316660.5 +30.595824531885057 1717322554.5 +22.618443959408374 1717328448.6 +7.697874771113913 1717334342.6 +0.0 1717340236.6 +0.0 1717346130.6 +0.0 1717352024.7 +0.0 1717385336.2 +26.99340176307729 1717391240.5 +34.992308286529735 1717397144.8 +34.56526142225854 1717403049 +30.479436117884827 1717408953.3 +22.496105918886474 1717414857.6 +7.531080312340617 1717420761.9 +0.0 1717426666.2 +0.0 1717432570.5 +0.0 1717438474.8 +0.0 1717471696.8 +26.59750754771429 1717477610.8 +34.8136145747131 1717483524.9 +34.442923381736634 1717489438.9 +30.372674401817026 1717495353 +22.373767878364575 1717501267 +7.3739125514997514 1717507181.1 +0.0 1717513095.1 +0.0 1717519009.2 +0.0 1717524923.2 +0.0 1717558060.3 +26.23049342614858 1717563983.6 +34.646820115939796 1717569906.9 +34.33248459425808 1717575830.2 +30.27553938368166 1717581753.5 +22.26332909088601 1717587676.7 +7.226371488591317 1717593600 +0.0 1717599523.3 +0.0 1717605446.6 +0.0 1717611369.9 +0.0 1717644426.8 +25.87537855762621 1717650358.8 +34.48965235509893 1717656290.8 +34.225722878190275 1717662222.8 +30.180676920657195 1717668154.7 +22.160244446228976 1717674086.7 +7.0884571236153135 1717680018.7 +0.0 1717685950.7 +0.0 1717691882.7 +0.0 1717697814.6 +0.0 1717730796.3 +25.54546671149038 1717736736.4 +34.3421112921905 1717742676.6 +34.12858786005491 1717748616.7 +30.093168600454256 1717754556.8 +22.059432356682844 1717760497 +6.962442011682651 1717766437.1 +0.0 1717772377.2 +0.0 1717778317.4 +0.0 1717784257.5 +0.0 1717817168.8 +25.234808261219413 1717823116.5 +34.198247300692834 1717829064.3 +34.03740246844121 1717835012 +30.01160990677299 1717840959.7 +21.971924036479905 1717846907.5 +6.840103971160748 1717852855.2 +0.0 1717858803 +0.0 1717864750.7 +0.0 1717870698.4 +0.0 1717903544.3 +24.945675761924214 1717909499.1 +34.072232188760175 1717915453.9 +33.949894148238265 1717921408.6 +29.936000839613392 1717927363.4 +21.886688271387875 1717933318.2 +6.733342255092948 1717939273 +0.0 1717945227.8 +0.0 1717951182.6 +0.0 1717957137.3 +0.0 1717989922.9 +24.68174628501555 1717995884.1 +33.949894148238265 1718001845.4 +33.874285081078675 1718007806.6 +29.870018470386228 1718013767.9 +21.811079204228275 1718019729.2 +6.632530165546818 1718025690.4 +0.0 1718031651.7 +0.0 1718037612.9 +0.0 1718043574.2 +0.0 1718076304.5 +24.437070203971743 1718082271.6 +33.84313243217047 1718088238.8 +33.79867601391908 1718094206 +29.80403610115906 1718100173.1 +21.74509683500111 1718106140.3 +6.541344773933119 1718112107.4 +0.0 1718118074.6 +0.0 1718124041.8 +0.0 1718130008.9 +0.0 1718162689.2 +24.21392007390371 1718168661.6 +33.7459974140351 1718174634.1 +33.73637071610267 1718180606.6 +29.747680429864324 1718186579.1 +21.679114465773942 1718192551.6 +6.4597860802518525 1718198524.1 +0.0 1718204496.5 +0.0 1718210469 +0.0 1718216441.5 +0.0 1718249076.9 +24.015972966222215 1718255054.1 +33.6548120224214 1718261031.4 +33.68001504480794 1718267008.6 +29.69727438509126 1718272985.8 +21.62643586588997 1718278963 +6.387854084503016 1718284940.2 +0.0 1718290917.5 +0.0 1718296894.7 +0.0 1718302871.9 +0.0 1718335467.8 +23.837279254405576 1718341449.1 +33.5792029552618 1718347430.5 +33.62960900003487 1718353411.9 +29.656495038250625 1718359393.2 +21.576029821116908 1718365374.6 +6.327821341797518 1718371356 +0.0 1718377337.3 +0.0 1718383318.7 +0.0 1718389300.1 +0.0 1718421861.7 +23.689738191497142 1718427846.6 +33.513220586034635 1718433831.5 +33.58515258178347 1718439816.4 +29.62166531793166 1718445801.4 +21.541200100797944 1718451786.3 +6.275142741913545 1718457771.2 +0.0 1718463756.1 +0.0 1718469741 +0.0 1718475725.9 +0.0 1718508258.7 +23.557773453042813 1718514246.6 +33.456864914739896 1718520234.4 +33.548050306353595 1718526222.3 +29.590512669023457 1718532210.2 +21.506370380478977 1718538198 +6.2343633950729105 1718544185.9 +0.0 1718550173.8 +0.0 1718556161.6 +0.0 1718562149.5 +0.0 1718594658.8 +23.45696136349668 1718600649 +33.4124084964885 1718606639.2 +33.52284728396707 1718612629.4 +29.565309646636923 1718618619.6 +21.481167358092442 1718624609.8 +6.199533674753948 1718630600.1 +0.0 1718636590.3 +0.0 1718642580.5 +0.0 1718648570.7 +0.0 1718681061.9 +23.375402669815415 1718687053.9 +33.381255847580306 1718693045.8 +33.5035938881022 1718699037.8 +29.543783695661155 1718705029.7 +21.459641407116674 1718711021.7 +6.180280278889084 1718717013.7 +0.0 1718723005.6 +0.0 1718728997.6 +0.0 1718734989.5 +0.0 1718767468.1 +23.32499662504235 1718773461.2 +33.35605282519377 1718779454.3 +33.4880175636481 1718785447.4 +29.534156997728722 1718791440.5 +21.450014709184238 1718797433.6 +6.164703954434982 1718803426.7 +0.0 1718809419.8 +0.0 1718815412.9 +0.0 1718821406 +0.0 1718853877.3 +23.29384397613415 1718859871 +33.34642612726134 1718865864.6 +33.48206793712643 1718871858.2 +29.530479926317962 1718877851.8 +21.44406508266257 1718883845.5 +6.158754327913312 1718889839.1 +0.0 1718895832.7 +0.0 1718901826.3 +0.0 1718907820 +0.0 1718940289.6 +23.290166904723385 1718946283.1 +33.34047650073967 1718952276.7 +33.48206793712643 1718958270.2 +29.534156997728722 1718964263.8 +21.450014709184238 1718970257.3 +6.1683810258457425 1718976250.9 +0.0 1718982244.4 +0.0 1718988237.9 +0.0 1718994231.5 +0.0 1719026704.8 +23.309420300588247 1719032697.7 +33.3501031986721 1719038690.5 +33.4880175636481 1719044683.4 +29.54010662425039 1719050676.2 +21.459641407116674 1719056669.1 +6.183957350299845 1719062662 +0.0 1719068654.8 +0.0 1719074647.7 +0.0 1719080640.5 +0.0 1719113123 +23.35019964742888 1719119114.6 +33.37530622105863 1719125106.2 +33.5035938881022 1719131097.7 +29.555682948704494 1719137089.3 +21.481167358092442 1719143080.8 +6.209160372686378 1719149072.4 +0.0 1719155064 +0.0 1719161055.5 +0.0 1719167047.1 +0.0 1719199544.2 +23.422131643177718 1719205533.8 +33.40645886996683 1719211523.5 +33.52879691048874 1719217513.2 +29.57493634456936 1719223502.8 +21.506370380478977 1719229492.5 +6.24626264811625 1719235482.1 +0.0 1719241471.8 +0.0 1719247461.5 +0.0 1719253451.1 +0.0 1719285968.2 +23.513317034791413 1719291955.4 +33.44723821680746 1719297942.5 +33.553999932875264 1719303929.7 +29.60608899347756 1719309916.8 +21.535250474276275 1719315904 +6.287041994956885 1719321891.2 +0.0 1719327878.3 +0.0 1719333865.5 +0.0 1719339852.6 +0.0 1719372395.1 +23.629705448791643 1719378379.2 +33.5035938881022 1719384363.2 +33.5947792797159 1719390347.3 +29.640918713796523 1719396331.3 +21.576029821116908 1719402315.4 +6.341125111140711 1719408299.4 +0.0 1719414283.5 +0.0 1719420267.5 +0.0 1719426251.6 +0.0 1719458824.8 +23.771296885178412 1719464805.2 +33.5636266308077 1719470785.5 +33.63555862655654 1719476765.9 +29.675748434115487 1719482746.3 +21.622758794479207 1719488726.6 +6.407107480367878 1719494707 +0.0 1719500687.3 +0.0 1719506667.7 +0.0 1719512648 +0.0 1719545257.3 +23.940363899062614 1719551233.4 +33.64150825307821 1719557209.5 +33.6859646713296 1719563185.5 +29.722477407477793 1719569161.6 +21.673164839252273 1719575137.7 +6.479039476116713 1719581113.7 +0.0 1719587089.8 +0.0 1719593065.9 +0.0 1719599041.9 +0.0 1719631692.6 +24.128684308811682 1719637663.8 +33.72674401817024 1719643635 +33.7459974140351 1719649606.1 +29.778833078772525 1719655577.3 +21.73914720847944 1719661548.5 +6.560598169797981 1719667519.7 +0.0 1719673490.9 +0.0 1719679462.1 +0.0 1719685433.3 +0.0 1719718130.5 +24.342207740947284 1719724096.2 +33.823879036305605 1719730062 +33.80830271185151 1719736027.7 +29.838865821478024 1719741993.4 +21.805129577706605 1719747959.2 +6.65178356141168 1719753924.9 +0.0 1719759890.6 +0.0 1719765856.4 +0.0 1719771822.1 +0.0 1719804571 +24.574984568947745 1719810530.7 +33.9306407523734 1719816490.5 +33.8839117790111 1719822450.2 +29.901171119294432 1719828409.9 +21.880738644866206 1719834369.6 +6.758545277479481 1719840329.3 +0.0 1719846289 +0.0 1719852248.7 +0.0 1719858208.4 +0.0 1719891014.2 +24.832964419334743 1719896967.3 +34.04702916637364 1719902920.4 +33.9595208461707 1719908873.5 +29.97678018645403 1719914826.6 +21.962297338547472 1719920779.7 +6.86530699354728 1719926732.8 +0.0 1719932685.9 +0.0 1719938639 +0.0 1719944592.1 +0.0 1719977459.8 +25.11247022069751 1719983405.8 +34.1730442783063 1719989351.7 +34.04702916637364 1719995297.7 +30.052389253613626 1720001243.6 +22.049805658750408 1720007189.6 +6.987645034069184 1720013135.5 +0.0 1720019081.5 +0.0 1720025027.4 +0.0 1720030973.4 +0.0 1720063907.9 +25.41350197303605 1720069846.2 +34.310958643282305 1720075784.4 +34.13821455798734 1720081722.6 +30.139897573816558 1720087660.9 +22.14694067688578 1720093599.1 +7.113660146001846 1720099537.4 +0.0 1720105475.6 +0.0 1720111413.9 +0.0 1720117352.1 +0.0 1720150358.4 +25.733787121239445 1720156288.4 +34.45849970619073 1720162218.4 +34.23902664753347 1720168148.4 +30.22513333890859 1720174078.4 +22.25142983784267 1720180008.4 +7.25752413749952 1720185938.4 +0.0 1720191868.4 +0.0 1720197798.3 +0.0 1720203728.3 +0.0 1720236811.3 +26.079275291829383 1720242732.5 +34.61566746703159 1720248653.7 +34.345788363601265 1720254574.9 +30.32226835704396 1720260496.1 +22.358191553910473 1720266417.3 +7.405065200407954 1720272338.5 +0.0 1720278259.7 +0.0 1720284180.9 +0.0 1720290102.1 +0.0 1720323266.4 +26.44033978687342 1720329178.3 +34.7847344809158 1720335090.2 +34.45849970619073 1720341002.1 +30.42903007311176 1720346913.9 +22.476852523021613 1720352825.8 +7.56223296124882 1720358737.7 +0.0 1720364649.6 +0.0 1720370561.5 +0.0 1720376473.4 +0.0 1720409723.7 +26.82065767778232 1720415625.8 +34.95747856621077 1720421527.8 +34.58083774671264 1720427429.9 +30.535791789179562 1720433332 +22.599190563543512 1720439234 +7.7253503486113555 1720445136.1 +0.0 1720451038.2 +0.0 1720456940.2 +0.0 1720462842.3 +0.0 1720496183.1 +27.22250151966699 1720502074.9 +35.14352642084893 1720507966.6 +34.7068528586453 1720513858.4 +30.652180203179793 1720519750.1 +22.73115530199785 1720525641.8 +7.901771505317083 1720531533.6 +0.0 1720537425.3 +0.0 1720543317 +0.0 1720549208.8 +0.0 1720582644.7 +27.643598757416516 1720588525.6 +35.337796457119666 1720594406.5 +34.83881759709964 1720600287.4 +30.774518243701692 1720606168.3 +22.86679711186294 1720612049.2 +8.084142288544482 1720617930.1 +0.0 1720623811.1 +0.0 1720629692 +0.0 1720635572.9 +0.0 1720669108.2 +28.08027231962015 1720674977.8 +35.541693191322835 1720680847.4 +34.97673196207563 1720686717 +30.896856284223592 1720692586.6 +23.01066110336061 1720698456.2 +8.27841232481522 1720704325.8 +0.0 1720710195.4 +0.0 1720716065 +0.0 1720721934.6 +0.0 1720755573.7 +28.532522206277882 1720761431.5 +35.755216623458445 1720767289.3 +35.12427302498406 1720773147.1 +31.03249809408869 1720779004.9 +23.161879237679813 1720784862.8 +8.48230905901839 1720790720.6 +0.0 1720796578.4 +0.0 1720802436.2 +0.0 1720808294 +0.0 1720842041 +29.00629804391139 1720847886.6 +35.972417127004796 1720853732.1 +35.27776371441417 1720859577.7 +31.170412459064693 1720865423.3 +23.31904699852068 1720871268.9 +8.689882864632319 1720877114.4 +0.0 1720882960 +0.0 1720888805.6 +0.0 1720894651.1 +0.0 1720928510.1 +29.493377650888092 1720934343 +36.20151688359451 1720940175.9 +35.434931475255034 1720946008.8 +31.312003895451458 1720951841.6 +23.482164385883213 1720957674.5 +8.909355923289594 1720963507.4 +0.0 1720969340.2 +0.0 1720975173.1 +0.0 1720981006 +0.0 1721014981 +29.992356510908127 1721020800.7 +36.44024333811664 1721026620.5 +35.60172593402833 1721032440.2 +31.46549458488156 1721038259.9 +23.65490847117818 1721044079.7 +9.136183124768383 1721049899.4 +0.0 1721055719.1 +0.0 1721061538.9 +0.0 1721067358.6 +0.0 1721101453.5 +30.510588766793028 1721107259.7 +36.68491941916044 1721113065.8 +35.76852039280164 1721118872 +31.618985274311665 1721124678.2 +23.827652556473147 1721130484.3 +9.371232507879757 1721136290.5 +0.0 1721142096.7 +0.0 1721147902.9 +0.0 1721153709 +0.0 1721187927.6 +31.03844772061036 1721193719.8 +36.933272571615 1721199512 +35.94721410461827 1721205304.2 +31.779830106563292 1721211096.3 +24.010023339700545 1721216888.5 +9.619585660334321 1721222680.7 +0.0 1721228472.9 +0.0 1721234265.1 +0.0 1721240057.3 +0.0 1721274403.2 +31.578205927471032 1721280181 +37.19352497711291 1721285958.8 +36.1259078164349 1721291736.6 +31.9488971204475 1721297514.4 +24.198343749449613 1721303292.2 +9.867938812788884 1721309070 +0.0 1721314847.8 +0.0 1721320625.6 +0.0 1721326403.4 +0.0 1721360880.3 +32.131267903674896 1721366643.3 +37.461131525432336 1721372406.3 +36.31422822618397 1721378169.3 +32.12164120574246 1721383932.3 +24.39629085713111 1721389695.4 +10.131868289697552 1721395458.4 +0.0 1721401221.4 +0.0 1721406984.4 +0.0 1721412747.4 +0.0 1721447358.7 +32.69990620433286 1721453106.6 +37.73101062886267 1721458854.4 +36.5062257073438 1721464602.3 +32.29806236244819 1721470350.1 +24.59423796481261 1721476098 +10.401747393127888 1721481845.8 +0.0 1721487593.7 +0.0 1721493341.5 +0.0 1721499089.4 +0.0 1721533838.5 +33.274494131512505 1721539570.8 +38.016466056747106 1721545303.1 +36.704172815025295 1721551035.4 +32.482705700786504 1721556767.7 +24.80408432553745 1721562500.1 +10.677576123079895 1721568232.4 +0.0 1721573964.7 +0.0 1721579697 +0.0 1721585429.4 +0.0 1721620319.5 +33.85870875662457 1721626035.9 +38.299648929520636 1721631752.3 +36.90806954922847 1721637468.7 +32.668753555424665 1721643185.2 +25.01760775767305 1721648901.6 +10.966708622375092 1721654618 +0.0 1721660334.5 +0.0 1721666050.9 +0.0 1721671767.3 +0.0 1721706801.6 +34.45255007966907 1721712501.8 +38.594731055337505 1721718202 +37.12159298136407 1721723902.2 +32.8630235916954 1721729602.4 +25.234808261219413 1721735302.6 +11.255841121670292 1721741002.8 +0.0 1721746703 +0.0 1721752403.2 +0.0 1721758103.4 +0.0 1721793285 +35.0582906557569 1721798968.6 +38.88981318115438 1721804652.2 +37.33511641349967 1721810335.8 +33.0609706993769 1721816019.4 +25.463908017809114 1721821703 +11.560549945419591 1721827386.6 +0.0 1721833070.3 +0.0 1721838753.9 +0.0 1721844437.5 +0.0 1721879769.3 +35.667708303255495 1721885436 +39.194522004903675 1721891102.7 +37.552316917046035 1721896769.5 +33.264867433580065 1721902436.2 +25.693007774398815 1721908102.9 +11.871208395690562 1721913769.6 +0.0 1721919436.3 +0.0 1721925103 +0.0 1721930769.8 +0.0 1721966254.7 +36.28675264868653 1721971904.2 +39.505180455174646 1721977553.7 +37.77773960222497 1721983203.2 +33.472441239194 1721988852.7 +25.93173422892095 1721994502.2 +12.185543917372293 1722000151.7 +0.0 1722005801.2 +0.0 1722011450.7 +0.0 1722017100.2 +0.0 1722052741 +36.91401917575014 1722058373 +39.81951597685638 1722064005 +38.010516430225444 1722069636.9 +33.6859646713296 1722075268.9 +26.170460683443082 1722080900.9 +12.511778692097364 1722086532.9 +0.0 1722092164.9 +0.0 1722097796.9 +0.0 1722103428.9 +0.0 1722139228.2 +37.5426902191136 1722144842.4 +40.145750751581446 1722150456.5 +38.243293258225904 1722156070.7 +33.90543772998687 1722161684.9 +26.418813835897655 1722167299.1 +12.847640164754868 1722172913.2 +0.0 1722178527.4 +0.0 1722184141.6 +0.0 1722189755.8 +0.0 1722225716.2 +38.17731088899873 1722231312.3 +40.469712971195605 1722236908.4 +38.482019712748034 1722242504.5 +34.12858786005491 1722248100.5 +26.67311661487389 1722253696.6 +13.187178708823126 1722259292.7 +0.0 1722264888.8 +0.0 1722270484.9 +0.0 1722276081 +0.0 1722312205 +38.81420411399478 1722317782.7 +40.79962481733145 1722323360.4 +38.72669579379184 1722328938.2 +34.357687616644604 1722334515.9 +26.933369020371796 1722340093.6 +13.53266687941306 1722345671.3 +0.0 1722351249.1 +0.0 1722356826.8 +0.0 1722362404.5 +0.0 1722398694.5 +39.45845148181234 1722404253.6 +41.13548628998895 1722409812.7 +38.9750489462464 1722415371.8 +34.590464444645065 1722420930.9 +27.200975568691224 1722426490 +13.887781747935424 1722432049.1 +0.0 1722437608.2 +0.0 1722443167.3 +0.0 1722448726.5 +0.0 1722485184.7 +40.09902177821914 1722490724.9 +41.47134776264645 1722496265.1 +39.22567465381188 1722501805.4 +34.82919089916721 1722507345.6 +27.47085467212155 1722512885.8 +14.248846242979461 1722518426.1 +0.0 1722523966.3 +0.0 1722529506.6 +0.0 1722535046.8 +0.0 1722571675.5 +40.74921877255838 1722577196.6 +41.81683593323639 1722582717.7 +39.483654504198874 1722588238.8 +35.067917353689325 1722593760 +27.746683402073565 1722599281.1 +14.61953743595593 1722604802.2 +0.0 1722610323.3 +0.0 1722615844.5 +0.0 1722621365.6 +21.33362629518401 1722658166.8 +41.39573869548685 1722663668.6 +42.162324103826315 1722669170.4 +39.743906909696776 1722674672.2 +35.316270506143894 1722680174 +28.02618920343632 1722685675.7 +14.996178255454064 1722691177.5 +0.0 1722696679.3 +0.0 1722702181.1 +0.0 1722707682.9 +26.267595701578458 1722744658.7 +42.04593568982608 1722750141 +42.51376190093792 1722755623.2 +40.00783638660545 1722761105.4 +35.56689621370938 1722766587.6 +28.309372076209854 1722772069.8 +15.38244577288463 1722777552 +0.0 1722783034.2 +0.0 1722788516.5 +0.0 1722793998.7 +26.440339786873427 1722831151.1 +42.69018305764365 1722836613.6 +42.86292714293862 1722842076 +40.27771549003578 1722847538.4 +35.82119899268561 1722853000.9 +28.60445420202672 1722858463.3 +15.772390361725959 1722863925.8 +0.0 1722869388.2 +0.0 1722874850.6 +0.0 1722880313.1 +30.001983208840556 1722917644 +43.34038005198288 1722923086.4 +43.22399163798265 1722928528.9 +40.55127166487688 1722933971.3 +36.0791788430726 1722939413.8 +28.899536327843588 1722944856.2 +16.170557132199868 1722950298.7 +0.0 1722955741.2 +0.0 1722961183.6 +0.0 1722966626.1 +34.60604076909917 1723004137.2 +43.98689997491135 1723009559.5 +43.57910650650501 1723014981.8 +40.83077746623965 1723020404 +36.34310831998127 1723025826.3 +29.19829552507122 1723031248.6 +16.572400974084537 1723036670.9 +0.0 1723042093.2 +0.0 1723047515.4 +0.0 1723052937.7 +36.075501771661834 1723090630.8 +44.63114734272892 1723096032.7 +43.94612062807072 1723101434.6 +41.11028326760242 1723106836.6 +36.6129874234116 1723112238.5 +29.50300434882052 1723117640.4 +16.983871513901637 1723123042.3 +0.0 1723128444.2 +0.0 1723133846.1 +0.0 1723139248 +42.15269740589388 1723177124.8 +45.27171763913571 1723182506.1 +44.307185123114756 1723187887.5 +41.39573869548685 1723193268.9 +36.8865435982527 1723198650.2 +29.813662799091492 1723204031.6 +17.3990191251295 1723209413 +0.0 1723214794.4 +0.0 1723220175.7 +0.0 1723225557.1 +40.81520114178554 1723263619 +45.912287935542516 1723268979.7 +44.67787631609122 1723274340.3 +41.67892156826038 1723279701 +37.162372328204704 1723285061.6 +30.12799832077322 1723290422.3 +17.8260659894007 1723295782.9 +0.0 1723301143.6 +0.0 1723306504.3 +0.0 1723311864.9 +44.80984105454556 1723350113.5 +46.54690860542765 1723355453.3 +45.04261788254601 1723360793.1 +41.97400369407725 1723366132.9 +37.44187812956747 1723371472.6 +30.448283468976623 1723376812.4 +18.2531128536719 1723382152.2 +0.0 1723387492 +0.0 1723392831.8 +0.0 1723398171.5 +46.25182647961079 1723436608.3 +47.17785220390203 1723441927 +45.41925870204415 1723447245.8 +42.263136193372446 1723452564.5 +37.725061002341 1723457883.3 +30.774518243701692 1723463202 +18.68978641587553 1723468520.7 +0.0 1723473839.5 +0.0 1723479158.2 +0.0 1723484477 +47.57006934785426 1723523103.3 +47.80879580237639 1723528400.8 +45.78994989502062 1723533698.4 +42.564167945710984 1723538995.9 +38.01051643022544 1723544293.5 +31.104430089837525 1723549591.1 +19.132409604600838 1723554888.6 +0.0 1723560186.2 +0.0 1723565483.7 +0.0 1723570781.3 +46.30450507949475 1723609598.4 +48.433789774329085 1723614874.6 +46.166590714518755 1723620150.9 +42.86292714293862 1723625427.1 +38.299648929520636 1723630703.3 +31.43434193597336 1723635979.6 +19.58465949125857 1723641255.8 +0.0 1723646532.1 +0.0 1723651808.3 +0.0 1723657084.5 +50.14565430282465 1723696093.7 +49.05283411976012 1723701348.5 +46.54323153401689 1723706603.3 +43.16763596668792 1723711858 +38.594731055337505 1723717112.8 +31.770203408630863 1723722367.6 +20.036909377916306 1723727622.4 +0.0 1723732877.1 +0.0 1723738131.9 +0.0 1723743386.7 +51.40159187325173 1723782589.2 +49.66225176725872 1723787822.4 +46.923549424925795 1723793055.5 +43.47234479043721 1723798288.7 +38.89576280767605 1723803521.9 +32.115691579220794 1723808755.1 +20.49878596250647 1723813988.3 +0.0 1723819221.5 +0.0 1723824454.6 +0.0 1723829687.8 +52.63005386618136 1723869084.7 +50.27166941475732 1723874296.2 +47.30019024442392 1723879507.7 +43.78300324070818 1723884719.2 +39.194522004903675 1723889930.6 +32.46117974981073 1723895142.1 +20.962935102207545 1723900353.6 +0.0 1723905565 +0.0 1723910776.5 +0.0 1723915988 +53.845212089767806 1723955580.4 +50.87146036432349 1723960770.1 +47.68050813533282 1723965959.7 +44.09366169097916 1723971149.3 +39.499230828652976 1723976339 +32.80666792040066 1723981528.6 +21.43443838473014 1723986718.3 +0.0 1723991907.9 +0.0 1723997097.5 +0.0 1724002287.2 +55.03884436237847 1724042076.2 +51.4675742424789 1724047243.9 +48.06082602624173 1724052411.6 +44.40799721266089 1724057579.3 +39.80393965240227 1724062747 +33.16178278892303 1724067914.7 +21.91189129377441 1724073082.4 +0.0 1724078250.1 +0.0 1724083417.8 +0.0 1724088585.5 +56.2072736126026 1724128572 +52.05546593900173 1724133717.6 +48.44341647226152 1724138863.3 +44.72233273434262 1724144008.9 +40.118275174084005 1724149154.6 +33.519170212556304 1724154300.3 +22.395293829340343 1724159445.9 +0.2038967342031701 1724164591.6 +0.0 1724169737.2 +0.0 1724174882.9 +57.36607616489431 1724215067.9 +52.639680564113796 1724220191.4 +48.8296839896921 1724225314.9 +45.03894081113525 1724230438.4 +40.42893362435497 1724235561.9 +33.880234707600344 1724240685.4 +22.882373436317042 1724245808.9 +0.9297027957020014 1724250932.4 +0.0 1724256055.9 +0.0 1724261179.4 +58.49967569479948 1724301563.8 +53.214268491293424 1724306665 +49.210001880600984 1724311766.3 +45.362903030749415 1724316867.6 +40.74921877255838 1724321968.8 +34.24497627405514 1724327070.1 +23.375402669815415 1724332171.3 +1.6674081102441738 1724337272.6 +0.0 1724342373.9 +0.0 1724347475.1 +59.61769890025055 1724388059.7 +53.7829067919514 1724393138.6 +49.592592326620796 1724398217.6 +45.68318817895282 1724403296.5 +41.06950392076178 1724408375.4 +34.61566746703159 1724413454.3 +23.87438152983545 1724418533.3 +2.418417194129537 1724423612.2 +0.0 1724428691.1 +0.0 1724433770 +60.72014578124752 1724474555.7 +54.34786802119861 1724479612.2 +49.97658728894046 1724484668.7 +46.00942295367789 1724489725.2 +41.38978906896518 1724494781.7 +34.986358660008065 1724499838.2 +24.377037461266244 1724504894.7 +3.1813255310582416 1724509951.2 +0.0 1724515007.7 +0.0 1724520064.2 +61.803339266379616 1724561051.6 +54.90092999740247 1724566085.6 +50.36285480637102 1724571119.6 +46.33933479981372 1724576153.6 +41.71602384369025 1724581187.6 +35.3629994795062 1724586221.6 +24.88564301921872 1724591255.6 +3.953860565919378 1724596289.7 +0.0 1724601323.7 +0.0 1724606357.7 +62.87463349846839 1724647547.6 +55.444365275673896 1724652559 +50.74544525239083 1724657570.4 +46.66556957453879 1724662581.9 +42.04593568982608 1724667593.3 +35.743317370415106 1724672604.7 +25.397925648581946 1724677616.1 +4.7360222987129434 1724682627.6 +0.0 1724687639 +0.0 1724692650.4 +63.926674334692294 1724734043.5 +55.98412348253457 1724739032.3 +51.13171276982139 1724744021.1 +46.99548142067463 1724749009.9 +42.37584753596192 1724753998.6 +36.1259078164349 1724758987.4 +25.916157904466846 1724763976.2 +5.5300832845498515 1724768965 +0.0 1724773953.7 +0.0 1724778942.5 +64.96313884646209 1724820539.5 +56.51793206287358 1724825505.5 +51.51203066073029 1724830471.6 +47.32907033822122 1724835437.6 +42.71170900861942 1724840403.7 +36.51217533386547 1724845369.7 +26.43439016035175 1724850335.8 +6.33149841320828 1724855301.9 +0.0 1724860267.9 +0.0 1724865234 +65.98034996236704 1724907035.4 +57.045791016690906 1724911978.7 +51.89829817816086 1724916921.9 +47.66493181087872 1724921865.2 +43.045297926166015 1724926808.5 +36.89844285129604 1724931751.8 +26.96224911416909 1724936695 +7.144812794910049 1724941638.3 +0.0 1724946581.6 +0.0 1724951524.8 +66.97603512729619 1724993531.3 +57.560346201165046 1724998451.7 +52.27861606906976 1725003372.2 +48.00079328353622 1725008292.6 +43.38115939882352 1725013213 +37.28838744013736 1725018133.4 +27.49238062309733 1725023053.9 +7.97370350106592 1725027974.3 +0.0 1725032894.7 +0.0 1725037815.1 +67.94056764331717 1725080027.2 +58.07262883052829 1725084924.7 +52.66120651508957 1725089822.2 +48.33665475619372 1725094719.8 +43.72297049800269 1725099617.3 +37.68428165550037 1725104514.8 +28.02618920343632 1725109412.3 +8.80259420722179 1725114309.8 +0.0 1725119207.3 +0.0 1725124104.9 +68.87622006554082 1725166523.1 +58.57528476195907 1725171397.7 +53.041524405998466 1725176272.2 +48.676193300261986 1725181146.8 +44.068458668592626 1725186021.3 +38.08244842597428 1725190895.9 +28.563674855186086 1725195770.4 +9.644788682720854 1725200645 +0.0 1725205519.5 +0.0 1725210394.1 +69.77109314092387 1725253019 +59.068313995457444 1725257870.5 +53.42411485201827 1725262722 +49.012054772919484 1725267573.6 +44.41394683918256 1725272425.1 +38.482019712748034 1725277276.7 +29.10343306204676 1725282128.2 +10.498882411263256 1725286979.8 +0.0 1725291831.3 +0.0 1725296682.9 +70.62518686946628 1725339514.8 +59.56134322895581 1725344343.3 +53.80443274292717 1725349171.8 +49.35754294350942 1725354000.3 +44.75943500977249 1725358828.7 +38.88386355463271 1725363657.2 +29.646868340318193 1725368485.7 +11.356653211216422 1725373314.2 +0.0 1725378142.7 +0.0 1725382971.2 +71.43622869605713 1725426010.6 +60.03879613800008 1725430816 +54.18475063383607 1725435621.4 +49.697081487577684 1725440426.8 +45.108600251773176 1725445232.1 +39.29165702303904 1725450037.5 +30.193980690000387 1725454842.9 +12.226323264212926 1725459648.3 +0.0 1725464453.7 +0.0 1725469259 +72.19913703298583 1725512506.5 +60.51257197563359 1725517288.7 +54.5613914533342 1725522070.9 +50.03889258675686 1725526853.2 +45.46003804888478 1725531635.4 +39.69717793633447 1725536417.6 +30.743365594793488 1725541199.8 +13.099670388620192 1725545982.1 +0.0 1725550764.3 +0.0 1725555546.5 +72.92126602307391 1725599002.3 +60.98039818674542 1725603761.3 +54.94170934424311 1725608520.4 +50.38438075734679 1725613279.4 +45.81147584599639 1725618038.4 +40.10497140474081 1725622797.5 +31.298700126108265 1725627556.5 +13.984916766070796 1725632315.6 +0.0 1725637074.6 +0.0 1725641833.6 +73.59666603979969 1725685498.1 +61.43632514481391 1725690233.9 +55.318350163741236 1725694969.7 +50.72986892793672 1725699705.5 +46.166590714518755 1725704441.4 +40.520119015968675 1725709177.2 +31.85176210231213 1725713913 +14.87384021493216 1725718648.8 +0.0 1725723384.6 +0.0 1725728120.4 +74.23723633620648 1725771993.9 +61.88857503147165 1725776706.5 +55.6890413567177 1725781419 +51.07535709852666 1725786131.6 +46.52170558304112 1725790844.1 +40.93158955578578 1725795556.7 +32.41077370503766 1725800269.2 +15.7687132903152 1725804981.8 +0.0 1725809694.3 +0.0 1725814406.9 +74.83107765925098 1725858489.8 +62.33714784671863 1725863179 +56.065682176215844 1725867868.3 +51.42084526911659 1725872557.5 +46.88277007808515 1725877246.8 +41.34900972212455 1725881936 +32.97573493428487 1725886625.3 +16.673213063630673 1725891314.6 +0.0 1725896003.8 +0.0 1725900693.1 +75.39603888849818 1725944985.6 +62.77382140892226 1725949651.6 +56.4363733691923 1725954317.5 +51.7722830662282 1725958983.4 +47.2438345731292 1725963649.4 +41.770106959874084 1725968315.3 +33.53842360842116 1725972981.2 +17.577712836946134 1725977647.1 +0.0 1725982313.1 +0.0 1725986979 +75.92022077090475 1726031481.5 +63.20454534460422 1726036124.1 +56.807064562168776 1726040766.7 +52.11777123681813 1726045409.3 +47.59894944165155 1726050051.8 +42.18752712621285 1726054694.4 +34.107061909079135 1726059337 +18.49183930819403 1726063979.6 +0.0 1726068622.1 +0.0 1726073264.7 +76.41692707581387 1726117977.4 +63.62791513746466 1726122596.6 +57.17775575514524 1726127215.8 +52.46693647881883 1726131835 +47.965963563217265 1726136454.2 +42.60862436396238 1726141073.4 +34.67202313832633 1726145692.6 +19.411915405963605 1726150311.8 +0.0 1726154931 +0.0 1726159550.2 +76.87880366040405 1726204473.4 +64.04901237521419 1726209069.2 +57.54844694812171 1726213665 +52.81242464940876 1726218260.8 +48.327028058261284 1726222856.6 +43.03567122823358 1726227452.4 +35.24066143898429 1726232048.2 +20.33199150373317 1726236644 +0.0 1726241239.8 +0.0 1726245835.6 +77.31774977771859 1726290969.4 +64.46048291503129 1726295541.8 +57.91546106968741 1726300114.2 +53.16386244652036 1726304686.5 +48.691769624716095 1726309258.9 +43.45904102109402 1726313831.3 +35.81524936616395 1726318403.6 +21.255744672913504 1726322976 +0.0 1726327548.4 +0.0 1726332120.8 +77.73289738894645 1726377465.5 +64.86600382832673 1726382014.4 +58.28020263614221 1726386563.4 +53.51530024363196 1726391112.3 +49.05878374628179 1726395661.2 +43.88976495677599 1726400210.1 +36.38983729334357 1726404759.1 +22.181770397204744 1726409308 +0.0 1726413856.9 +0.0 1726418405.8 +78.12511453289869 1726463961.7 +65.26417059880063 1726468487.1 +58.64126713118624 1726473012.6 +53.86446548563267 1726477538 +49.42352531273659 1726482063.5 +44.316811821047196 1726486589 +36.964425220523204 1726491114.4 +23.111473192906743 1726495639.9 +0.0 1726500165.4 +0.0 1726504690.8 +78.48985609935349 1726550457.9 +65.65411518764196 1726554959.9 +59.00233162623027 1726559461.9 +54.21590328274427 1726563963.8 +49.79421650571305 1726568465.8 +44.74385868531839 1726572967.8 +37.539013147702846 1726577469.8 +24.041175988608746 1726581971.8 +0.0 1726586473.8 +0.0 1726590975.8 +78.84129389646509 1726636954.2 +66.04038270507253 1726641432.7 +59.36339612127432 1726645911.2 +54.5613914533342 1726650389.7 +50.161230627278755 1726654868.2 +45.17458262100035 1726659346.7 +38.11132851977157 1726663825.2 +24.976828410832415 1726668303.7 +0.0 1726672782.2 +0.0 1726677260.7 +79.17120574260092 1726723450.7 +66.42070059598143 1726727905.6 +59.71851098979668 1726732360.6 +54.91282925044581 1726736815.6 +50.53192182025522 1726741270.6 +45.60757911179322 1726745725.6 +38.69186607347288 1726750180.6 +25.910208277945177 1726754635.6 +0.0 1726759090.6 +0.0 1726763545.6 +79.49149089080433 1726809947.2 +66.79734141547958 1726814378.7 +60.07589841342996 1726818810.1 +55.2619944924465 1726823241.6 +50.90261301323169 1726827673.1 +46.040575602586095 1726832104.6 +39.27013107206328 1726836536 +26.84586070016885 1726840967.5 +0.0 1726845399 +0.0 1726849830.5 +79.79025008803195 1726896443.9 +67.16435553704527 1726900851.8 +60.43101328195232 1726905259.8 +55.613432289558105 1726909667.7 +51.27330420620816 1726914075.7 +46.471299538268056 1726918483.6 +39.844718999242914 1726922891.6 +27.77556349587086 1726927299.5 +0.0 1726931707.5 +0.0 1726936115.4 +80.0757055159164 1726982940.7 +67.5254200320893 1726987325.1 +60.78017852395301 1726991709.5 +55.958920460148036 1726996093.9 +51.64399539918462 1727000478.4 +46.907973100471686 1727004862.8 +40.42525655294421 1727009247.2 +28.711215918094517 1727013631.6 +0.0 1727018016.1 +0.0 1727022400.5 +80.3492616907575 1727069437.6 +67.88421197202243 1727073798.5 +61.13161632106461 1727078159.4 +56.310358257259644 1727082520.3 +52.0146865921611 1727086881.2 +47.34096959126456 1727091242.1 +41.00352155153462 1727095603 +29.640918713796523 1727099963.8 +1.407155704746268 1727104324.7 +0.0 1727108685.6 +80.6095140962554 1727155934.7 +68.23564976913401 1727160272.1 +61.48305411817621 1727164609.4 +56.65952349926033 1727168946.8 +52.385377785137564 1727173284.2 +47.77764315346818 1727177621.5 +41.58178655012501 1727181958.9 +30.570621509498523 1727186296.2 +3.4296786835128064 1727190633.6 +0.0 1727194970.9 +80.85786724870995 1727242432 +68.58113793972397 1727246745.8 +61.82854228876616 1727251059.7 +57.005011669850276 1727255373.5 +52.758341533224936 1727259687.3 +48.21431671567182 1727264001.1 +42.156374477304645 1727268314.9 +31.496647233789766 1727272628.7 +5.452201662279343 1727276942.5 +0.0 1727281256.3 +81.09659370323209 1727328929.5 +68.92294903890313 1727333219.8 +62.16808083283442 1727337510 +57.35644946696188 1727341800.3 +53.132709797612165 1727346090.6 +48.64731320646469 1727350380.9 +42.73691203100595 1727354671.1 +32.42040040297009 1727358961.4 +7.47104756963512 1727363251.7 +0.0 1727367542 +81.32569345982179 1727415427.2 +69.25653795644973 1727419693.9 +62.51356900342435 1727423960.6 +57.701937637551815 1727428227.4 +53.503400990588624 1727432494.1 +49.083986768668325 1727436760.9 +43.311499958185586 1727441027.6 +33.34047650073967 1727445294.3 +9.472044597425887 1727449561.1 +0.0 1727453827.8 +81.54516651847906 1727501925 +69.58644980258556 1727506168.2 +62.84943047608186 1727510411.4 +58.04742580814175 1727514654.6 +53.87636473867601 1727518897.9 +49.520660330871955 1727523141.1 +43.88381533025432 1727527384.3 +34.25460297198757 1727531627.5 +11.459737855873461 1727535870.7 +0.0 1727540113.9 +81.75868995061467 1727588423.1 +69.91268457731063 1727592642.8 +63.18896902015012 1727596862.5 +58.39291397873168 1727601082.1 +54.25073300306323 1727605301.8 +49.9573338930756 1727609521.5 +44.45840325743396 1727613741.2 +35.1650523718247 1727617960.9 +13.419955536823588 1727622180.6 +0.0 1727626400.3 +81.96031412970693 1727674921.4 +70.23296972551402 1727679117.6 +63.52483049280762 1727683313.7 +58.738402149321615 1727687509.9 +54.6214241960397 1727691706.1 +50.39033038386846 1727695902.2 +45.02931411320282 1727700098.4 +36.06955214514017 1727704294.6 +15.357242750498099 1727708490.7 +0.0 1727712686.9 +82.15458416597767 1727761419.9 +70.54730524719577 1727765592.6 +63.85474233894345 1727769765.2 +59.07794069338988 1727773937.9 +54.99806501553783 1727778110.6 +50.8270039460721 1727782283.2 +45.60162948527155 1727786455.9 +36.974051918455636 1727790628.6 +17.263377315264403 1727794801.2 +0.0 1727798973.9 +82.34290457572673 1727847918.7 +70.85796369746673 1727852067.9 +64.18692674019019 1727856217 +59.42342886397981 1727860366.2 +55.3687562085143 1727864515.4 +51.26367750827573 1727868664.6 +46.172540341040424 1727872813.7 +37.862975367317006 1727876962.9 +19.132409604600838 1727881112.1 +0.0 1727885261.2 +82.52527535895413 1727934417.7 +71.16267252121602 1727938543.4 +64.51088895980436 1727942669.1 +59.76523996315898 1727946794.8 +55.739447401490764 1727950920.5 +51.69440144395769 1727955046.2 +46.74117864169839 1727959171.9 +38.751898816178375 1727963297.6 +20.97623887155074 1727967423.3 +0.0 1727971549 +82.70396907077077 1728020917 +71.46370427355457 1728025019.2 +64.83712373452944 1728029121.5 +60.10477850722725 1728033223.7 +56.11013859446724 1728037325.9 +52.12739793475056 1728041428.2 +47.30386731583469 1728045530.4 +39.631195567107305 1728049632.6 +22.781561346770907 1728053734.9 +0.0 1728057837.1 +82.87076352954406 1728107416.6 +71.75651384426052 1728111495.3 +65.16108595414359 1728115574.1 +60.44658960640642 1728119652.9 +56.47715271603294 1728123731.7 +52.5640714969542 1728127810.5 +47.86882854508189 1728131889.3 +40.50454269151457 1728135968.1 +24.54978154656121 1728140046.9 +0.0 1728144125.7 +83.03755798831736 1728193916.4 +72.04791889866664 1728197971.8 +65.481371102347 1728202027.1 +60.78017852395301 1728206082.5 +56.847843909009406 1728210137.9 +52.9911183612254 1728214193.3 +48.42784014780742 1728218248.6 +41.37053567310032 1728222304 +26.286849097443316 1728226359.4 +0.0 1728230414.8 +83.19699830426914 1728280416.5 +72.33705139796184 1728284448.5 +65.8016562505504 1728288480.5 +61.121989623132194 1728292512.4 +57.21853510198587 1728296544.4 +53.42411485201827 1728300576.4 +48.98685175053295 1728304608.4 +42.228306473053486 1728308640.4 +27.98540985659569 1728312672.4 +0.0 1728316704.4 +83.34821643858832 1728366916.9 +72.6165571993246 1728370925.5 +66.11599177223212 1728374934.1 +61.45785109578968 1728378942.7 +57.58554922355158 1728382951.4 +53.85483878770024 1728386960 +49.53991372673682 1728390968.6 +43.07645057507421 1728394977.2 +29.650545411728956 1728398985.8 +0.0 1728402994.5 +83.50170712801844 1728453417.6 +72.89606300068738 1728457402.9 +66.4266502225031 1728461388.1 +61.787762941925514 1728465373.4 +57.95029079000637 1728469358.7 +54.281885651971436 1728473344 +50.08929863152992 1728477329.3 +43.91496797916252 1728481314.6 +31.286800873064927 1728485299.9 +0.0 1728489285.1 +83.64329856440521 1728539918.6 +73.16961917552848 1728543880.5 +66.73730867277406 1728547842.5 +62.12362441458301 1728551804.5 +58.31730491157208 1728555766.5 +54.70893251624263 1728559728.5 +50.63868353632303 1728563690.5 +44.74385868531839 1728567652.4 +32.88822661408194 1728571614.4 +0.0 1728575576.4 +83.78489000079198 1728626419.8 +73.43949827895881 1728630358.6 +67.04201749652336 1728634297.3 +62.453536260718856 1728638236 +58.68204647802687 1728642174.7 +55.13597938051383 1728646113.4 +51.18211881459446 1728650052.2 +45.560850138430915 1728653990.9 +34.45255007966907 1728657929.6 +0.0 1728661868.3 +83.92280436576796 1728712921.4 +73.70342775586747 1728716836.9 +67.34672632027267 1728720752.4 +62.78344810685469 1728724667.9 +59.04311097307091 1728728583.4 +55.557076618263366 1728732498.9 +51.72555409286589 1728736414.4 +46.37416452013269 1728740329.9 +35.987993451458905 1728744245.4 +0.0 1728748160.9 +84.0547691042223 1728799423.3 +73.96368016136539 1728803315.6 +67.65143514402197 1728807208 +63.10741032646886 1728811100.3 +59.41012509463662 1728814992.6 +55.9781738560129 1728818884.9 +52.26531229972657 1728822777.2 +47.17190257738036 1728826669.5 +37.48633454781887 1728830561.8 +0.0 1728834454.1 +84.18078421615498 1728885925.5 +74.21798294034161 1728889794.7 +67.9501943412496 1728893663.9 +63.433645101193925 1728897533.1 +59.768917034569746 1728901402.2 +56.40154364887334 1728905271.4 +52.79684832495466 1728909140.6 +47.960013936695596 1728913009.8 +38.95579555038154 1728916878.9 +0.0 1728920748.1 +84.30907188319854 1728972428.1 +74.47001316420695 1728976274.1 +68.24527646706646 1728980120.2 +63.75987987591899 1728983966.3 +60.12630445820302 1728987812.4 +56.81669126010121 1728991658.5 +53.326979833882895 1728995504.6 +48.742175669489164 1728999350.7 +40.39410390403601 1729003196.7 +0.0 1729007042.8 +84.43140992372044 1729058930.9 +74.7206388717724 1729062753.9 +68.53668152147257 1729066577 +64.0801650241224 1729070400 +60.48141932672539 1729074223.1 +57.23411142643998 1729078046.1 +53.85483878770024 1729081869.2 +49.51103363293952 1729085692.2 +41.79530998226062 1729089515.3 +0.0 1729093338.4 +84.54779833772066 1729145434 +74.96304239770531 1729149234.1 +68.82949109217853 1729153034.1 +64.39817761721488 1729156834.2 +60.83653419524775 1729160634.3 +57.645581966257076 1729164434.4 +54.373071043585135 1729168234.5 +50.26204271682489 1729172034.5 +43.16763596668792 1729175834.6 +0.0 1729179634.7 +84.6641867517209 1729231937.4 +75.20771847874911 1729235714.6 +69.11494652006297 1729239491.7 +64.71478569400753 1729243268.9 +61.19164906377012 1729247046.1 +58.05705250607418 1729250823.2 +54.89130329947004 1729254600.4 +51.009374729299495 1729258377.6 +44.50513223079626 1729262154.7 +0.0 1729265931.9 +84.77689809431037 1729318441.1 +75.44049530674958 1729322195.4 +69.4004019479474 1729325949.7 +65.02912121568927 1729329704.1 +61.53940978947095 1729333458.4 +58.46484597448051 1729337212.7 +55.40585848394417 1729340967 +51.741130417319994 1729344721.4 +45.81147584599639 1729348475.7 +0.0 1729352230 +84.88365981037816 1729404945.1 +75.67554468986096 1729408676.6 +69.67990774931017 1729412408.2 +65.34345673737099 1729416139.7 +61.88857503147165 1729419871.3 +58.87036688777595 1729423602.8 +55.91219148678573 1729427334.4 +52.46325940740807 1729431065.9 +47.08071718576665 1729434797.5 +0.0 1729438529 +84.99042152644597 1729491449.3 +75.90464444645063 1729495158.2 +69.95941355067293 1729498867 +65.65411518764196 1729502575.9 +62.234063202061584 1729506284.7 +59.272210729660614 1729509993.6 +56.417119973327445 1729513702.5 +53.173489144452795 1729517411.3 +48.321078431739615 1729521120.2 +1.3063436152001384 1729524829 +85.09718324251378 1729577953.9 +76.12779457651868 1729581640.1 +70.23296972551402 1729585326.3 +65.95882401139127 1729589012.6 +62.579551372651515 1729592698.8 +59.674054571545284 1729596385 +56.91382627823657 1729600071.3 +53.87041511215434 1729603757.5 +49.52433740228272 1729607443.8 +1.3782756109489758 1729611130 +85.19799533205989 1729664458.6 +76.3509447065867 1729668122.4 +70.50652590035514 1729671786.1 +66.26353283514057 1729675449.8 +62.92136247183069 1729679113.5 +60.06994878690829 1729682777.2 +57.40090588521328 1729686440.9 +54.5613914533342 1729690104.6 +50.698716279028524 1729693768.3 +0.0 1729697432 +85.29513035019527 1729750963.7 +76.5644681387223 1729754604.9 +70.77640500378546 1729758246.2 +66.56824165888987 1729761887.5 +63.26090101589896 1729765528.7 +60.459893375749616 1729769170 +57.890258047300875 1729772811.3 +55.23311439864921 1729776452.6 +51.83231580893369 1729780093.8 +0.0 1729783735.1 +85.39226536833064 1729837468.9 +76.78394119737959 1729841087.9 +71.04033448069414 1729844706.8 +66.86927341122839 1729848325.7 +63.59676248855646 1729851944.6 +60.852110519701846 1729855563.6 +58.371388027755906 1729859182.5 +55.89293809092087 1729862801.4 +52.940712316452334 1729866420.4 +46.53728190749523 1729870039.3 +85.48712783135511 1729923974.4 +76.99151500299352 1729927571.1 +71.3042639576028 1729931167.8 +67.16435553704527 1729934764.5 +63.932623961213956 1729938361.2 +61.238378037132414 1729941957.8 +58.84516386538941 1729945554.5 +56.543135085260104 1729949151.2 +54.00832947713033 1729952747.9 +42.51743897234868 1729956344.6 +85.5783132229688 1730010480 +77.19908880860744 1730014054.6 +71.5645163631007 1730017629.2 +67.45943766286213 1730021203.7 +64.26253580734979 1730024778.3 +61.618695928041305 1730028352.9 +59.316667147912014 1730031927.4 +57.17775575514524 1730035502 +55.04479398890014 1730039076.6 +52.75239190670327 1730042651.1 +85.66582154317175 1730096985.9 +77.40298554281063 1730100538.4 +71.81881914207693 1730104091 +67.74857016215734 1730107643.5 +64.58649802696395 1730111196.1 +61.995336747539454 1730114748.6 +59.780816287613085 1730118301.2 +57.80274972709794 1730121853.8 +56.04415622524007 1730125406.3 +53.383335505177634 1730128958.9 +85.75105730826377 1730183491.8 +77.60093265049211 1730187022.5 +72.06717229453149 1730190553.2 +68.03770266145253 1730194083.8 +64.91273280168903 1730197614.5 +62.37197756703759 1730201145.2 +60.23674324568158 1730204675.9 +58.41811700111821 1730208206.5 +57.01463836778271 1730211737.2 +56.49272904048704 1730215267.9 +85.8385656284667 1730269997.9 +77.79520268676286 1730273506.8 +72.32147507350774 1730277015.8 +68.32315808933696 1730280524.7 +65.23301794989243 1730284033.6 +62.742668760014055 1730287542.5 +60.68531606092855 1730291051.4 +59.017907950684375 1730294560.4 +57.95029079000637 1730298069.3 +58.22016989343671 1730301578.2 +85.92012432214798 1730356504.1 +77.98720016792268 1730359991.4 +72.56615115455155 1730363478.7 +68.60266389069974 1730366966 +65.55330309809582 1730370453.3 +63.10741032646886 1730373940.6 +61.13161632106461 1730377427.9 +59.60212257579645 1730380915.2 +58.85479056332184 1730384402.5 +61.76623699094975 1730387889.8 +86.00168301582924 1730443010.4 +78.17552057767176 1730446476.2 +72.80487760907366 1730449942 +68.88216969206249 1730453407.9 +65.8616889932559 1730456873.7 +63.47442444803456 1730460339.5 +61.56828988326824 1730463805.4 +60.176710502976086 1730467271.2 +59.72813768772911 1730470737 +61.42074882035981 1730474202.9 +86.08324170951052 1730529516.7 +78.36384098742082 1730532961.2 +73.04360406359581 1730536405.7 +69.1557258669036 1730539850.2 +66.17234744352686 1730543294.7 +63.82953931655692 1730546739.2 +62.001286374061124 1730550183.8 +60.739399177112375 1730553628.3 +60.572604718339086 1730557072.8 +62.90578614737659 1730560517.3 +86.1588507766701 1730616023 +78.54621177064821 1730619446.3 +73.27638089159628 1730622869.7 +69.42560497033392 1730626293 +66.48300589379784 1730629716.4 +64.18097711366852 1730633139.8 +62.42238361181066 1730636563.1 +61.288784081905476 1730639986.5 +61.385919100040844 1730643409.8 +64.31294185212286 1730646833.2 +86.23445984382971 1730702529.2 +78.71895585594318 1730705931.6 +73.51143027470765 1730709334 +69.69321151865337 1730712736.4 +66.78176509102546 1730716138.7 +64.53241491078013 1730719541.1 +62.839803778149424 1730722943.5 +61.82854228876616 1730726345.9 +62.16440376142365 1730729748.2 +65.66006481416363 1730733150.6 +86.30639183957854 1730789035.4 +78.89764956775981 1730792417 +73.73825747618645 1730795798.6 +69.95346392415127 1730799180.2 +67.082796843364 1730802561.7 +64.8719534548484 1730805943.3 +63.25127431796652 1730809324.9 +62.35045161606182 1730812706.4 +62.92136247183069 1730816088 +66.94488247838801 1730819469.6 +86.37605128021647 1730875541.5 +79.06444402653312 1730878902.5 +73.95773053484372 1730882263.4 +70.21739340105992 1730885624.4 +67.37787896918087 1730888985.4 +65.21149199891666 1730892346.3 +63.65311815985119 1730895707.3 +62.86500680053596 1730899068.2 +63.64716853332953 1730902429.2 +68.16966739990686 1730905790.1 +86.4479832759653 1730962047.5 +79.23351104041733 1730965388 +74.18088066491175 1730968728.5 +70.47169618003618 1730972069.1 +67.66701146847608 1730975409.6 +65.54367640016339 1730978750.2 +64.04901237521419 1730982090.7 +63.36766273196676 1730985431.2 +64.34409450103105 1730988771.8 +69.34404627665266 1730992112.3 +86.51396564519247 1731048553.2 +79.40030549919062 1731051873.6 +74.39440409704734 1731055193.9 +70.72004933249073 1731058514.2 +67.9501943412496 1731061834.5 +65.87358824629922 1731065154.9 +64.43895696405552 1731068475.2 +63.85474233894345 1731071795.5 +65.01354489123516 1731075115.8 +70.46206948210374 1731078436.2 +86.57994801441966 1731135058.7 +79.55747326003149 1731138359.1 +74.60792752918293 1731141659.4 +70.97067504005621 1731144959.7 +68.23564976913401 1731148260.1 +66.19387339450263 1731151560.4 +64.82154741007533 1731154860.7 +64.32851817657695 1731158161.1 +65.66006481416363 1731161461.4 +71.52373701626006 1731164761.7 +86.64593038364681 1731221563.9 +79.71464102087236 1731224844.5 +74.81550133479688 1731228125.1 +71.21307856598911 1731231405.7 +68.50920594397513 1731234686.2 +66.51415854270603 1731237966.8 +65.19591567446255 1731241247.4 +64.7963443876888 1731244527.9 +66.27910915959467 1731247808.5 +72.54094813216501 1731251089.1 +86.70823568146322 1731308068.8 +79.86813171030245 1731311329.9 +75.01939806900005 1731314590.9 +71.45180502051123 1731317851.9 +68.78503467392713 1731321113 +66.8225444378661 1731324374 +65.56292979602826 1731327635.1 +65.24264464782486 1731330896.1 +66.87890010916082 1731334157.2 +73.49585395025355 1731337418.2 +86.76826842416871 1731394573.3 +80.01934984462166 1731397815.1 +75.21734517668155 1731401056.8 +71.6868544036226 1731404298.6 +69.0489641508358 1731407540.4 +67.1272532616154 1731410782.1 +65.91804466455064 1731414023.9 +65.68526783655017 1731417265.7 +67.45348803634046 1731420507.4 +74.39440409704734 1731423749.2 +86.82830116687421 1731481077.3 +80.16321383611933 1731484300.1 +75.41529228436305 1731487522.8 +71.91595416021231 1731490745.6 +69.31289362774447 1731493968.3 +67.42828501395392 1731497191.1 +66.26948246166224 1731500413.8 +66.11231470082136 1731503636.6 +68.00287294113356 1731506859.3 +75.2388711276573 1731510082.1 +86.88465683816895 1731567580.8 +80.30480527250609 1731570784.8 +75.60361269411212 1731573988.8 +72.14278136169109 1731577192.8 +69.5671964067207 1731580396.9 +67.7233671397708 1731583600.9 +66.6090210057305 1731586804.9 +66.52746231204922 1731590008.9 +68.5307318949509 1731593212.9 +76.02103286045089 1731596416.9 +86.94101250946368 1731654083.8 +80.44639670889286 1731657269.3 +75.79193310386117 1731660454.9 +72.36225442034838 1731663640.4 +69.82149918569694 1731666825.9 +68.012499639066 1731670011.5 +66.94488247838801 1731673197 +66.9293061539339 1731676382.6 +69.03933745290337 1731679568.1 +76.74683892194972 1731682753.7 +86.99736818075841 1731740586.1 +80.58431107386886 1731743753.4 +75.97430388708858 1731746920.8 +72.57945492389474 1731750088.2 +70.0698523381515 1731753255.6 +68.29200544042877 1731756423 +67.27111725311306 1731759590.4 +67.32152329788613 1731762757.7 +69.52641705988006 1731765925.1 +77.42223893867549 1731769092.5 +87.04777422553147 1731827087.6 +80.71627581232319 1731830237.2 +76.15299759890522 1731833386.7 +72.79297835603035 1731836536.2 +70.30857879267364 1731839685.8 +68.56556161526987 1731842835.3 +67.59140240131647 1731845984.8 +67.70184118879504 1731849134.4 +69.98829364447023 1731852283.9 +78.04355583921742 1731855433.4 +87.09818027030455 1731913588.5 +80.84229092425585 1731916720.5 +76.32574168420018 1731919852.5 +72.99687509023352 1731922984.5 +70.543628175785 1731926116.4 +68.8354407187002 1731929248.4 +67.89978829647653 1731932380.4 +68.06885531036072 1731935512.4 +70.4368664597172 1731938644.4 +78.6121941398754 1731941776.4 +87.14858631507761 1732000088.4 +80.96462896477776 1732003203.2 +76.49848576949515 1732006318 +73.20077182443667 1732009432.8 +70.77640500378546 1732012547.6 +69.0956931241981 1732015662.4 +68.20082004881506 1732018777.2 +68.4239701788831 1732021892 +70.86391332398841 1732025006.8 +79.14005309369271 1732028121.6 +87.20126491496158 1732086587.5 +81.08696700529966 1732089685.4 +76.66160315685768 1732092783.4 +73.39871893211817 1732095881.3 +70.9995551338535 1732098979.3 +69.34772334806343 1732102077.2 +68.49590217463194 1732105175.1 +68.76945834947303 1732108273.1 +71.2753838638055 1732111371 +79.62940525578031 1732114469 +87.24572133321297 1732173085.6 +81.2033554192999 1732176167 +76.82472054422021 1732179248.5 +73.58703934186725 1732182329.9 +71.21902819251078 1732185411.4 +69.59834905562889 1732188492.8 +68.77908504740547 1732191574.3 +69.10531982213053 1732194655.7 +71.66532845264683 1732197737.1 +80.0757055159164 1732200818.6 +87.29245030657528 1732259582.6 +81.32201638841103 1732262647.9 +76.97593867853942 1732265713.2 +73.7753597516163 1732268778.6 +71.43255162464636 1732271843.9 +69.83707551015102 1732274909.2 +69.05491377735747 1732277974.5 +69.42560497033392 1732281039.8 +72.04196927214497 1732284105.2 +80.4871760557335 1732287170.5 +87.33322965341591 1732346078.5 +81.43245517588959 1732349128 +77.12942936796952 1732352177.6 +73.95178090832205 1732355227.2 +71.63644835884953 1732358276.8 +70.0698523381515 1732361326.4 +69.3225203256769 1732364376 +69.733990865494 1732367425.5 +72.39708414066735 1732370475.1 +80.86381687523162 1732373524.7 +87.37400900025655 1732432573.1 +81.5392168919574 1732435607.4 +77.27697043087795 1732438641.6 +74.13047462013868 1732441675.8 +71.8380725379418 1732444710.1 +70.29895209474121 1732447744.3 +69.5827727311748 1732450778.6 +70.03502261783254 1732453812.8 +72.7388952398465 1732456847.1 +81.21525467234324 1732459881.3 +87.41478834709719 1732519066.5 +81.64002898150353 1732522085.8 +77.41856186726473 1732525105.1 +74.29726907891198 1732528124.4 +72.03234257421254 1732531143.7 +70.51842515339848 1732534163 +69.83112588362935 1732537182.4 +70.31820549060608 1732540201.7 +73.06880708598234 1732543221 +81.5392168919574 1732546240.3 +87.45329513882692 1732605558.4 +81.73716399963891 1732608563.2 +77.55647623224073 1732611568 +74.46038646627451 1732614572.9 +72.22066298396162 1732617577.7 +70.73194858553407 1732620582.5 +70.0698523381515 1732623587.3 +70.59771129196884 1732626592.1 +73.3794655362533 1732629596.9 +81.83429901777427 1732632601.8 +87.49407448566754 1732692048.9 +81.83429901777427 1732695039.7 +77.68844097069505 1732698030.4 +74.61755422711536 1732701021.2 +72.39708414066735 1732704011.9 +70.93357276462633 1732707002.7 +70.30490172126288 1732709993.4 +70.85796369746674 1732712984.2 +73.67227510695928 1732715974.9 +82.11380481913703 1732718965.7 +87.53117676109741 1732778537.9 +81.92548440938796 1732781515 +77.8144560826277 1732784492.1 +74.77104491654548 1732787469.3 +72.57577785248398 1732790446.4 +71.13151987230783 1732793423.6 +70.5280518513309 1732796400.7 +71.11226647644297 1732799377.9 +73.95178090832205 1732802355 +82.36810759811327 1732805332.1 +87.56005685489471 1732865025.2 +82.01299272959089 1732867989.2 +77.93679412314962 1732870953.2 +74.91858597945391 1732873917.2 +72.7388952398465 1732876881.2 +71.3198402820569 1732879845.1 +70.7415752834665 1732882809.1 +71.35694255748678 1732885773.1 +74.21798294034161 1732888737.1 +82.60088442611374 1732891701.1 +87.59715913032458 1732951510.7 +82.09822849468291 1732954462.1 +78.05318253714985 1732957413.4 +75.06017741584068 1732960364.7 +72.89974007209814 1732963316.1 +71.5022110652843 1732966267.4 +70.94319946255877 1732969218.7 +71.58971938548723 1732972170.1 +74.47001316420695 1732975121.4 +82.81440785824934 1732978072.7 +87.62603922412188 1733037994.5 +82.1797871883642 1733040933.7 +78.16589387973933 1733043872.8 +75.19214215429501 1733046812 +73.05323076152824 1733049751.2 +71.67495515057927 1733052690.3 +71.14341912535117 1733055629.5 +71.8091924441445 1733058568.6 +74.70873961872908 1733061507.8 +83.0183045924525 1733064446.9 +87.65719187303009 1733124476.4 +82.2553962555238 1733127403.9 +78.27265559580711 1733130331.4 +75.32042982133859 1733133258.9 +73.20077182443667 1733136186.4 +71.84402216446347 1733139113.8 +71.32578990857857 1733142041.3 +72.01676624975843 1733144968.8 +74.93416230390801 1733147896.3 +83.20067537567991 1733150823.8 +87.6823948954166 1733210956.3 +82.32732825127263 1733213872.7 +78.37346768535325 1733216789 +75.44644493327124 1733219705.3 +73.34236326082345 1733222621.7 +72.00118992530433 1733225538 +71.5022110652843 1733228454.3 +72.21471335743993 1733231370.7 +75.14768573604361 1733234287 +83.37341946097487 1733237203.3 +87.71354754432481 1733297434.2 +82.39926024702147 1733300339.9 +78.47060270348862 1733303245.6 +75.55915627586072 1733306151.3 +73.47432799927778 1733309057 +72.14873098821276 1733311962.7 +71.6712780791685 1733314868.4 +72.40303376718902 1733317774.1 +75.34563284372511 1733320679.8 +83.53058722181574 1733323585.5 +87.73875056671133 1733383909.9 +82.46524261624864 1733386805.5 +78.55583846858066 1733389701.1 +75.66959506333929 1733392596.8 +73.60261566632136 1733395492.4 +72.29032242459954 1733398388 +71.82844584000937 1733401283.6 +72.57577785248398 1733404179.2 +75.5339532534742 1733407074.9 +83.6744512133134 1733409970.5 +87.7602765176871 1733470383.4 +82.52527535895413 1733473269.5 +78.64334678878359 1733476155.6 +75.77267970799632 1733479041.6 +73.71900408032158 1733481927.7 +72.42228716305388 1733484813.8 +71.97598690291781 1733487699.9 +72.74257231125726 1733490586 +75.70669733876915 1733493472.1 +83.80641595176773 1733496358.2 +87.78547954007364 1733556854.6 +82.58163103024887 1733559731.7 +78.72490548246485 1733562608.8 +75.86754217102079 1733565485.9 +73.83171542291105 1733568363 +72.54462520357578 1733571240.1 +72.11757833930457 1733574117.3 +72.89606300068738 1733576994.4 +75.86754217102079 1733579871.5 +83.92875399228963 1733582748.6 +87.80473293593852 1733643323.3 +82.63203707502193 1733646192.1 +78.80051454962445 1733649060.8 +75.95872756263448 1733651929.5 +73.93252751245717 1733654798.2 +72.661013617576 1733657667 +72.24586600634814 1733660535.7 +73.03765443707414 1733663404.4 +76.01508323392922 1733666273.1 +84.0391927797682 1733669141.8 +87.82625888691429 1733729789.6 +82.682443119795 1733732650.6 +78.86649691885162 1733735511.5 +76.04623588283742 1733738372.4 +74.02966253059255 1733741233.3 +72.77372496016547 1733744094.2 +72.36820404687005 1733746955.1 +73.16961917552848 1733749816 +76.15299759890522 1733752676.9 +84.14227742442525 1733755537.9 +87.83956265625748 1733816253.4 +82.72917209315729 1733819107.1 +78.93247928807878 1733821960.8 +76.12184494999701 1733824814.5 +74.11489829568457 1733827668.2 +72.87085997830084 1733830521.9 +72.4786428343486 1733833375.6 +73.29195721605038 1733836229.3 +76.27901271083788 1733839083 +84.23346281603894 1733841936.7 +87.85513898071157 1733902714.5 +82.77362851140869 1733905561.6 +78.9925120307843 1733908408.7 +76.19377694574585 1733911255.8 +74.19645698936584 1733914102.9 +72.96204536991455 1733916950 +72.57945492389474 1733919797 +73.40466855863986 1733922644.1 +76.39767367994902 1733925491.2 +84.31502150972021 1733928338.3 +87.87071530516567 1733989173 +82.81073078683858 1733992014.1 +79.04519063066826 1733994855.1 +76.25380968845135 1733997696.2 +74.27206605652545 1734000537.3 +73.04360406359581 1734003378.4 +72.66696324409767 1734006219.5 +73.50548064818598 1734009060.5 +76.49848576949515 1734011901.6 +84.38468095035815 1734014742.7 +87.88629162961978 1734075628.7 +82.84556050715753 1734078464.4 +79.08964704891966 1734081300.1 +76.31611498626775 1734084135.7 +74.33804842575262 1734086971.4 +73.11921313075541 1734089807.1 +72.74852193777893 1734092642.8 +73.59071641327802 1734095478.5 +76.58967116110885 1734098314.2 +84.4506633195853 1734101149.9 +87.89591832755221 1734162081.5 +82.87076352954406 1734164912.5 +79.13637602228195 1734167743.4 +76.36652103104082 1734170574.3 +74.39440409704734 1734173405.3 +73.1792458734609 1734176236.2 +72.82413100493854 1734179067.1 +73.67227510695928 1734181898.1 +76.67122985479011 1734184729 +84.50701899088004 1734187559.9 +87.90554502548464 1734248531.5 +82.90191617845227 1734251358.3 +79.17120574260092 1734254185.1 +76.40730037788146 1734257011.9 +74.44481014182041 1734259838.7 +73.23560154475564 1734262665.5 +72.88643630275494 1734265492.3 +73.73825747618645 1734268319.1 +76.73721222401728 1734271145.9 +84.55374796424233 1734273972.7 +87.91744427852798 1734334978.5 +82.92116957431713 1734337801.8 +79.20235839150912 1734340625.1 +76.44213009820042 1734343448.4 +74.48558948866105 1734346271.7 +73.28600758952871 1734349095.1 +72.936842347528 1734351918.4 +73.79461314748119 1734354741.7 +76.79724496672279 1734357565 +84.59452731108297 1734360388.3 +87.92112134993874 1734421422.4 +82.93674589877124 1734424242.9 +79.22756141389566 1734427063.4 +76.47328274710861 1734429883.9 +74.52269176409091 1734432704.3 +73.32310986495857 1734435524.8 +72.9812987657794 1734438345.3 +73.84134212084348 1734441165.8 +76.84397394008508 1734443986.2 +84.62340740488027 1734446806.7 +87.92707097646041 1734507863.4 +82.95232222322534 1734510681.6 +79.24313773834976 1734513499.9 +76.49848576949515 1734516318.2 +74.54789478647744 1734519136.5 +73.35198995875587 1734521954.7 +73.0124514146876 1734524773 +73.87617184116243 1734527591.3 +76.87880366040405 1734530409.6 +84.64861042726679 1734533227.8 +87.93302060298208 1734594301.2 +82.96194892115776 1734597117.9 +79.25871406280386 1734599934.6 +76.51406209394925 1734602751.3 +74.56714818234231 1734605568.1 +73.37351590973164 1734608384.8 +73.03765443707414 1734611201.5 +73.90137486354898 1734614018.2 +76.90400668279058 1734616835 +84.6641867517209 1734619651.7 +87.93669767439285 1734680735.8 +82.96789854767943 1734683551.6 +79.2683407607363 1734686367.5 +76.52368879188167 1734689183.3 +74.57677488027474 1734691999.1 +73.38909223418574 1734694814.9 +73.04728113500657 1734697630.8 +73.91695118800307 1734700446.6 +76.91958300724468 1734703262.4 +84.67381344965332 1734706078.2 +87.93669767439285 1734767167.2 +82.97157561909019 1734769982.8 +79.2683407607363 1734772798.4 +76.52963841840334 1734775614 +74.58272450679641 1734778429.6 +73.38909223418574 1734781245.1 +73.05323076152824 1734784060.7 +73.92290081452474 1734786876.3 +76.92553263376635 1734789691.9 +84.67381344965332 1734792507.5 +87.93669767439285 1734853595.4 +82.96789854767943 1734856411.4 +79.2683407607363 1734859227.4 +76.52368879188167 1734862043.4 +74.57677488027474 1734864859.4 +73.38314260766407 1734867675.4 +73.04728113500657 1734870491.4 +73.9110015614814 1734873307.4 +76.9159059358339 1734876123.3 +84.67013637824256 1734878939.3 +87.93302060298208 1734940020.3 +82.96194892115776 1734942837.4 +79.25871406280386 1734945654.5 +76.51406209394925 1734948471.5 +74.56347111093154 1734951288.6 +73.36756628320997 1734954105.6 +73.0280277391417 1734956922.7 +73.8976977921382 1734959739.7 +76.89437998485815 1734962556.8 +84.66050968031013 1734965373.8 +87.93302060298208 1735026442 +82.95232222322534 1735029260.7 +79.24313773834976 1735032079.5 +76.49253614297348 1735034898.3 +74.54194515995577 1735037717 +73.3483128873451 1735040535.8 +73.00282471675517 1735043354.6 +73.86654514323001 1735046173.3 +76.86917696247161 1735048992.1 +84.63898372933436 1735051810.9 +87.92707097646041 1735112860.3 +82.93674589877124 1735115681.4 +79.22161178737399 1735118502.5 +76.46733312058694 1735121323.7 +74.51674213756924 1735124144.8 +73.3171602384369 1735126965.9 +72.96572244132531 1735129787 +73.82576579638938 1735132608.2 +76.82839761563099 1735135429.3 +84.60783108042617 1735138250.4 +87.91744427852798 1735199275.2 +82.92116957431713 1735202099.4 +79.19640876498747 1735204923.5 +76.43845302678965 1735207747.6 +74.47596279072862 1735210571.8 +73.27270382018551 1735213395.9 +72.92126602307391 1735216220.1 +73.7753597516163 1735219044.2 +76.77799157085792 1735221868.3 +84.5730013601072 1735224692.5 +87.91149465200631 1735285686.8 +82.8959665519306 1735288514.6 +79.16525611607926 1735291342.4 +76.40135075135979 1735294170.2 +74.43518344388796 1735296998 +73.2259748468232 1735299825.8 +72.86491035177917 1735302653.6 +73.71305445379991 1735305481.4 +76.71200920163075 1735308309.2 +84.5262723867449 1735311137 +87.90186795407388 1735372095 +82.87076352954406 1735374927.1 +79.12674932434953 1735377759.2 +76.35689433310837 1735380591.3 +74.38477739911491 1735383423.4 +73.16594210411772 1735386255.5 +72.79892798255199 1735389087.6 +73.64339501316198 1735391919.7 +76.64007720588191 1735394751.8 +84.47586634197184 1735397583.9 +87.89224125614145 1735458499.8 +82.83961088063586 1735461336.9 +79.0859699775089 1735464173.9 +76.30053866181365 1735467010.9 +74.32247210129852 1735469847.9 +73.09995973489055 1735472685 +72.72699598680316 1735475522 +73.56183631948072 1735478359 +76.55484144078987 1735481196 +84.41583359926634 1735484033 +87.87666493168734 1735544901.3 +82.8047811603169 1735547743.9 +79.03924100414659 1735550586.5 +76.24418299051892 1735553429 +74.25648973207134 1735556271.6 +73.02207811262004 1735559114.2 +72.64176022171114 1735561956.8 +73.47065092786701 1735564799.4 +76.45770642265451 1735567641.9 +84.34985123003918 1735570484.5 +87.86108860723324 1735631299.4 +82.76995143999793 1735634148.1 +78.98288533285186 1735636996.9 +76.17820062129174 1735639845.6 +74.18088066491175 1735642694.4 +72.936842347528 1735645543.2 +72.54462520357578 1735648391.9 +73.3638892117992 1735651240.7 +76.3509447065867 1735654089.4 +84.2682925363579 1735656938.2 +87.84551228277913 1735717694.1 +82.72917209315729 1735720549.6 +78.92285259014635 1735723405.2 +76.10626862554291 1735726260.7 +74.09564489981972 1735729116.3 +72.84565695591431 1735731971.8 +72.44381311402964 1735734827.4 +73.25117786920973 1735737682.9 +76.22860666606482 1735740538.5 +84.18673384267663 1735743394 +87.82993595832505 1735804085.4 +82.682443119795 1735806948.3 +78.85687022091919 1735809811.3 +76.02698248697256 1735812674.2 +74.00445950820601 1735815537.2 +72.7388952398465 1735818400.1 +72.32742470002941 1735821263.1 +73.12516275727708 1735824126 +76.09664192761049 1735826989 +84.0859217531305 1735829851.9 +87.81068256246019 1735890473.4 +82.63203707502193 1735893344.3 +78.78493822517035 1735896215.3 +75.93947416676961 1735899086.2 +73.90732449007064 1735901957.1 +72.6321335237787 1735904828.1 +72.2050866595075 1735907699 +72.98724839230107 1735910570 +75.95505049122372 1735913440.9 +83.98283710847348 1735916311.9 +87.7891566114844 1735976858 +82.5756814037272 1735979737.6 +78.71300622942152 1735982617.1 +75.84828877515591 1735985496.6 +73.80056277400284 1735988376.1 +72.50979548325681 1735991255.6 +72.07312192105316 1735994135.2 +72.83970732939264 1735997014.7 +75.79788273038284 1735999894.2 +83.86277162306247 1736002773.7 +87.76990321561954 1736063239.4 +82.51932573243246 1736066128 +78.6277704643295 1736069016.7 +75.75115375702055 1736071905.4 +73.68785143141338 1736074794.1 +72.38150781621324 1736077682.8 +71.9292579295555 1736080571.4 +72.6765899420301 1736083460.1 +75.62881571649865 1736086348.8 +83.73448395601889 1736089237.5 +87.744700193233 1736149617.4 +82.45929298972698 1736152515.8 +78.54621177064821 1736155414.2 +75.64439204095275 1736158312.6 +73.56551339089148 1736161211 +72.24586600634814 1736164109.4 +71.77803979523631 1736167007.8 +72.50979548325681 1736169906.3 +75.4523945597929 1736172804.7 +83.59656959104291 1736175703.1 +87.71949717084648 1736235992.2 +82.3933106204998 1736238900.9 +78.44907675251285 1736241809.6 +75.5339532534742 1736244718.3 +73.43949827895881 1736247626.9 +72.10200201485047 1736250535.6 +71.61492240787375 1736253444.3 +72.32742470002941 1736256353 +75.25812452352218 1736259261.7 +83.44535145672371 1736262170.4 +87.69429414845995 1736322363.8 +82.32137862475096 1736325283.3 +78.35421428948838 1736328202.8 +75.41529228436305 1736331122.3 +73.30158391398281 1736334041.8 +71.95078388053128 1736336961.3 +71.4421783225788 1736339880.8 +72.13315466375866 1736342800.3 +75.05055071790825 1736345719.9 +83.2762844428395 1736348639.4 +87.66314149955174 1736408732.1 +82.24576955759137 1736411663 +78.25112964483135 1736414593.9 +75.28927717243037 1736417524.7 +73.15999247759605 1736420455.6 +71.78766649316873 1736423386.5 +71.2598075393514 1736426317.3 +71.9292579295555 1736429248.2 +74.83107765925098 1736432179.1 +83.09986328613377 1736435110 +87.6379384771652 1736495097.3 +82.17016049043177 1736498040.1 +78.1406908573528 1736500982.8 +75.16098950538681 1736503925.6 +73.0124514146876 1736506868.3 +71.62087203439542 1736509811.1 +71.07148712960233 1736512753.8 +71.7157344974199 1736515696.6 +74.59830083125051 1736518639.3 +82.90559324986303 1736521582.1 +87.60678582825702 1736581459.4 +82.08860179675051 1736584414.5 +78.02797951476332 1736587369.7 +75.02534769552172 1736590324.8 +72.85528365384674 1736593279.9 +71.4421783225788 1736596235.1 +70.86759039539918 1736599190.2 +71.49258436735187 1736602145.3 +74.35362475020672 1736605100.5 +82.69206981772743 1736608055.6 +87.57195610793804 1736667818.4 +82.00109347654755 1736670786.4 +77.91159110076309 1736673754.4 +74.88148370402405 1736676722.4 +72.6921662664842 1736679690.5 +71.25385791282974 1736682658.5 +70.66001658978524 1736685626.5 +71.25385791282974 1736688594.5 +74.08969527329805 1736691562.5 +82.46524261624864 1736694530.6 +87.53485383250818 1736754174.3 +81.91585771145553 1736757155.7 +77.78925306024118 1736760137.1 +74.73026556970484 1736763118.5 +72.51942218118923 1736766099.9 +71.0618604316699 1736769081.3 +70.44054353112797 1736772062.6 +71.00550476037517 1736775044 +73.81613909845694 1736778025.4 +82.22056653520484 1736781006.8 +87.50002411218921 1736840527.3 +81.82467231984182 1736843522.5 +77.65728832178685 1736846517.7 +74.57677488027474 1736849513 +72.3407284693726 1736852508.2 +70.86391332398841 1736855503.4 +70.21144377453827 1736858498.6 +70.74525235487727 1736861493.8 +73.52473404405085 1736864489.1 +81.9506874317745 1736867484.3 +87.46519439187026 1736926877.3 +81.72753730170648 1736929886.8 +77.52532358333252 1736932896.3 +74.41593004802311 1736935905.8 +72.15835768614521 1736938915.4 +70.65406696326357 1736941924.9 +69.97271732001613 1736944934.4 +70.47169618003618 1736947943.9 +73.22002522030154 1736950953.4 +81.6615549324793 1736953962.9 +87.42441504502962 1737013224.4 +81.62672521216034 1737016248.7 +77.38373214694576 1737019272.9 +74.25281266066058 1737022297.2 +71.96636020498538 1737025321.4 +70.4368664597172 1737028345.7 +69.73031379408323 1737031369.9 +70.1921903786734 1737034394.1 +72.89974007209814 1737037418.4 +81.34721941079756 1737040442.6 +87.38363569818898 1737099568.7 +81.51996349609254 1737102608.1 +77.2398681554481 1737105647.5 +74.08006857536562 1737108686.9 +71.76841309730388 1737111726.3 +70.21144377453827 1737114765.7 +69.476011015107 1737117805.1 +69.89343118144576 1737120844.6 +72.56615115455155 1737123884 +81.00173124020763 1737126923.4 +87.34285635134835 1737185910.2 +81.41320178002474 1737188965.2 +77.09232709253965 1737192020.1 +73.90137486354898 1737195075.1 +71.5645163631007 1737198130.1 +69.98461657305945 1737201185.1 +69.20613191167666 1737204240.1 +69.58644980258556 1737207295.1 +72.20876373091826 1737210350.1 +80.63471711864192 1737213405.1 +87.29612737798604 1737272248.9 +81.30049043743526 1737275319.9 +76.94110895822045 1737278390.8 +73.71900408032158 1737281461.8 +71.35694255748678 1737284532.8 +69.74589011853733 1737287603.8 +68.93625280824634 1737290674.7 +69.26843720949307 1737293745.7 +71.8380725379418 1737296816.7 +80.2291962053465 1737299887.6 +87.25167095973464 1737358584.9 +81.18410202343503 1737361672.3 +76.78394119737959 1737364759.6 +73.52473404405085 1737367847 +71.1374694988295 1737370934.3 +69.49526441097186 1737374021.6 +68.6530699354728 1737377109 +68.93625280824634 1737380196.3 +71.45180502051123 1737383283.7 +79.79025008803195 1737386371 +87.20494198637235 1737444918.3 +81.0677136094348 1737448022.4 +76.62082381001706 1737451126.5 +73.332736562891 1737454230.6 +70.91799644017223 1737457334.7 +69.24691125851729 1737460438.8 +68.3639374361776 1737463542.9 +68.59671426417808 1737466647 +71.04628410721581 1737469751.1 +79.31874680550936 1737472855.2 +87.15453594159928 1737531249.1 +80.9453755689129 1737534370.3 +76.45175679613284 1737537491.5 +73.13478945520951 1737540612.8 +70.69116923869343 1737543734 +68.98298178160863 1737546855.2 +68.06290568383905 1737549976.4 +68.24159939565568 1737553097.6 +70.6192372429446 1737556218.8 +78.80051454962445 1737559340 +87.10780696823699 1737617577.4 +80.81708790186931 1737620716.1 +76.27901271083788 1737623854.8 +72.92721564959558 1737626993.4 +70.45244278417131 1737630132.1 +68.71905230469997 1737633270.8 +67.7522472335681 1737636409.4 +67.87458527409 1737639548.1 +70.1766140542193 1737642686.8 +78.23555332037725 1737645825.4 +87.05372385205314 1737703903.2 +80.685123163415 1737707059.7 +76.10259155413215 1737710216.2 +72.71736928887074 1737713372.6 +70.21144377453827 1737716529.1 +68.44322357474796 1737719685.6 +67.43791171188636 1737722842 +67.49794445459186 1737725998.5 +69.71473746962913 1737729155 +77.62613567287866 1737732311.4 +87.00104525216918 1737790226.6 +80.55315842496067 1737793401.2 +75.92022077090475 1737796575.8 +72.50384585673514 1737799750.4 +69.96904024860537 1737802925 +68.16371777338519 1737806099.6 +67.11167693716129 1737809274.2 +67.10799986575053 1737812448.8 +69.2313349340632 1737815623.4 +76.96631198060699 1737818798 +86.94696213598534 1737876547.6 +80.41751661509556 1737879740.7 +75.73557743256644 1737882933.7 +72.2806957266671 1737886126.7 +69.71473746962913 1737889319.8 +67.87458527409 1737892512.8 +66.7780880196147 1737895705.8 +66.70615602386587 1737898898.9 +68.7286790026324 1737902091.9 +76.24418299051892 1737905284.9 +86.89060646469062 1737962866.4 +80.2736526235979 1737966078.1 +75.54357995140661 1737969289.9 +72.05754559659907 1737972501.7 +69.4604346906529 1737975713.4 +67.5854527747948 1737978925.2 +66.43259984902477 1737982137 +66.2887358575271 1737985348.7 +68.20082004881506 1737988560.5 +75.47164795565779 1737991772.3 +86.83425079339587 1738049182.8 +80.12611156068945 1738052413.6 +75.34930991513588 1738055644.4 +71.82844584000937 1738058875.2 +69.19650521374423 1738062106 +67.28669357756716 1738065336.8 +66.08116205191317 1738068567.6 +65.8616889932559 1738071798.4 +67.65143514402197 1738075029.2 +74.63908017809113 1738078260 +86.77421805069038 1738135497.1 +79.97857049778102 1738138747.2 +75.15136280745438 1738141997.3 +71.59566901200891 1738145247.4 +68.93257573683557 1738148497.5 +66.97971219870695 1738151747.6 +65.72604718339079 1738154997.7 +65.42133835964148 1738158247.8 +67.07684721684232 1738161497.9 +73.74420710270812 1738164748 +86.70823568146322 1738221809.3 +79.82735236346183 1738225078.9 +74.94973862836211 1738228348.6 +71.35694255748678 1738231618.2 +68.65674700688356 1738234887.9 +66.66537667702524 1738238157.6 +65.35535599041432 1738241427.2 +64.96908847298376 1738244696.9 +66.48300589379784 1738247966.5 +72.78930128461958 1738251236.2 +86.64593038364681 1738308119.3 +79.67018460262095 1738311408.8 +74.73989226763727 1738314698.3 +71.11226647644297 1738317987.7 +68.38319083204246 1738321277.2 +66.35104115534351 1738324566.7 +64.98466479743786 1738327856.2 +64.50493933328269 1738331145.7 +65.85801192184513 1738334435.1 +71.78171686664707 1738337724.6 +86.57994801441966 1738394427.3 +79.5107442866692 1738397736.9 +74.52636883550169 1738401046.4 +70.86391332398841 1738404355.9 +68.09773540415803 1738407665.5 +66.02480638061844 1738410975 +64.59839728000729 1738414284.6 +64.02748642423842 1738417594.1 +65.21149199891666 1738420903.7 +70.71637226107997 1738424213.2 +86.51396564519247 1738480733.4 +79.34989945441757 1738484063.2 +74.31284540336608 1738487393 +70.61328761642294 1738490722.9 +67.81455253138449 1738494052.7 +65.6948945344826 1738497382.5 +64.20618013605505 1738500712.4 +63.540406817261726 1738504042.2 +64.54204160871255 1738507372 +69.59834905562889 1738510701.9 +86.44203364944364 1738567037.5 +79.18083244053335 1738570387.8 +74.09564489981972 1738573738.2 +70.35530776603593 1738577088.5 +67.51947040556763 1738580438.9 +65.35903306182509 1738583789.2 +63.81028592069205 1738587139.6 +63.03775088583093 1738590489.9 +63.83916601448935 1738593840.3 +68.4239701788831 1738597190.6 +86.37237420880571 1738653339.7 +79.01403798176005 1738656710.8 +73.87022221464078 1738660081.9 +70.09505536053803 1738663453 +67.22438827975076 1738666824 +65.01949451775683 1738670195.1 +63.40249245228572 1738673566.2 +62.51951862994602 1738676937.3 +63.11335995299052 1738680308.3 +67.19323563084255 1738683679.4 +86.30044221305688 1738739640.2 +78.83534426994342 1738743032.2 +73.64339501316198 1738746424.2 +69.83112588362935 1738749816.2 +66.92562908252313 1738753208.2 +64.6740063471669 1738756600.2 +62.991021912468625 1738759992.2 +61.9916596761287 1738763384.2 +62.35045161606182 1738766776.2 +65.90246834009653 1738770168.2 +86.22483314589728 1738825938.9 +78.65892311323769 1738829352 +73.40834563005062 1738832765.1 +69.56124678019903 1738836178.2 +66.62092025877384 1738839591.3 +64.3225685500553 1738843004.5 +62.56992467471909 1738846417.6 +61.451901469268016 1738849830.7 +61.56461281185748 1738853243.8 +64.551668306645 1738856656.9 +86.14922407873767 1738912235.8 +78.48022940142106 1738915670.3 +73.17556880205014 1738919104.7 +69.28769060535794 1738922539.1 +66.31026180850287 1738925973.5 +63.96745368153292 1738929407.9 +62.14287781044788 1738932842.4 +60.892889866542475 1738936276.8 +60.751298430155714 1738939711.2 +63.12893627744462 1738943145.6 +86.07134245646716 1738998531.1 +78.29190899167199 1739001987 +72.936842347528 1739005442.9 +69.01413443051683 1739008898.8 +65.9996033582319 1739012354.7 +63.60638918648889 1739015810.6 +61.70620424824425 1739019266.5 +60.32792863729529 1739022722.4 +59.89720470161332 1739026178.3 +61.640221879017076 1739029634.2 +85.9897837627859 1739084824.8 +78.10358858192292 1739088302.4 +72.6921662664842 1739091779.9 +68.73462862915407 1739095257.4 +65.68526783655017 1739098735 +63.241647620034094 1739102212.5 +61.26358105951894 1739105690 +59.74966363870488 1739109167.6 +59.017907950684375 1739112645.1 +60.06994878690829 1739116122.6 +85.90454799769388 1739171117 +77.91159110076309 1739174616.3 +72.4474901854404 1739178115.6 +68.44917320126963 1739181615 +65.36498268834676 1739185114.3 +62.87463349846839 1739188613.6 +60.817280799382885 1739192112.9 +59.15582231566039 1739195612.3 +58.10378147943648 1739199111.6 +62.15250450838032 1739202610.9 +85.8229893040126 1739257407.6 +77.71732106449234 1739260928.9 +72.19545996157507 1739264450.1 +68.16371777338519 1739267971.4 +65.0387479136217 1739271492.7 +62.497992678970256 1739275014 +60.359081286203484 1739278535.2 +58.54413211305087 1739282056.5 +57.15850235928038 1739285577.8 +56.66915019719277 1739289099 +85.73775353892057 1739343696.7 +77.51569688540009 1739347240.1 +71.9448342540096 1739350783.5 +67.87458527409 1739354326.8 +64.70883606748586 1739357870.2 +62.11767478806134 1739361413.5 +59.89720470161332 1739364956.9 +57.92508776761984 1739368500.2 +56.1761209636944 1739372043.6 +54.83127055676454 1739375587 +85.64429559219597 1739429984.5 +77.31180015119692 1739433550.1 +71.6868544036226 1739437115.6 +67.57950314827313 1739440681.2 +64.37892422135002 1739444246.8 +61.737356897152445 1739447812.4 +59.429378490501485 1739451377.9 +57.294144169145476 1739454943.5 +55.161182402900366 1739458509.1 +52.884356645157595 1739462074.7 +85.55311020058228 1739516270.9 +77.10422634558299 1739519858.8 +71.42660199812471 1739523446.7 +67.28669357756716 1739527034.6 +64.04901237521419 1739530622.5 +61.35108937972188 1739534210.5 +58.95192558145722 1739537798.4 +56.649896801327905 1739541386.3 +54.11509119319814 1739544974.2 +43.656988128775524 1739548562.1 +85.46192480896858 1739602555.9 +76.89437998485815 1739606166.3 +71.16267252121602 1739609776.7 +66.98566182522862 1739613387.1 +63.70720127603502 1739616997.4 +60.95887223576965 1739620607.8 +58.47447267241294 1739624218.2 +55.99007310905624 1739627828.6 +53.02594808154437 1739631439 +46.90429602906093 1739635049.3 +85.36478979083321 1739688839.7 +76.68085655272255 1739692472.6 +70.8927934177857 1739696105.6 +66.68095300147934 1739699738.5 +63.36766273196675 1739703371.5 +60.56297802040665 1739707004.5 +57.98739306543625 1739710637.4 +55.318350163741236 1739714270.4 +51.90792487609329 1739717903.3 +0.0 1739721536.3 +85.26397770128706 1739775122.2 +76.46365604917618 1739778777.8 +70.62518686946628 1739782433.5 +66.37624417773004 1739786089.1 +63.0281241878985 1739789744.8 +60.16708380504365 1739793400.4 +57.49436383193788 1739797056 +54.6370005204938 1739800711.7 +50.75507195032326 1739804367.3 +0.0 1739808023 +85.16316561174094 1739861403.6 +76.23823336399725 1739865082 +70.34935813951428 1739868760.4 +66.07153535398074 1739872438.8 +62.68263601730856 1739876117.2 +59.76523996315898 1739879795.7 +56.99538497191785 1739883474.1 +53.936397481381505 1739887152.5 +49.56143967771259 1739890830.9 +0.0 1739894509.3 +85.0600809670839 1739947683.8 +76.01140616251845 1739951385.1 +70.0698523381515 1739955086.3 +65.76087690370976 1739958787.6 +62.33119822019696 1739962488.9 +59.357446494752644 1739966190.2 +56.486779413965365 1739969891.5 +53.22984481574753 1739973592.8 +48.33665475619372 1739977294.1 +0.0 1739980995.4 +84.9533192510161 1740033962.9 +75.78230640592875 1740037687.1 +69.79034653678873 1740041411.4 +65.44654138202803 1740045135.6 +61.97976042308536 1740048859.9 +58.95192558145722 1740052584.1 +55.9781738560129 1740056308.4 +52.50771582565946 1740060032.7 +47.07704011435589 1740063756.9 +0.0 1740067481.2 +84.84288046353754 1740120240.9 +75.54725702281738 1740123988.2 +69.5071636640152 1740127735.5 +65.12993330523538 1740131482.8 +61.624645554562974 1740135230.1 +58.54045504164011 1740138977.4 +55.459941600128 1740142724.7 +51.7722830662282 1740146472 +45.780323197088194 1740150219.3 +0.0 1740153966.6 +84.73016912094808 1740206517.9 +75.30853056829524 1740210288.3 +69.22170823613077 1740214058.8 +64.8119207121429 1740217829.2 +61.273207757451374 1740221599.6 +58.12303487530134 1740225370 +54.94170934424311 1740229140.5 +51.0249510537536 1740232910.9 +44.448776559501525 1740236681.3 +0.0 1740240451.8 +84.61378070694784 1740292793.9 +75.06612704236235 1740296587.5 +68.9266261103139 1740300381.2 +64.48568593741783 1740304174.8 +60.91214326240734 1740307968.4 +57.707887264073484 1740311762.1 +54.413850390425765 1740315555.7 +50.267992343346556 1740319349.3 +43.08240020159589 1740323142.9 +0.0 1740326936.6 +84.49739229294761 1740379069 +74.82145096131855 1740382885.9 +68.6374936110187 1740386702.8 +64.16540078921442 1740390519.7 +60.55335132247422 1740394336.6 +57.28451747121304 1740398153.5 +53.885991436608435 1740401970.4 +49.49545730848542 1740405787.3 +41.68487119478205 1740409604.1 +0.0 1740413421 +84.37505425242571 1740465343.2 +74.57309780886398 1740469183.4 +68.34241148520182 1740473023.6 +63.83916601448935 1740476863.9 +60.19228682743018 1740480704.1 +56.863420233463515 1740484544.3 +53.35218285626943 1740488384.5 +48.713295575691866 1740492224.7 +40.24656284112758 1740496065 +0.0 1740499905.2 +84.24903914049304 1740551616.5 +74.31879502988775 1740555480.1 +68.0436522879742 1740559343.7 +63.50925416835352 1740563207.3 +59.82527270586448 1740567071 +56.44232299571397 1740570934.6 +52.808747577998 1740574798.2 +47.919234589854945 1740578661.8 +38.7771018385649 1740582525.4 +0.0 1740586389 +84.1148018469278 1740637889 +74.05854262438984 1740641776.1 +67.7389434642249 1740645663.1 +63.179342322217686 1740649550.2 +59.464208210820445 1740653437.2 +56.015276131442775 1740657324.3 +52.26531229972657 1740661211.3 +47.111869834674856 1740665098.4 +37.27876074220494 1740668985.4 +0.45224988665773436 1740672872.5 +83.98283710847348 1740724160.7 +73.79461314748119 1740728071.3 +67.43196208536469 1740731981.8 +62.84943047608186 1740735892.4 +59.09351701784398 1740739802.9 +55.582279640649894 1740743713.5 +51.71960446634422 1740747624 +46.29855545297309 1740751534.6 +35.73964029900434 1740755445.1 +0.46782621111183603 1740759355.6 +83.84719529860837 1740810431.7 +73.5306836705725 1740814365.8 +67.1272532616154 1740818299.9 +62.51951862994602 1740822233.9 +58.72877545138918 1740826168 +55.15155570496793 1740830102.1 +51.16654249014036 1740834036.2 +45.469664746817216 1740837970.3 +34.16936720689554 1740841904.4 +0.0 1740845838.5 +83.7033313071107 1740896701.9 +73.2571274957314 1740900659.6 +66.81291773993367 1740904617.3 +62.183657157288515 1740908574.9 +58.35808425841271 1740912532.6 +54.718559214175066 1740916490.3 +50.607530887414825 1740920448 +44.63114734272892 1740924405.6 +32.561991839356864 1740928363.3 +0.0 1740932321 +83.56173987072393 1740982971.5 +72.9812987657794 1740986952.8 +66.50225928966269 1740990934.1 +61.84411861322026 1740994915.4 +57.98739306543625 1740998896.7 +54.287835278493105 1741002878 +50.048519284689284 1741006859.3 +43.78300324070818 1741010840.6 +30.922059306610127 1741014821.9 +0.0 1741018803.2 +83.41052173640473 1741069240.4 +72.70179296441663 1741073245.4 +66.18197414145929 1741077250.3 +61.50230751404107 1741081255.3 +57.61075224593811 1741085260.3 +53.84888916117857 1741089265.2 +49.485830610552995 1741093270.2 +42.925232440755025 1741097275.2 +29.245024498433523 1741101280.1 +0.0 1741105285.1 +83.25703104697463 1741155508.7 +72.41861009164312 1741159537.4 +65.86763861977755 1741163566 +61.16644604138359 1741167594.7 +57.24006105296165 1741171623.4 +53.41221559897493 1741175652 +48.9208693813058 1741179680.7 +42.05556238775851 1741183709.3 +27.53683704134872 1741187738 +0.0 1741191766.7 +83.0939136596121 1741241776.4 +72.127205037237 1741245828.8 +65.54367640016339 1741249881.2 +60.82095787079365 1741253933.6 +56.863420233463515 1741257986 +52.97186496536054 1741262038.4 +48.35223108064782 1741266090.8 +41.18221526335125 1741270143.2 +25.790142792534184 1741274195.6 +0.0 1741278248 +82.93079627224957 1741328043.6 +71.83439546653103 1741332119.8 +65.21744162543833 1741336195.9 +60.48141932672539 1741340272.1 +56.486779413965365 1741344348.2 +52.532918848045995 1741348424.4 +47.78132022487895 1741352500.5 +40.29329181448988 1741356576.7 +24.000396641768113 1741360652.8 +0.0 1741364729 +82.75805218695459 1741414310.3 +71.5333637141925 1741418410.2 +64.89120685071326 1741422510.2 +60.135931156135456 1741426610.1 +56.11013859446724 1741430710 +52.092568214431594 1741434810 +47.20305522628856 1741438909.9 +39.40209581051761 1741443009.8 +22.181770397204744 1741447109.7 +0.0 1741451209.7 +82.58163103024887 1741500576.5 +71.23460451696488 1741504700.2 +64.56129500457743 1741508824 +59.79044298554552 1741512947.7 +55.73577033008 1741517071.4 +51.649945025706295 1741521195.2 +46.62846729910891 1741525318.9 +38.497596037202136 1741529442.6 +20.322364805800742 1741533566.4 +0.0 1741537690.1 +82.39926024702147 1741586842.3 +70.9239460666939 1741590989.8 +64.23138315844157 1741595137.4 +59.44495481495558 1741599284.9 +55.3531798840602 1741603432.5 +51.207321836980995 1741607580.1 +46.05020230051852 1741611727.6 +37.5894191924759 1741615875.2 +18.425856938966866 1741620022.7 +0.0 1741624170.3 +82.2109398372724 1741673107.6 +70.60961054501216 1741677279 +63.89552168578409 1741681450.4 +59.09351701784398 1741685621.8 +54.978811619672975 1741689793.2 +50.764698648255695 1741693964.6 +45.469664746817216 1741698136 +36.6730201661171 1741702307.4 +16.494519351814034 1741706478.8 +0.0 1741710650.2 +82.01299272959089 1741759372.6 +70.29300246821953 1741763567.9 +63.559660213126584 1741767763.1 +58.744351775843285 1741771958.4 +54.59622117365317 1741776153.6 +50.324348014641295 1741780348.9 +44.88545012170516 1741784544.1 +35.755216623458445 1741788739.4 +14.534301670863904 1741792934.6 +0.0 1741797129.9 +81.80909599538774 1741845637.3 +69.96904024860537 1741849856.4 +63.22012166905832 1741854075.5 +58.39291397873168 1741858294.6 +54.22185290926594 1741862513.7 +49.875775199394326 1741866732.9 +44.30123549659309 1741870952 +34.82551382775644 1741875171.1 +12.536981714483899 1741879390.2 +0.0 1741883609.3 +81.59557256325213 1741931901.6 +69.64280547388029 1741936144.6 +62.88058312499006 1741940387.6 +58.041476181620084 1741944630.6 +53.83926246324613 1741948873.6 +49.43315201066902 1741953116.6 +43.711071244959356 1741957359.6 +33.88986140553277 1741961602.6 +10.51445873571736 1741965845.6 +0.0 1741970088.6 +81.37609950459486 1742018165.6 +69.3069440012228 1742022432.5 +62.53509495440012 1742026699.4 +57.69231093961938 1742030966.3 +53.462621643747994 1742035233.2 +48.98685175053295 1742039500 +43.12685661984728 1742043766.9 +32.9542089833091 1742048033.8 +8.466732734564289 1742052300.7 +0.0 1742056567.6 +81.1433226765944 1742104429.4 +68.96740545715451 1742108720.2 +62.18960678381019 1742113011 +57.34087314250778 1742117301.7 +53.082303752839096 1742121592.5 +48.54422856180764 1742125883.3 +42.53896492332445 1742130174.1 +32.00892986315299 1742134464.8 +6.403430408957117 1742138755.6 +0.0 1742143046.4 +80.90459622207227 1742190693 +68.62786691308627 1742195007.6 +61.83816898669859 1742199322.3 +56.98575827398541 1742203637 +52.7019858619302 1742207951.7 +48.10160537308235 1742212266.3 +41.94880067169072 1742216581 +31.063650742996895 1742220895.7 +4.324551758895843 1742225210.4 +0.0 1742229525 +80.6562430696177 1742276956.3 +68.27642911597466 1742281294.9 +61.492680816108646 1742285633.5 +56.6343204768738 1742289972.1 +52.32534504243207 1742294310.6 +47.65530511294629 1742298649.2 +41.35863642005698 1742302987.8 +30.114694551430027 1742307326.3 +2.251622735356241 1742311664.9 +0.0 1742316003.5 +80.3959906641198 1742363219.6 +67.92131424745229 1742367582 +61.13756594758628 1742371944.5 +56.27920560835144 1742376307 +51.94502715152317 1742380669.4 +47.212681924220995 1742385031.9 +40.77074472353415 1742389394.4 +29.163465804752253 1742393756.8 +0.17869371181663762 1742398119.3 +0.0 1742402481.8 +80.12243448927869 1742449482.7 +67.56024975240827 1742453869 +60.78017852395301 1742458255.4 +55.92409073982907 1742462641.7 +51.56838633202503 1742467028.1 +46.772331290606594 1742471414.5 +40.17463084537874 1742475800.8 +28.20855998666372 1742480187.2 +0.0 1742484573.6 +0.0 1742488959.9 +79.83102943487259 1742535745.6 +67.19323563084255 1742540155.9 +60.42506365543065 1742544566.2 +55.57265294271747 1742548976.4 +51.18806844111613 1742553386.7 +46.32970810188129 1742557796.9 +39.58673914885591 1742562207.2 +27.253654168575196 1742566617.4 +0.0 1742571027.7 +0.0 1742575437.9 +79.53227023764495 1742622008.6 +66.81886736645534 1742626442.7 +60.06399916038662 1742630876.8 +55.217538074195105 1742635311 +50.811427621617995 1742639745.1 +45.88708491315598 1742644179.2 +38.996574897222175 1742648613.4 +26.296475795375752 1742653047.5 +0.0 1742657481.7 +0.0 1742661915.8 +79.21793471596322 1742708271.5 +66.4422265469572 1742712729.5 +59.702934665342575 1742717187.5 +54.860150650561835 1742721645.5 +50.43478680211985 1742726103.5 +45.444461724430674 1742730561.5 +38.40641064558844 1742735019.5 +25.33789290587645 1742739477.5 +0.0 1742743935.5 +0.0 1742748393.5 +78.88207324330573 1742794534.3 +66.05595902952663 1742799016.2 +59.344142725409455 1742803498.1 +54.505035782039464 1742807980 +50.05814598262172 1742812461.8 +45.00778816222705 1742816943.7 +37.818518949065606 1742821425.6 +24.380714532677008 1742825907.5 +0.0 1742830389.3 +0.0 1742834871.2 +78.53063544619413 1742880797.2 +65.66969151209607 1742885303 +58.977128603843745 1742889808.7 +54.14992091351711 1742894314.4 +49.68377771823449 1742898820.1 +44.56516497350176 1742903325.9 +37.22835469743187 1742907831.6 +23.425808714588477 1742912337.3 +0.0 1742916843 +0.0 1742921348.8 +78.15994425321766 1742967060.2 +65.26784767021138 1742971589.8 +58.61238703738895 1742976119.3 +53.794806044994736 1742980648.9 +49.31308652525803 1742985178.5 +44.12849141129812 1742989708 +36.63819044579813 1742994237.6 +22.476852523021613 1742998767.1 +0.0 1743003296.7 +0.0 1743007826.3 +77.76999966437631 1743053323.2 +64.86600382832673 1743057876.6 +58.245372915823246 1743062430 +53.43741862136146 1743066983.4 +48.936445705759894 1743071536.8 +43.69181784909449 1743076090.2 +36.05397582068607 1743080643.5 +21.525623776343842 1743085196.9 +0.0 1743089750.3 +0.0 1743094303.7 +77.35625656944832 1743139586.4 +64.46048291503129 1743144163.6 +57.87468172284678 1743148740.8 +53.088253379360765 1743153317.9 +48.56575451278342 1743157895.1 +43.25882135830162 1743162472.3 +35.469761195574 1743167049.5 +20.576667584776974 1743171626.7 +0.0 1743176203.9 +0.0 1743180781 +76.91958300724468 1743225849.7 +64.04306274869252 1743230450.7 +57.50399052987031 1743235051.6 +52.730865955727495 1743239652.6 +48.195063319806955 1743244253.5 +42.82214779609798 1743248854.5 +34.88554657046195 1743253455.5 +19.631388464620876 1743258056.4 +0.0 1743262657.4 +0.0 1743267258.4 +76.45175679613284 1743312113.2 +63.61601588442132 1743316737.9 +57.12734971037217 1743321362.6 +52.375751087205124 1743325987.3 +47.82804919824125 1743330612 +42.39142386041601 1743335236.8 +34.305009016760636 1743339861.5 +18.68978641587553 1743344486.2 +0.0 1743349110.9 +0.0 1743353735.6 +75.95872756263448 1743398376.9 +63.18896902015012 1743403025.3 +56.75665851739571 1743407673.8 +52.02658584520444 1743412322.2 +47.457358005264794 1743416970.7 +41.964376996144814 1743421619.1 +33.72079439164857 1743426267.6 +17.750456922241103 1743430916 +0.0 1743435564.5 +0.0 1743440212.9 +75.43086860881715 1743484640.8 +62.75229545794649 1743489312.9 +56.380017697897564 1743493985.1 +51.66919842157116 1743498657.2 +47.090343883699084 1743503329.4 +41.53733013187362 1743508001.5 +33.14847901957984 1743512673.7 +16.820754126539107 1743517345.8 +0.0 1743522018 +0.0 1743526690.1 +74.86817993468085 1743570904.9 +62.30967226922119 1743575600.8 +55.99969980698867 1743580296.6 +51.32003317957046 1743584992.4 +46.72560231724429 1743589688.3 +41.11028326760242 1743594384.1 +32.567941465878526 1743599079.9 +15.894728402247862 1743603775.7 +0.0 1743608471.6 +0.0 1743613167.4 +74.26838898511467 1743657169.4 +61.86337200908511 1743661888.9 +55.62305898749054 1743666608.4 +50.96859538245886 1743671327.8 +46.364537822200255 1743676047.3 +40.68323640333121 1743680766.8 +31.999303165220564 1743685486.2 +14.974652304478292 1743690205.7 +0.0 1743694925.2 +0.0 1743699644.6 +73.63149576011864 1743743434.2 +61.40517249590571 1743748177.3 +55.24274109658163 1743752920.4 +50.61715758534726 1743757663.4 +45.99979625574546 1743762406.5 +40.26581623699244 1743767149.6 +31.430664864562598 1743771892.7 +14.060525833230392 1743776635.7 +0.0 1743781378.8 +0.0 1743786121.9 +72.95241867198212 1743829699.4 +60.93961883990478 1743834466 +54.860150650561835 1743839232.7 +50.267992343346556 1743843999.3 +45.63873176070142 1743848766 +39.844718999242914 1743853532.6 +30.859754008793725 1743858299.2 +13.156026059914927 1743863065.9 +0.0 1743867832.5 +0.0 1743872599.1 +72.23028968189405 1743915965 +60.465843002271285 1743920755.1 +54.479832759652936 1743925545.3 +49.916554546234956 1743930335.5 +45.28134433706815 1743935125.6 +39.42729883290414 1743939915.8 +30.29706533465743 1743944705.9 +12.25747591312113 1743949496.1 +0.0 1743954286.3 +0.0 1743959076.4 +71.46370427355457 1744002230.9 +59.98839009322702 1744007044.6 +54.09356524222237 1744011858.2 +49.571066375645024 1744016671.9 +44.92622946854579 1744021485.5 +39.01582829308704 1744026299.2 +29.738053731931892 1744031112.8 +11.368552464259762 1744035926.5 +0.0 1744040740.1 +0.0 1744045553.8 +70.65038989185281 1744088497.4 +59.50498755766108 1744093334.5 +53.71324735131347 1744098171.5 +49.22557820505509 1744103008.6 +44.57111460002343 1744107845.7 +38.60435775326994 1744112682.8 +29.179042129206355 1744117519.9 +10.483306086809156 1744122357 +0.0 1744127194 +0.0 1744132031.1 +69.79034653678873 1744174764.3 +59.011958324162705 1744179624.8 +53.326979833882895 1744184485.2 +48.88009003446517 1744189345.7 +44.21967680291182 1744194206.2 +38.192887213452835 1744199066.7 +28.62598015300249 1744203927.1 +9.609958962401892 1744208787.6 +0.0 1744213648.1 +0.0 1744218508.5 +68.89179638999492 1744261031.8 +58.509302392731904 1744265915.6 +52.940712316452334 1744270799.4 +48.53460186387522 1744275683.2 +43.870511560911126 1744280567 +37.7873663001574 1744285450.8 +28.076595248209387 1744290334.6 +8.746238535927056 1744295218.4 +0.0 1744300102.2 +0.0 1744304986 +67.9501943412496 1744347299.8 +58.00069683477945 1744352206.8 +52.554444799021766 1744357113.9 +48.189113693285286 1744362021 +43.52502339032119 1744366928.1 +37.38552245827274 1744371835.2 +27.52721034341629 1744376742.2 +7.8921448073846525 1744381649.3 +0.0 1744386556.4 +0.0 1744391463.5 +66.97603512729619 1744433568.4 +57.48841420541621 1744438498.7 +52.1681772815912 1744443429 +47.849575149217024 1744448359.3 +43.17953521973126 1744453289.6 +36.98367861638806 1744458219.8 +26.98745213655562 1744463150.1 +7.047677776774679 1744468080.4 +0.0 1744473010.7 +0.0 1744477941 +65.9684507093237 1744519837.6 +56.96423232300965 1744524791 +51.78190976416063 1744529744.5 +47.50776405003785 1744534697.9 +42.83404704914132 1744539651.4 +36.58778440102507 1744544604.8 +26.449966484805856 1744549558.3 +6.215109999208049 1744554511.7 +0.0 1744559465.2 +0.0 1744564418.6 +64.94388545059722 1744606107.5 +56.43637336919231 1744611084 +51.39564224673006 1744616060.5 +47.17190257738036 1744621037.1 +42.49818557648382 1744626013.6 +36.19189018566207 1744630990.1 +25.916157904466846 1744635966.7 +5.392168919573846 1744640943.2 +0.0 1744645919.8 +0.0 1744650896.3 +63.89552168578409 1744692378 +55.896615162331635 1744697377.6 +51.009374729299495 1744702377.1 +46.838313659833766 1744707376.7 +42.156374477304645 1744712376.2 +35.80562266823151 1744717375.8 +25.388298950649514 1744722375.3 +4.578854537872078 1744727374.9 +0.0 1744732374.5 +0.0 1744737374 +62.827904525106085 1744778649.3 +55.3531798840602 1744783671.8 +50.61715758534726 1744788694.3 +46.50245218717625 1744793716.8 +41.82278555975806 1744798739.3 +35.413405524279256 1744803761.8 +24.864117068242948 1744808784.3 +3.7811164806244104 1744813806.8 +0.0 1744818829.3 +0.0 1744823851.8 +61.75066066649564 1744864921.4 +54.80011790785634 1744869966.7 +50.23089006791668 1744875012.1 +46.172540341040424 1744880057.4 +41.49060115851131 1744885102.8 +35.033087633370364 1744890148.2 +24.342207740947284 1744895193.5 +2.9893280498984134 1744900238.9 +0.0 1744905284.2 +0.0 1744910329.6 +60.654163412020345 1744951194.2 +54.241106305130806 1744956262.4 +49.84462255048612 1744961330.5 +45.84035593979368 1744966398.6 +41.160689312375474 1744971466.8 +34.65049718735056 1744976534.9 +23.827652556473147 1744981603 +2.210843388515607 1744986671.2 +0.0 1744991739.3 +0.0 1744996807.4 +59.54208983309095 1745037467.9 +53.67246800447283 1745042558.8 +49.458355033055554 1745047649.6 +45.510444093657846 1745052740.4 +40.836727092761315 1745057831.2 +34.27612892296334 1745062922 +23.31904699852068 1745068012.9 +1.444257980176142 1745073103.7 +0.0 1745078194.5 +0.0 1745083285.3 +58.41216737459654 1745123742.5 +53.0978800772932 1745128855.9 +49.06841044421422 1745133969.3 +45.186481874043686 1745139082.7 +40.51644194455791 1745144196.2 +33.90543772998687 1745149309.6 +22.816391067089874 1745154423 +0.6909763411798678 1745159536.4 +0.0 1745164649.8 +0.0 1745169763.2 +57.26526407534818 1745210018 +52.51734252359189 1745215153.9 +48.682142926783655 1745220289.8 +44.86024709931863 1745225425.7 +40.19615679635451 1745230561.6 +33.534746537010406 1745235697.5 +22.319684762180746 1745240833.5 +0.0 1745245969.4 +0.0 1745251105.3 +0.0 1745256241.2 +56.100511896534805 1745296294.4 +51.93312789847983 1745301452.7 +48.29587540935309 1745306611 +44.53996195111522 1745311769.3 +39.87587164815112 1745316927.6 +33.173682041966366 1745322085.9 +21.826655528682377 1745327244.2 +0.0 1745332402.5 +0.0 1745337560.8 +0.0 1745342719.2 +54.916506321856566 1745382571.8 +51.339286575435324 1745387752.4 +47.90960789192252 1745392933 +44.21967680291182 1745398113.6 +39.56521319788014 1745403294.2 +32.81261754692233 1745408474.8 +21.33730336659477 1745413655.4 +0.0 1745418835.9 +0.0 1745424016.5 +0.0 1745429197.1 +53.71324735131347 1745468850.3 +50.739495625869154 1745474053 +47.52929000101362 1745479255.8 +43.90534128123009 1745484458.5 +39.25455474760918 1745489661.3 +32.4515530518783 1745494864.1 +20.856173386139744 1745500066.8 +0.0 1745505269.6 +0.0 1745510472.3 +0.0 1745515675.1 +52.488462429794595 1745555129.8 +50.13007797837055 1745560354.6 +47.14669955499382 1745565579.4 +43.59100575954835 1745570804.2 +38.946168852449105 1745576029 +32.10011525476669 1745581253.8 +20.382397548506237 1745586478.6 +0.0 1745591703.4 +0.0 1745596928.2 +0.0 1745602153 +51.24810118382163 1745641410.4 +49.520660330871955 1745646657.1 +46.760432037563255 1745651903.9 +43.28034730927739 1745657150.6 +38.645137100110574 1745662397.3 +31.754627084176757 1745667644 +19.914571337394406 1745672890.8 +0.0 1745678137.5 +0.0 1745683384.2 +0.0 1745688630.9 +49.98253691546212 1745727692.2 +48.89934343033003 1745732960.7 +46.38011414665436 1745738229.2 +42.97563848552809 1745743497.7 +38.34637790288294 1745748766.2 +31.40913891358683 1745754034.7 +19.452694752804238 1745759303.3 +0.0 1745764571.8 +0.0 1745769840.3 +0.0 1745775108.8 +48.697719251237764 1745813975.1 +48.280299084898985 1745819265.3 +46.003473327156215 1745824555.5 +42.670929661778786 1745829845.6 +38.05129577706607 1745835135.8 +31.073277440929328 1745840425.9 +18.994495239624836 1745845716.1 +0.0 1745851006.3 +0.0 1745856296.4 +0.0 1745861586.6 +47.38542600951596 1745900259.3 +47.64935548642462 1745905571 +45.62683250765809 1745910882.7 +42.36989790944025 1745916194.3 +37.7562136512492 1745921506 +30.73968852338273 1745926817.6 +18.5422453529671 1745932129.3 +0.0 1745937441 +0.0 1745942752.6 +0.0 1745948064.3 +43.057197179209346 1745986544.8 +47.02068444306116 1745991877.8 +45.25246424327085 1745997210.8 +42.071138712212615 1746002543.8 +37.473030778475675 1746007876.8 +30.40750412213599 1746013209.9 +18.101894719352703 1746018542.9 +0.0 1746023875.9 +0.0 1746029208.9 +0.0 1746034541.9 +44.70307933847776 1746072831.6 +46.386063773176026 1746078185.8 +44.87582342377273 1746083540 +41.776056586395754 1746088894.2 +37.18757535059124 1746094248.4 +30.083541902521826 1746099602.6 +17.662948602038163 1746104956.8 +0.0 1746110311 +0.0 1746115665.2 +0.0 1746121019.4 +41.515804180897845 1746159119.8 +45.74549347676923 1746164495 +44.50880930220702 1746169870.2 +41.48692408710055 1746175245.4 +36.90806954922847 1746180620.6 +29.763256754318427 1746185995.8 +17.2322246663562 1746191371 +0.0 1746196746.2 +0.0 1746202121.5 +0.0 1746207496.7 +41.929547275825854 1746245409.3 +45.09897355384074 1746250805.4 +44.138118109230554 1746256201.4 +41.197791587805355 1746261597.5 +36.628563747865705 1746266993.5 +29.448921232636696 1746272389.6 +16.811127428606675 1746277785.6 +0.0 1746283181.7 +0.0 1746288577.7 +0.0 1746293973.8 +36.566258450049304 1746331700.4 +44.454726186023194 1746337117.1 +43.77337654277576 1746342533.8 +40.91233615992091 1746347950.5 +36.358684644435364 1746353367.2 +29.13826278236572 1746358783.9 +16.393707262267906 1746364200.6 +0.0 1746369617.3 +0.0 1746375034 +0.0 1746380450.7 +35.02713800684871 1746417992.9 +43.80820626309472 1746423430 +43.40636242121005 1746428867.2 +40.63283035855815 1746434304.4 +36.08880554100503 1746439741.6 +28.83355395861642 1746445178.7 +15.9822367224508 1746450615.9 +0.0 1746456053.1 +0.0 1746461490.3 +0.0 1746466927.4 +30.37862402833869 1746504286.9 +43.158009268755485 1746509744.4 +43.051247552687684 1746515201.8 +40.35332455719538 1746520659.3 +35.83082569061804 1746526116.7 +28.532522206277882 1746531574.1 +15.58039288056613 1746537031.6 +0.0 1746542489 +0.0 1746547946.4 +0.0 1746553403.9 +26.77620125953093 1746590582.6 +42.50781227441625 1746596060.1 +42.69018305764365 1746601537.6 +40.08344545376504 1746607015.1 +35.57057328512014 1746612492.6 +28.239712635571923 1746617970 +15.184498665203133 1746623447.5 +0.0 1746628925 +0.0 1746634402.5 +0.0 1746639880 +21.40923536234361 1746676879.9 +41.85761528007702 1746682377.2 +42.34101781564295 1746687874.6 +39.81356635033471 1746693371.9 +35.316270506143894 1746698869.2 +27.948307581165817 1746704366.5 +14.798231147772565 1746709863.8 +0.0 1746715361.1 +0.0 1746720858.5 +0.0 1746726355.8 +13.375499118572197 1746763178.9 +41.20741828573778 1746768695.8 +41.98958001853135 1746774212.8 +39.549636873426046 1746779729.7 +35.067917353689325 1746785246.6 +27.66512470839229 1746790763.5 +14.41564070175276 1746796280.4 +0.0 1746801797.4 +0.0 1746807314.3 +0.0 1746812831.2 +0.0 1746849479.6 +40.56089836280931 1746855015.9 +41.64409184794142 1746860552.2 +39.29165702303904 1746866088.5 +34.81956420123477 1746871624.8 +27.385618907029528 1746877161.1 +14.04494950877629 1746882697.4 +0.0 1746888233.7 +0.0 1746893770 +0.0 1746899306.2 +0.0 1746935782.2 +39.91070136847008 1746941337.6 +41.29860367735148 1746946893 +39.03140461754114 1746952448.4 +34.58083774671264 1746958003.8 +27.115739803599194 1746963559.2 +13.6802079423215 1746969114.6 +0.0 1746974670 +0.0 1746980225.4 +0.0 1746985780.8 +0.0 1747022086.5 +39.266454000652516 1747027660.8 +40.96274220469398 1747033235.1 +38.78305146508657 1747038809.3 +34.345788363601265 1747044383.6 +26.84586070016885 1747049957.9 +13.319143447277463 1747055532.1 +0.0 1747061106.4 +0.0 1747066680.7 +0.0 1747072254.9 +0.0 1747108392.8 +38.62588370424571 1747113985.6 +40.62688073203648 1747119578.5 +38.53469831263201 1747125171.3 +34.113011535600805 1747130764.2 +26.587880849781858 1747136357.1 +12.973655276687529 1747141949.9 +0.0 1747147542.8 +0.0 1747153135.6 +0.0 1747158728.5 +0.0 1747194700.9 +37.98531340783891 1747200312.1 +40.29696888590064 1747205923.3 +38.29597185810987 1747211534.5 +33.88986140553277 1747217145.6 +26.327628444283945 1747222756.8 +12.628167106097596 1747228368 +0.0 1747233979.2 +0.0 1747239590.3 +0.0 1747245201.5 +0.0 1747281011.1 +37.35069273795377 1747286640.3 +39.97300666628648 1747292269.5 +38.05724540358774 1747297898.7 +33.66671127546474 1747303527.9 +26.079275291829383 1747309157.1 +12.298255259961765 1747314786.3 +0.0 1747320415.5 +0.0 1747326044.7 +0.0 1747331673.9 +0.0 1747367323.3 +36.719749139479404 1747372970.2 +39.65639858949384 1747378617.2 +37.82219602047637 1747384264.1 +33.45318784332913 1747389911 +25.83459921078558 1747395557.9 +11.97202048523669 1747401204.9 +0.0 1747406851.8 +0.0 1747412498.7 +0.0 1747418145.6 +0.0 1747453637.6 +36.0947551675267 1747459301.9 +39.34206306781211 1747464966.3 +37.599045890408334 1747470630.6 +33.2433414826043 1747476294.9 +25.595872756263446 1747481959.3 +11.651735337033289 1747487623.6 +0.0 1747493288 +0.0 1747498952.3 +0.0 1747504616.7 +0.0 1747539954 +35.47938789350643 1747545635.4 +39.03140461754114 1747551316.9 +37.3758957603403 1747556998.3 +33.03576767699037 1747562679.7 +25.366772999673746 1747568361.2 +11.34334944187323 1747574042.6 +0.0 1747579724 +0.0 1747585405.5 +0.0 1747591086.9 +0.0 1747626272.6 +34.86997024600783 1747631970.8 +38.73264542031351 1747637669 +37.15642270168303 1747643367.2 +32.83782056930887 1747649065.4 +25.13994579819495 1747654763.6 +11.04231768953469 1747660461.8 +0.0 1747666160 +0.0 1747671858.2 +0.0 1747677556.4 +0.0 1747712593.4 +34.26650222503091 1747718308 +38.43161366797497 1747724022.7 +36.9488488960691 1747729737.3 +32.63987346162737 1747735451.9 +24.92047273953768 1747741166.5 +10.74723556371782 1747746881.1 +0.0 1747752595.7 +0.0 1747758310.3 +0.0 1747764025 +0.0 1747798916.5 +33.670388346875505 1747804647.2 +38.14248116867977 1747810377.9 +36.741275090455176 1747816108.6 +32.4515530518783 1747821839.3 +24.70694930740208 1747827569.9 +10.467729762355054 1747833300.6 +0.0 1747839031.3 +0.0 1747844762 +0.0 1747850492.6 +0.0 1747885242 +33.08617372176343 1747890988.4 +37.862975367317006 1747896734.7 +36.54105542766276 1747902481.1 +32.269182268650894 1747908227.5 +24.499375501788148 1747913973.9 +10.188223960992287 1747919720.2 +0.0 1747925466.6 +0.0 1747931213 +0.0 1747936959.3 +0.0 1747971569.8 +32.51753542110547 1747977331.5 +37.58346956595423 1747983093.2 +36.34310831998127 1747988854.9 +32.090488556834266 1747994616.6 +24.29547876758498 1748000378.3 +9.924294484083621 1748006140 +0.0 1748011901.6 +0.0 1748017663.3 +0.0 1748023425 +0.0 1748057900.1 +31.95257419185826 1748063676.7 +37.3135904625239 1748069453.3 +36.1547879102322 1748075229.9 +31.917744471539297 1748081006.6 +24.101208731314244 1748086783.2 +9.666314633696626 1748092559.8 +0.0 1748098336.4 +0.0 1748104113 +0.0 1748109889.6 +0.0 1748144232.9 +31.399512215654397 1748150024 +37.049660985615226 1748155815.1 +35.972417127004796 1748161606.3 +31.750950012765998 1748167397.4 +23.915160876676083 1748173188.5 +9.41568892613115 1748178979.7 +0.0 1748184770.8 +0.0 1748190561.9 +0.0 1748196353.1 +0.0 1748230568.1 +30.865703635315395 1748236373.4 +36.79535820663901 1748242178.6 +35.79599597029908 1748247983.9 +31.58783262540346 1748253789.1 +23.736467164859448 1748259594.4 +9.173285400198257 1748265399.6 +0.0 1748271204.8 +0.0 1748277010.1 +0.0 1748282815.3 +0.0 1748316906 +30.337844681498062 1748322724.9 +36.54700505418444 1748328543.8 +35.623251885004116 1748334362.8 +31.43434193597336 1748340181.7 +23.557773453042813 1748346000.6 +8.944185643608558 1748351819.5 +0.0 1748357638.5 +0.0 1748363457.4 +0.0 1748369276.3 +0.0 1748403246.4 +29.823289497023925 1748409078.6 +36.3082785996623 1748414910.8 +35.45418487111989 1748420743 +31.283123801654163 1748426575.1 +23.390978994269513 1748432407.3 +8.721035513540523 1748438239.5 +0.0 1748444071.7 +0.0 1748449903.8 +0.0 1748455736 +0.0 1748489589.6 +29.330260263525552 1748495434.5 +36.07550177166184 1748501279.5 +35.297017110279036 1748507124.5 +31.139259810156492 1748512969.5 +23.227861606906973 1748518814.4 +8.501562454883251 1748524659.4 +0.0 1748530504.4 +0.0 1748536349.4 +0.0 1748542194.3 +0.0 1748575935.4 +28.849130283070526 1748581792.7 +35.85007908648289 1748587650 +35.14352642084893 1748593507.3 +31.003618000291397 1748599364.6 +23.07664347258778 1748605222 +8.297665720680081 1748611079.3 +0.0 1748616936.6 +0.0 1748622793.9 +0.0 1748628651.2 +0.0 1748662284 +28.381304071958688 1748668153.1 +35.63287858293654 1748674022.3 +34.998257913051404 1748679891.5 +30.871653261837064 1748685760.7 +22.929102409679345 1748691629.9 +8.105668239520254 1748697499.1 +0.0 1748703368.3 +0.0 1748709237.4 +0.0 1748715106.6 +0.0 1748748635.3 +27.932731256711715 1748754515.9 +35.423032222211695 1748760396.4 +34.85439392155374 1748766277 +30.743365594793488 1748772157.6 +22.78523841818167 1748778038.2 +7.9173478297711855 1748783918.7 +0.0 1748789799.3 +0.0 1748795679.9 +0.0 1748801560.5 +0.0 1748834989.5 +27.502007321029755 1748840880.9 +35.225085114530195 1748846772.4 +34.72242918309939 1748852663.9 +30.621027554271592 1748858555.4 +22.653273679727338 1748864446.8 +7.738654117954548 1748870338.3 +0.0 1748876229.8 +0.0 1748882121.2 +0.0 1748888012.7 +0.0 1748921346.5 +27.09053678121266 1748927248.4 +35.03676470478113 1748933150.2 +34.596414071166734 1748939052.1 +30.510588766793028 1748944954 +22.521308941273006 1748950855.8 +7.571859659181251 1748956757.7 +0.0 1748962659.5 +0.0 1748968561.4 +0.0 1748974463.3 +0.0 1749007706.4 +26.69464256584966 1749013618.2 +34.86034354807541 1749019529.9 +34.47407603064483 1749025441.7 +30.39787742420356 1749031353.4 +22.404920527272775 1749037265.1 +7.408742271818714 1749043176.9 +0.0 1749049088.6 +0.0 1749055000.4 +0.0 1749060912.1 +0.0 1749094069.3 +26.318001746351523 1749099990.4 +34.68759946278043 1749105911.5 +34.357687616644604 1749111832.6 +30.29706533465743 1749117753.7 +22.292209184683305 1749123674.8 +7.261201208910281 1749129595.9 +0.0 1749135517 +0.0 1749141438.1 +0.0 1749147359.2 +0.0 1749180435 +25.96288687782915 1749186365 +34.5244820754179 1749192294.9 +34.25092590057681 1749198224.8 +30.205879943043726 1749204154.8 +22.185447468615507 1749210084.7 +7.119609772523516 1749216014.6 +0.0 1749221944.6 +0.0 1749227874.5 +0.0 1749233804.4 +0.0 1749266803.8 +25.621075778649978 1749272742 +34.37694101250946 1749278680.2 +34.14784125591977 1749284618.5 +30.114694551430027 1749290556.7 +22.084635379069375 1749296494.9 +6.993594660590854 1749302433.1 +0.0 1749308371.3 +0.0 1749314309.5 +0.0 1749320247.7 +0.0 1749353175.6 +25.306740256968247 1749359121.5 +34.23534957612271 1749365067.5 +34.056655864306066 1749371013.4 +30.033135857748764 1749376959.4 +21.993449987455676 1749382905.3 +6.871256620068951 1749388851.3 +0.0 1749394797.2 +0.0 1749400743.2 +0.0 1749406689.1 +0.0 1749439550.3 +25.011658131151382 1749445503.5 +34.10338483766837 1749451456.6 +33.971420099214036 1749457409.7 +29.955254235478257 1749463362.9 +21.905941667252737 1749469316 +6.758545277479481 1749475269.1 +0.0 1749481222.3 +0.0 1749487175.4 +0.0 1749493128.5 +0.0 1749525928.2 +24.741779027721044 1749531887.9 +33.98104679714647 1749537847.7 +33.88986140553277 1749543807.4 +29.88559479484033 1749549767.2 +21.830332600093143 1749555726.9 +6.65773318793335 1749561686.6 +0.0 1749567646.4 +0.0 1749573606.1 +0.0 1749579565.9 +0.0 1749612309.1 +24.493425875266478 1749618274.8 +33.868335454557005 1749624240.6 +33.817929409783936 1749630206.4 +29.819612425613162 1749636172.2 +21.760673159455212 1749642138 +6.560598169797981 1749648103.8 +0.0 1749654069.6 +0.0 1749660035.3 +0.0 1749666001.1 +0.0 1749698693 +24.264326118676777 1749704664.2 +33.76752336501087 1749710635.5 +33.751947040556765 1749716606.7 +29.763256754318427 1749722578 +21.694690790228044 1749728549.2 +6.479039476116713 1749734520.5 +0.0 1749740491.7 +0.0 1749746463 +0.0 1749752434.2 +0.0 1749785080 +24.062701939584517 1749791056.1 +33.676337973397175 1749797032.3 +33.69191429785127 1749803008.4 +29.712850709545357 1749808984.5 +21.63833511893331 1749814960.7 +6.407107480367878 1749820936.8 +0.0 1749826912.9 +0.0 1749832889 +0.0 1749838865.2 +0.0 1749871470.1 +23.87805860124621 1749877450.5 +33.5947792797159 1749883430.9 +33.64150825307821 1749889411.4 +29.666121736183058 1749895391.8 +21.591606145571003 1749901372.2 +6.341125111140711 1749907352.6 +0.0 1749913333 +0.0 1749919313.4 +0.0 1749925293.9 +0.0 1749957863.3 +23.720890840405346 1749963847.4 +33.52879691048874 1749969831.5 +33.5947792797159 1749975815.6 +29.62534238934242 1749981799.7 +21.547149727319614 1749987783.8 +6.287041994956885 1749993768 +0.0 1749999752.1 +0.0 1750005736.2 +0.0 1750011720.3 +0.0 1750044259.6 +23.588926101951014 1750050246.8 +33.472441239194 1750056234 +33.559949559396934 1750062221.2 +29.596462295545127 1750068208.4 +21.515997078411406 1750074195.6 +6.24031302159458 1750080182.8 +0.0 1750086170 +0.0 1750092157.2 +0.0 1750098144.4 +0.0 1750130658.9 +23.482164385883213 1750136648.6 +33.422035194420936 1750142638.3 +33.52879691048874 1750148628 +29.568986718047686 1750154617.7 +21.484844429503205 1750160607.4 +6.209160372686378 1750166597.1 +0.0 1750172586.8 +0.0 1750178576.5 +0.0 1750184566.2 +0.0 1750217061.3 +23.396928620791183 1750223052.9 +33.38720547410197 1750229044.5 +33.507270959512965 1750235036.1 +29.549733322182824 1750241027.7 +21.465591033638344 1750247019.3 +6.183957350299845 1750253010.8 +0.0 1750259002.4 +0.0 1750264994 +0.0 1750270985.6 +0.0 1750303466.8 +23.334623322974778 1750309459.6 +33.36200245171544 1750315452.5 +33.4880175636481 1750321445.4 +29.54010662425039 1750327438.3 +21.453691780595 1750333431.1 +6.1683810258457425 1750339424 +0.0 1750345416.9 +0.0 1750351409.7 +0.0 1750357402.6 +0.0 1750389875.3 +23.299793602655814 1750395868.8 +33.34642612726134 1750401862.4 +33.48206793712643 1750407855.9 +29.530479926317962 1750413849.5 +21.450014709184238 1750419843 +6.158754327913312 1750425836.5 +0.0 1750431830.1 +0.0 1750437823.6 +0.0 1750443817.2 +0.0 1750476286.8 +23.290166904723385 1750482280.4 +33.34047650073967 1750488274 +33.48206793712643 1750494267.6 +29.530479926317962 1750500261.2 +21.450014709184238 1750506254.9 +6.164703954434982 1750512248.5 +0.0 1750518242.1 +0.0 1750524235.7 +0.0 1750530229.3 +0.0 1750562701.3 +23.299793602655814 1750568694.4 +33.3501031986721 1750574687.5 +33.4880175636481 1750580680.5 +29.54010662425039 1750586673.6 +21.459641407116674 1750592666.7 +6.180280278889084 1750598659.7 +0.0 1750604652.8 +0.0 1750610645.9 +0.0 1750616638.9 +0.0 1750649118.8 +23.340572949496448 1750655110.7 +33.3656795231262 1750661102.7 +33.497644261580525 1750667094.6 +29.549733322182824 1750673086.5 +21.475217731570773 1750679078.4 +6.199533674753948 1750685070.3 +0.0 1750691062.3 +0.0 1750697054.2 +0.0 1750703046.1 +0.0 1750735539.3 +23.400605692201946 1750741529.4 +33.3968321720344 1750747519.6 +33.519170212556304 1750753509.8 +29.568986718047686 1750759499.9 +21.494471127435638 1750765490.1 +6.2343633950729105 1750771480.2 +0.0 1750777470.4 +0.0 1750783460.6 +0.0 1750789450.7 +0.0 1750821962.6 +23.488114012404882 1750827950.4 +33.43761151887503 1750833938.2 +33.548050306353595 1750839926 +29.596462295545127 1750845913.8 +21.525623776343842 1750851901.6 +6.275142741913545 1750857889.4 +0.0 1750863877.2 +0.0 1750869865 +0.0 1750875852.9 +0.0 1750908388.8 +23.598552799883446 1750914373.7 +33.4880175636481 1750920358.5 +33.58515258178347 1750926343.4 +29.63129201586409 1750932328.2 +21.566403123184475 1750938313.1 +6.327821341797518 1750944297.9 +0.0 1750950282.7 +0.0 1750956267.6 +0.0 1750962252.4 +0.0 1750994817.9 +23.736467164859448 1751000799.2 +33.548050306353595 1751006780.5 +33.625931928624105 1751012761.7 +29.666121736183058 1751018743 +21.613132096546778 1751024724.3 +6.387854084503016 1751030705.6 +0.0 1751036686.9 +0.0 1751042668.2 +0.0 1751048649.5 +0.0 1751081249.7 +23.89958455222198 1751087226.9 +33.619982302102436 1751093204 +33.676337973397175 1751099181.1 +29.712850709545357 1751105158.3 +21.66353814131984 1751111135.4 +6.4597860802518525 1751117112.6 +0.0 1751123089.7 +0.0 1751129066.9 +0.0 1751135044 +0.0 1751167684.3 +24.08195533544938 1751173656.7 +33.70749062230538 1751179629.1 +33.732693644691906 1751185601.5 +29.763256754318427 1751191573.9 +21.72357088402534 1751197546.3 +6.541344773933119 1751203518.7 +0.0 1751209491.1 +0.0 1751215463.6 +0.0 1751221436 +0.0 1751254121.6 +24.28585206965255 1751260088.7 +33.79867601391908 1751266055.8 +33.79272638739741 1751272022.8 +29.823289497023925 1751277989.9 +21.789553253252507 1751283957 +6.632530165546818 1751289924.1 +0.0 1751295891.2 +0.0 1751301858.3 +0.0 1751307825.4 +0.0 1751340561.5 +24.51495182624225 1751346522.7 +33.90543772998687 1751352483.9 +33.86465838314624 1751358445.1 +29.88559479484033 1751364406.3 +21.861485249001344 1751370367.5 +6.733342255092948 1751376328.7 +0.0 1751382289.9 +0.0 1751388251.1 +0.0 1751394212.3 +0.0 1751427004 +24.766982050107575 1751432958.7 +34.015876517465436 1751438913.5 +33.94026745030583 1751444868.2 +29.955254235478257 1751450822.9 +21.94304394268261 1751456777.7 +6.840103971160748 1751462732.4 +0.0 1751468687.2 +0.0 1751474641.9 +0.0 1751480596.6 +0.0 1751513449 +25.042810780059582 1751519396.8 +34.14416418450901 1751525344.5 +34.02550321539787 1751531292.2 +30.033135857748764 1751537239.9 +22.02827970777464 1751543187.6 +6.9564923851609795 1751549135.3 +0.0 1751555083 +0.0 1751561030.8 +0.0 1751566978.5 +0.0 1751599896.6 +25.33789290587645 1751605836.7 +34.27612892296334 1751611776.8 +34.118961162122474 1751617717 +30.118371622840794 1751623657.1 +22.12541472591001 1751629597.3 +7.084780052204553 1751635537.4 +0.0 1751641477.5 +0.0 1751647417.7 +0.0 1751653357.8 +0.0 1751686346.5 +25.65817805407985 1751692278.5 +34.42366998587177 1751698210.5 +34.21382362514694 1751704142.5 +30.205879943043726 1751710074.6 +22.22622681545614 1751716006.6 +7.220421862069647 1751721938.6 +0.0 1751727870.6 +0.0 1751733802.6 +0.0 1751739734.6 +0.0 1751772798.8 +25.991766971626447 1751778722.1 +34.57488812019097 1751784645.5 +34.32058534121474 1751790568.9 +30.300742406068192 1751796492.2 +22.332988531523938 1751802415.6 +7.367962924978081 1751808338.9 +0.0 1751814262.3 +0.0 1751820185.6 +0.0 1751826109 +0.0 1751859253.4 +26.352831466670487 1751865167.5 +34.743955134075165 1751871081.7 +34.4332966838042 1751876995.9 +30.403827050725226 1751882910 +22.451649500635078 1751888824.2 +7.521453614408185 1751894738.4 +0.0 1751900652.6 +0.0 1751906566.7 +0.0 1751912480.9 +0.0 1751945710.1 +26.729472286168615 1751951614.6 +34.916699219370145 1751957519.1 +34.549685097804435 1751963423.6 +30.510588766793028 1751969328 +22.57171498604607 1751975232.5 +7.684571001770721 1751981137 +0.0 1751987041.4 +0.0 1751992945.9 +0.0 1751998850.4 +0.0 1752032169.1 +27.125366501531627 1752038063.4 +35.09907000259753 1752043957.6 +34.677972764848 1752049851.9 +30.621027554271592 1752055746.1 +22.70000265308964 1752061640.4 +7.857315087065689 1752067534.6 +0.0 1752073428.9 +0.0 1752079323.2 +0.0 1752085217.4 +0.0 1752118630.1 +27.542786667870388 1752124513.7 +35.29106748375736 1752130397.2 +34.809937503302336 1752136280.8 +30.743365594793488 1752142164.3 +22.837917018065646 1752148047.9 +8.039685870293088 1752153931.4 +0.0 1752159815 +0.0 1752165698.5 +0.0 1752171582.1 +0.0 1752205093.2 +27.973510603552352 1752210965.5 +35.48901459143886 1752216837.9 +34.94557931316743 1752222710.3 +30.865703635315395 1752228582.6 +22.97950845445241 1752234455 +8.231683351452915 1752240327.3 +0.0 1752246199.7 +0.0 1752252072 +0.0 1752257944.4 +0.0 1752291558.2 +28.425760490210084 1752297418.9 +35.702538023574476 1752303279.6 +35.089443304665096 1752309140.3 +30.997668373769727 1752315000.9 +23.127049517360845 1752320861.6 +8.429630459134415 1752326722.3 +0.0 1752332583 +0.0 1752338443.7 +0.0 1752344304.4 +0.0 1752378025.1 +28.88990962991116 1752383873.6 +35.922011082231734 1752389722.2 +35.24066143898429 1752395570.7 +31.13558273874573 1752401419.3 +23.284217278201716 1752407267.8 +8.639476819859254 1752413116.4 +0.0 1752418964.9 +0.0 1752424813.5 +0.0 1752430662 +0.0 1752464493.8 +29.37103961036619 1752470329.7 +36.14516121229976 1752476165.7 +35.39782919982516 1752482001.7 +31.277174175132494 1752487837.6 +23.44138503904258 1752493673.6 +8.856677323405618 1752499509.5 +0.0 1752505345.5 +0.0 1752511181.5 +0.0 1752517017.4 +0.0 1752550964.2 +29.870018470386228 1752556787.2 +36.380210595411135 1752562610.1 +35.55726951577694 1752568433 +31.42471523804093 1752574255.9 +23.610452052926785 1752580078.9 +9.08210000858456 1752585901.8 +0.0 1752591724.7 +0.0 1752597547.6 +0.0 1752603370.6 +0.0 1752637436.3 +30.38230109974946 1752643245.8 +36.622614121344036 1752649055.3 +35.73001360107192 1752654864.7 +31.581882998881795 1752660674.2 +23.78687320963251 1752666483.7 +9.314876836585022 1752672293.1 +0.0 1752678102.6 +0.0 1752683912 +0.0 1752689721.5 +0.0 1752723910.1 +30.906482982156028 1752729705.6 +36.873239828909504 1752735501.2 +35.90275768636687 1752741296.8 +31.73905075972266 1752747092.4 +23.96924399285991 1752752888 +9.559552917628826 1752758683.5 +0.0 1752764479.1 +0.0 1752770274.7 +0.0 1752776070.3 +0.0 1752810385.3 +31.4462411890167 1752816166.6 +37.1312196792965 1752821947.9 +36.08512846959427 1752827729.2 +31.908117773606865 1752833510.5 +24.153887331198217 1752839291.8 +9.807906070083389 1752845073 +0.0 1752850854.3 +0.0 1752856635.6 +0.0 1752862416.9 +0.0 1752896862 +31.999303165220564 1752902628.6 +37.395149156205164 1752908395.2 +36.267499252821665 1752914161.8 +32.074912232380164 1752919928.4 +24.345884812358044 1752925695 +10.065885920470386 1752931461.6 +0.0 1752937228.2 +0.0 1752942994.8 +0.0 1752948761.4 +0.0 1752983340.1 +32.561991839356864 1752989091.7 +37.665028259635505 1752994843.2 +36.46176928909241 1753000594.7 +32.25360594419679 1753006346.3 +24.54978154656121 1753012097.8 +10.335765023900722 1753017849.3 +0.0 1753023600.8 +0.0 1753029352.4 +0.0 1753035103.9 +0.0 1753069819.6 +33.1365797665365 1753075555.7 +37.94453406099827 1753081291.8 +36.6597163967739 1753087027.8 +32.4359767274242 1753092763.9 +24.753678280764383 1753098500 +10.611593753852729 1753104236.1 +0.0 1753109972.2 +0.0 1753115708.2 +0.0 1753121444.3 +0.0 1753156300.3 +33.717117320237804 1753162020.6 +38.22998948888271 1753167740.8 +36.861340575866166 1753173461.1 +32.62429713717327 1753179181.4 +24.967201712899985 1753184901.7 +10.894776626626255 1753190622 +0.0 1753196342.2 +0.0 1753202062.5 +0.0 1753207782.8 +0.0 1753242782.2 +34.310958643282305 1753248486.3 +38.52279905958867 1753254190.4 +37.071186936591005 1753259894.6 +32.816294618333096 1753265598.7 +25.184402216446347 1753271302.8 +11.189858752443124 1753277006.9 +0.0 1753282711 +0.0 1753288415.2 +0.0 1753294119.3 +0.0 1753329265.2 +34.910749592848475 1753334952.9 +38.81788118540555 1753340640.5 +37.2847103687266 1753346328.1 +33.014241726014596 1753352015.7 +25.40755234651438 1753357703.4 +11.488617949670754 1753363391 +0.0 1753369078.6 +0.0 1753374766.2 +0.0 1753380453.9 +0.0 1753415749.4 +35.52016724034706 1753421420.2 +39.12259000915484 1753427091 +37.50191087227297 1753432761.8 +33.214461388807 1753438432.6 +25.63665210310408 1753444103.4 +11.795599328530963 1753449774.2 +0.0 1753455445 +0.0 1753461115.8 +0.0 1753466786.6 +0.0 1753502234.5 +36.141484140889006 1753507888.2 +39.43324845942581 1753513541.8 +37.725061002341 1753519195.5 +33.422035194420936 1753524849.1 +25.87537855762621 1753530502.8 +12.109934850212696 1753536156.5 +0.0 1753541810.1 +0.0 1753547463.8 +0.0 1753553117.5 +0.0 1753588720.6 +36.76052848632004 1753594356.8 +39.74758398110754 1753599993 +37.954160758930705 1753605629.2 +33.63555862655654 1753611265.4 +26.11410501214835 1753616901.7 +12.433897069826857 1753622537.9 +0.0 1753628174.1 +0.0 1753633810.3 +0.0 1753639446.5 +0.0 1753675207.6 +37.3914720847944 1753680826 +40.06419205790018 1753686444.5 +38.18921014204207 1753692063 +33.8527591301029 1753697681.5 +26.36245816460292 1753703300 +12.7660814710736 1753708918.4 +0.0 1753714536.9 +0.0 1753720155.4 +0.0 1753725773.9 +0.0 1753761695.4 +38.02609275467954 1753767295.8 +40.38815427751434 1753772896.3 +38.42198697004254 1753778496.7 +34.072232188760175 1753784097.2 +26.61308387216839 1753789697.7 +13.105620015141861 1753795298.1 +0.0 1753800898.6 +0.0 1753806499 +0.0 1753812099.5 +0.0 1753848184 +38.660713424564676 1753853766.1 +40.71806612365018 1753859348.3 +38.666663051086346 1753864930.5 +34.30133194534987 1753870512.6 +26.87106372255539 1753876094.8 +13.45110818573179 1753881676.9 +0.0 1753887259.1 +0.0 1753892841.3 +0.0 1753898423.4 +0.0 1753934673.3 +39.301283720971476 1753940236.9 +41.05392759630768 1753945800.5 +38.915016203540915 1753951364.1 +34.53410877335033 1753956927.7 +27.134993199464056 1753962491.3 +13.802545982843398 1753968054.9 +0.0 1753973618.5 +0.0 1753979182.1 +0.0 1753984745.7 +0.0 1754021163.3 +39.945531088789046 1754026708.1 +41.38978906896518 1754032252.9 +39.16336935599548 1754037797.7 +34.7691581564617 1754043342.5 +27.404872302894393 1754048887.3 +14.163610477887433 1754054432.1 +0.0 1754059976.9 +0.0 1754065521.7 +0.0 1754071066.5 +0.0 1754107654 +40.592051011717516 1754113179.7 +41.72932761303345 1754118705.5 +39.42362176149338 1754124231.2 +35.01156168239459 1754129756.9 +27.68070103284639 1754135282.7 +14.528352044342233 1754140808.4 +0.0 1754146334.1 +0.0 1754151859.9 +0.0 1754157385.6 +0.0 1754194145.2 +41.24224800605675 1754199651.7 +42.07481578362338 1754205158.1 +39.681601611880374 1754210664.6 +35.2562377634384 1754216171 +27.960206834209156 1754221677.5 +14.904992863840366 1754227183.9 +0.0 1754232690.4 +0.0 1754238196.8 +0.0 1754243703.3 +18.268689178126003 1754280637 +41.88876792898522 1754286123.9 +42.42625358073498 1754291610.9 +39.945531088789046 1754297097.8 +35.50459091589296 1754302584.7 +28.243389706982683 1754308071.7 +15.285310754749261 1754313558.6 +0.0 1754319045.6 +0.0 1754324532.5 +0.0 1754330019.4 +25.693007774398815 1754367129.3 +42.53896492332445 1754372596.5 +42.78136844925734 1754378063.7 +40.21541019221937 1754383530.9 +35.75889369486921 1754388998.1 +28.532522206277882 1754394465.3 +15.6775278987015 1754399932.5 +0.0 1754405399.7 +0.0 1754410866.9 +0.0 1754416334.1 +35.96279042907236 1754453622 +43.18321229114201 1754459069.3 +43.13280624636895 1754464516.6 +40.48528929564971 1754469963.8 +36.0191461003671 1754475411.1 +28.82760433209475 1754480858.4 +16.0734221140645 1754486305.7 +0.0 1754491752.9 +0.0 1754497200.2 +0.0 1754502647.5 +29.646868340318193 1754540115.2 +43.829732214070496 1754545542.3 +43.493870741412984 1754550969.5 +40.76479509701249 1754556396.6 +36.28307557727577 1754561823.7 +29.128636084433293 1754567250.9 +16.475265955949173 1754572678 +0.0 1754578105.2 +0.0 1754583532.3 +0.0 1754588959.4 +34.6312437914857 1754626608.7 +44.47397958188805 1754632015.5 +43.854935236457024 1754637422.3 +41.044300898375255 1754642829.2 +36.54700505418443 1754648236 +29.433344908182594 1754653642.8 +16.88673649576627 1754659049.6 +0.0 1754664456.4 +0.0 1754669863.3 +0.0 1754675270.1 +36.323854924116404 1754713102.6 +45.120499504816515 1754718488.9 +44.21967680291182 1754723875.2 +41.323806699738014 1754729261.5 +36.820561229025536 1754734647.8 +29.741730803342655 1754740034.2 +17.298207035583367 1754745420.5 +0.0 1754750806.8 +0.0 1754756193.1 +0.0 1754761579.4 +43.20841531352855 1754799596.7 +45.76106980122333 1754804962.4 +44.58669092447752 1754810328 +41.61293919903321 1754815693.7 +37.09638995897753 1754821059.3 +30.052389253613626 1754826425 +17.725253899854568 1754831790.6 +0.0 1754837156.3 +0.0 1754842521.9 +0.0 1754847887.6 +42.008833414396214 1754886091.2 +46.39569047110845 1754891436 +44.957382117453996 1754896780.8 +41.90207169832841 1754902125.6 +37.3758957603403 1754907470.4 +30.372674401817026 1754912815.2 +18.15230076412577 1754918160 +0.0 1754923504.8 +0.0 1754928849.7 +0.0 1754934194.5 +45.927864259996625 1754972585.9 +47.0303111409936 1754977909.7 +45.328073310430455 1754983233.5 +42.19347675273452 1754988557.3 +37.65540156170307 1754993881.1 +30.692959550020426 1754999204.9 +18.588974326329403 1755004528.8 +0.0 1755009852.6 +0.0 1755015176.4 +0.0 1755020500.2 +44.34201484343372 1755059080.8 +47.66125473946796 1755064383.5 +45.69876450340691 1755069686.1 +42.49223594996215 1755074988.8 +37.94453406099828 1755080291.5 +31.02287139615626 1755085594.1 +19.025647888533037 1755090896.8 +0.0 1755096199.5 +0.0 1755101502.1 +0.0 1755106804.8 +48.55980488626175 1755145575.9 +48.286248711420654 1755150857.3 +46.075405322905056 1755156138.7 +42.79326770230068 1755161420 +38.22998948888271 1755166701.4 +31.35278324229209 1755171982.8 +19.471948148669103 1755177264.1 +0.0 1755182545.5 +0.0 1755187826.9 +0.0 1755193108.3 +49.84094547907536 1755232071.2 +48.9052930568517 1755237331.1 +46.45204614240319 1755242591.1 +43.09202689952832 1755247851 +38.52279905958867 1755253111 +31.688644714949596 1755258370.9 +19.930147661848505 1755263630.9 +0.0 1755268890.8 +0.0 1755274150.7 +0.0 1755279410.7 +51.100560120913194 1755318566.6 +49.514710704350286 1755323805 +46.832364033312096 1755329043.4 +43.396735723277615 1755334281.8 +38.823830811927216 1755339520.2 +32.030455814128764 1755344758.5 +20.388347175027906 1755349996.9 +0.0 1755355235.3 +0.0 1755360473.7 +0.0 1755365712.1 +52.340921366886164 1755405062.2 +50.12412835184888 1755410278.9 +47.20900485281023 1755415495.6 +43.70739417354859 1755420712.3 +39.12259000915484 1755425929 +32.375943984718695 1755431145.7 +20.850223759618075 1755436362.4 +0.0 1755441579.1 +0.0 1755446795.8 +0.0 1755452012.5 +53.5560795904726 1755491557.8 +50.72986892793672 1755496752.7 +47.589322743719116 1755501947.6 +44.01805262381956 1755507142.5 +39.42729883290414 1755512337.4 +32.7251092267194 1755517532.3 +21.321727042140672 1755522727.2 +0.0 1755527922.1 +0.0 1755533117 +0.0 1755538311.9 +54.75338893449403 1755578053.5 +51.32371025098122 1755583226.5 +47.96964063462803 1755588399.5 +44.33238814550129 1755593572.5 +39.73428021176435 1755598745.5 +33.076547023831004 1755603918.5 +21.79917995118494 1755609091.4 +0.0 1755614264.4 +0.0 1755619437.4 +0.0 1755624610.4 +55.92776781123983 1755664549.4 +51.91387450261496 1755669700.3 +48.35223108064782 1755674851.3 +44.64672366718302 1755680002.2 +40.04266610692441 1755685153.2 +33.43166189235336 1755690304.1 +22.278905415340112 1755695455.1 +3.1152648908203122e-2 1755700606.1 +0.0 1755705757 +0.0 1755710908 +57.086570363531536 1755751045.2 +52.49808912772703 1755756174 +48.73254897155672 1755761302.9 +44.96105918886476 1755766431.7 +40.35332455719538 1755771560.6 +33.79272638739741 1755776689.4 +22.765985022316812 1755781818.2 +0.7532816389962739 1755786947.1 +0.0 1755792075.9 +0.0 1755797204.7 +58.22979659136914 1755837541.1 +53.07635412631743 1755842647.7 +49.11881648898729 1755847754.3 +45.28134433706815 1755852861 +40.67360970539878 1755857967.6 +34.15974050896311 1755863074.2 +23.25901425581518 1755868180.8 +1.4887143984275362 1755873287.4 +0.0 1755878394 +0.0 1755883500.6 +59.34781979682021 1755924037 +53.6472649820863 1755929121.3 +49.499134379896184 1755934205.6 +45.60757911179322 1755939289.9 +40.993894853602185 1755944374.2 +34.5244820754179 1755949458.5 +23.75572056072431 1755954542.8 +2.2360464109021394 1755959627.2 +0.0 1755964711.5 +0.0 1755969795.8 +60.45621630433885 1756010533 +54.2099536562226 1756015594.9 +49.88540189732676 1756020656.8 +45.93381388651829 1756025718.7 +41.31418000180558 1756030780.6 +34.89517326839437 1756035842.5 +24.25469942074435 1756040904.4 +2.998954747830844 1756045966.3 +0.0 1756051028.2 +0.0 1756056090.1 +61.54308686088171 1756097028.9 +54.768965258948135 1756102068.4 +50.267992343346556 1756107107.8 +46.257776106132454 1756112147.2 +41.63814222141975 1756117186.6 +35.2718140878925 1756122226 +24.763304978696812 1756127265.5 +3.7655401561703092 1756132304.9 +0.0 1756137344.3 +0.0 1756142383.7 +62.616653648081396 1756183524.9 +55.318350163741236 1756188541.8 +50.654259860777124 1756193558.6 +46.58768795226828 1756198575.5 +41.96805406755558 1756203592.3 +35.65213197880141 1756208609.2 +25.275587608060047 1756213626.1 +4.547701888963875 1756218642.9 +0.0 1756223659.8 +0.0 1756228676.6 +63.672371555716055 1756270020.9 +55.85810837060191 1756275015.1 +51.0405273782077 1756280009.3 +46.917599798404126 1756285003.5 +42.29428884228064 1756289997.8 +36.034722424821204 1756294992 +25.790142792534184 1756299986.2 +5.335813248279112 1756304980.4 +0.0 1756309974.7 +0.0 1756314968.9 +64.71478569400753 1756356516.8 +56.389644395830004 1756361488.3 +51.42084526911659 1756366459.8 +47.24978419965086 1756371431.4 +42.630150314938156 1756376402.9 +36.4150403157301 1756381374.4 +26.312052119829854 1756386345.9 +6.13950093204845 1756391317.5 +0.0 1756396289 +0.0 1756401260.5 +65.7416235078449 1756443012.7 +56.91977590475824 1756447961.5 +51.807112786547165 1756452910.2 +47.58337311719745 1756457859 +42.966011787595654 1756462807.7 +36.80725745968235 1756467756.5 +26.836234002236424 1756472705.2 +6.95281531375022 1756477654 +0.0 1756482602.8 +0.0 1756487551.5 +66.74098574418483 1756529508.7 +57.43800816064314 1756534434.6 +52.187430677456064 1756539360.5 +47.919234589854945 1756544286.4 +43.30555033166392 1756549212.3 +37.197202048523664 1756554138.3 +27.364092956053756 1756559064.2 +7.76980676686275 1756563990.1 +0.0 1756568916 +0.0 1756573841.9 +67.71146788672746 1756616004.6 +57.95029079000637 1756620907.6 +52.57002112347587 1756625810.6 +48.25509606251245 1756630713.6 +43.64141180432142 1756635616.7 +37.5894191924759 1756640519.7 +27.89422446498199 1756645422.7 +8.60237454442938 1756650325.7 +0.0 1756655228.8 +0.0 1756660131.8 +68.65674700688356 1756702500.4 +58.45294672143717 1756707380.5 +52.95033901438477 1756712260.6 +48.59463460658071 1756717140.7 +43.98689997491135 1756722020.8 +37.98531340783891 1756726900.8 +28.431710116731754 1756731780.9 +9.446841575039354 1756736661 +0.0 1756741541.1 +0.0 1756746421.2 +69.56124678019903 1756788996.3 +58.95192558145722 1756793853.4 +53.336606531815335 1756798710.5 +48.930496079238225 1756803567.5 +44.33238814550129 1756808424.6 +38.38715724972357 1756813281.7 +28.971468323592426 1756818138.8 +10.291308605649329 1756822995.9 +0.0 1756827852.9 +0.0 1756832710 +70.42496720667387 1756875492.2 +59.44495481495558 1756880326.2 +53.71324735131347 1756885160.2 +49.27230717841739 1756889994.2 +44.67787631609122 1756894828.3 +38.78900109160824 1756899662.3 +29.51490360186386 1756904496.3 +11.14907940560249 1756909330.4 +0.0 1756914164.4 +0.0 1756918998.4 +71.24423121489731 1756961988 +59.922407723999854 1756966798.9 +54.09356524222237 1756971609.9 +49.617795349007324 1756976420.8 +45.02336448668115 1756981231.7 +39.19452200490368 1756986042.7 +30.06201595154606 1756990853.6 +12.018749458598997 1756995664.5 +0.0 1757000475.5 +0.0 1757005286.4 +72.0227158762801 1757048483.8 +60.39986063304412 1757053271.6 +54.47388313313127 1757058059.4 +49.95733389307559 1757062847.2 +45.374802283792754 1757067635 +39.60004291819911 1757072422.8 +30.61140085633916 1757077210.6 +12.892096583006262 1757081998.4 +0.0 1757086786.2 +0.0 1757091574 +72.7544715643006 1757134979.6 +60.86768684415595 1757139744.3 +54.850523952629395 1757144508.9 +50.30282206366552 1757149273.5 +45.729917152315124 1757154038.1 +40.00783638660545 1757158802.7 +31.166735387653933 1757163567.3 +13.771393333935194 1757168332 +0.0 1757173096.6 +0.0 1757177861.2 +73.43949827895881 1757221475.5 +61.329563428746106 1757226216.9 +55.22716477212754 1757230958.3 +50.648310234255455 1757235699.7 +46.08503202083749 1757240441.1 +40.41930692642254 1757245182.5 +31.719797363857797 1757249923.9 +14.660316782796565 1757254665.3 +0.0 1757259406.6 +0.0 1757264148 +74.08374564677638 1757307971.3 +61.78181331540384 1757312689.4 +55.60380559162567 1757317407.6 +50.99379840484539 1757322125.7 +46.43646981794909 1757326843.9 +40.836727092761315 1757331562 +32.27880896658333 1757336280.2 +15.555189858179599 1757340998.3 +0.0 1757345716.4 +0.0 1757350434.6 +74.69543584938589 1757394467.1 +62.23038613065083 1757399162 +55.97449678460214 1757403856.8 +51.339286575435324 1757408551.7 +46.79753431299313 1757413246.6 +41.24819763257842 1757417941.4 +32.84149764071963 1757422636.3 +16.4537400049734 1757427331.1 +0.0 1757432026 +0.0 1757436720.8 +75.26407415004384 1757480963 +62.67073676426522 1757485634.5 +56.34886504898937 1757490306.1 +51.684774746025255 1757494977.6 +47.156326252926256 1757499649.1 +41.66929487032795 1757504320.7 +33.40645886996683 1757508992.2 +17.364189404810535 1757513663.8 +0.0 1757518335.3 +0.0 1757523006.8 +75.79788273038284 1757567458.9 +63.103733255058096 1757572107 +56.72182879707674 1757576755.2 +52.03621254313686 1757581403.4 +47.51371367655952 1757586051.6 +42.08671503666672 1757590699.8 +33.971420099214036 1757595348 +18.274638804647672 1757599996.2 +0.0 1757604644.4 +0.0 1757609292.6 +76.30053866181365 1757653954.8 +63.530780119329286 1757658579.6 +57.092519990053205 1757663204.4 +52.3817007137268 1757667829.2 +47.878455243014315 1757672454 +42.50781227441625 1757677078.9 +34.53410877335033 1757681703.7 +19.18876527589557 1757686328.5 +0.0 1757690953.3 +0.0 1757695578.1 +76.77204194433624 1757740450.7 +63.94592773055715 1757745052.1 +57.45726155650801 1757749653.6 +52.730865955727495 1757754255 +48.23951973805835 1757758856.4 +42.93485913868746 1757763457.8 +35.10869670052996 1757768059.3 +20.10884137366514 1757772660.7 +0.0 1757777262.1 +0.0 1757781863.5 +77.21466513306154 1757826946.7 +64.35967082548515 1757831524.7 +57.82427567807371 1757836102.7 +53.082303752839096 1757840680.7 +48.60653385962405 1757845258.7 +43.35595637643698 1757849836.7 +35.67733500118793 1757854414.7 +21.032594542845473 1757858992.7 +0.0 1757863570.8 +0.0 1757868148.8 +77.63576237081108 1757913442.8 +64.7651917387806 1757917997.3 +58.18901724452851 1757922551.9 +53.42779192342903 1757927106.5 +48.97127542607885 1757931661 +43.78300324070818 1757936215.6 +36.25192292836756 1757940770.2 +21.958620267136713 1757945324.7 +0.0 1757949879.3 +0.0 1757954433.9 +78.03392914128499 1757999938.9 +65.16703558066526 1758004470 +58.55603136609421 1758009001.1 +53.779229720540634 1758013532.2 +49.33828954764456 1758018063.3 +44.21005010497939 1758022594.4 +36.82651085554721 1758027125.6 +22.88832306283871 1758031656.7 +0.0 1758036187.8 +0.0 1758040718.9 +78.40462033426145 1758086435.1 +65.56292979602826 1758090942.8 +58.91709586113825 1758095450.4 +54.128394962541336 1758099958 +49.70303111409935 1758104465.7 +44.64304659577226 1758108973.3 +37.401098782726834 1758113480.9 +23.821702929951474 1758117988.6 +0.0 1758122496.2 +0.0 1758127003.8 +78.75973520278383 1758172931.4 +65.94919731345884 1758177415.6 +59.27588780107138 1758181899.7 +54.479832759652936 1758186383.9 +50.07372230707582 1758190868 +45.073770531454215 1758195352.2 +37.975686709906476 1758199836.3 +24.753678280764383 1758204320.4 +0.0 1758208804.6 +0.0 1758213288.7 +79.09559667544133 1758259427.8 +66.32951520436774 1758263888.5 +59.63695229611541 1758268349.1 +54.83127055676454 1758272809.8 +50.44073642864152 1758277270.4 +45.50081739572541 1758281731.1 +38.55395170849687 1758286191.7 +25.687058147877146 1758290652.3 +0.0 1758295113 +0.0 1758299573.6 +79.41588182364472 1758345924.4 +66.70615602386587 1758350361.5 +59.99433971974869 1758354798.6 +55.17675872735447 1758359235.7 +50.811427621617995 1758363672.9 +45.93381388651829 1758368110 +39.12853963567651 1758372547.1 +26.62271057010082 1758376984.3 +0.0 1758381421.4 +0.0 1758385858.5 +79.72059064739403 1758432421 +67.07684721684232 1758436834.6 +60.34350496174939 1758441248.2 +55.52592396935516 1758445661.8 +51.18211881459446 1758450075.4 +46.370487448721924 1758454489 +39.70680463426691 1758458902.7 +27.552413365802824 1758463316.3 +0.0 1758467729.9 +0.0 1758472143.5 +80.00972314668921 1758518917.8 +67.43791171188636 1758523307.8 +60.70089238538265 1758527697.9 +55.87736176646678 1758532088 +51.552810007570926 1758536478.1 +46.80121138440389 1758540868.2 +40.287342187968214 1758545258.3 +28.488065788026486 1758549648.3 +0.0 1758554038.4 +0.0 1758558428.5 +80.28327932153032 1758605414.7 +67.79897620693039 1758609781.2 +61.05005762738334 1758614147.8 +56.22284993705671 1758618514.3 +51.92350120054739 1758622880.9 +47.23788494660752 1758627247.4 +40.86193011514784 1758631614 +29.417768583728492 1758635980.5 +0.9260257242912411 1758640347.1 +0.0 1758644713.6 +80.54948135354991 1758691911.8 +68.150414004042 1758696254.8 +61.39554579797327 1758700597.8 +56.57428773416831 1758704940.8 +52.300142020045534 1758709283.8 +47.67088143740039 1758713626.8 +41.44019511373824 1758717969.8 +30.347471379430495 1758722312.8 +2.9425990765361085 1758726655.9 +0.0 1758730998.9 +80.79783450600446 1758778409 +68.4995792460427 1758782728.5 +61.74698359508488 1758787047.9 +56.923452976169 1758791367.4 +52.670833213022 1758795686.9 +48.10755499960402 1758800006.4 +42.020732667439546 1758804325.8 +31.277174175132494 1758808645.3 +4.965122055302646 1758812964.8 +0.0 1758817284.3 +81.04251058704827 1758864906.4 +68.84139034522187 1758869202.4 +62.08652213915315 1758873498.3 +57.26894114675894 1758877794.2 +53.041524405998466 1758882090.2 +48.54422856180764 1758886386.1 +42.59304803950828 1758890682 +32.19725027290207 1758894978 +6.987645034069184 1758899273.9 +0.0 1758903569.8 +81.26933778852707 1758951404 +69.17497926276846 1758955676.4 +62.43201030974309 1758959948.8 +57.61442931734887 1758964221.2 +53.4181652254966 1758968493.6 +48.97722505260052 1758972766 +43.17358559320959 1758977038.4 +33.1210034420824 1758981310.8 +8.994591688381622 1758985583.2 +0.0 1758989855.6 +81.494760473706 1759037901.8 +69.5071636640152 1759042150.7 +62.76787178240059 1759046399.6 +57.96586711446048 1759050648.4 +53.788856418473074 1759054897.3 +49.413898614804154 1759059146.2 +43.74817352038922 1759063395.1 +34.03740246844121 1759067643.9 +10.985962018239954 1759071892.8 +0.0 1759076141.7 +81.7060113507307 1759124399.9 +69.83112588362935 1759128625.2 +63.10741032646886 1759132850.5 +58.31135528505041 1759137075.9 +54.15954761144953 1759141301.2 +49.85057217700779 1759145526.6 +44.32276144756886 1759149751.9 +34.94557931316743 1759153977.3 +12.952129325711757 1759158202.6 +0.0 1759162428 +81.90990808493387 1759210898.1 +70.15736065835442 1759215099.9 +63.44327179912636 1759219301.8 +58.65684345564034 1759223503.6 +54.53618843094767 1759227705.4 +50.287245739211414 1759231907.2 +44.895076819637595 1759236109.1 +35.85602871300456 1759240310.9 +14.895366165907934 1759244512.7 +0.0 1759248714.5 +82.10785519261536 1759297396.6 +70.47169618003618 1759301574.9 +63.773183645262186 1759305753.2 +58.99638199970861 1759309931.5 +54.90687962392414 1759314109.9 +50.72024223000429 1759318288.2 +45.46598767540645 1759322466.5 +36.75457885979837 1759326644.8 +16.805177802085005 1759330823.1 +0.0 1759335001.4 +82.3021252288861 1759383895.3 +70.78235463030713 1759388050.1 +64.10536804650893 1759392204.9 +59.338193098887785 1759396359.8 +55.2775708169006 1759400514.6 +51.156915792207926 1759404669.4 +46.034625976064426 1759408824.2 +37.6494519351814 1759412979.1 +18.68610934446477 1759417133.9 +0.0 1759421288.7 +82.4844960121135 1759470394.3 +71.08706345405643 1759474525.6 +64.43527989264476 1759478656.9 +59.68368126947772 1759482788.3 +55.64826200987707 1759486919.6 +51.59358935441156 1759491051 +46.603264276722385 1759495182.3 +38.53837538404277 1759499313.7 +20.53588823793634 1759503445 +0.0 1759507576.3 +82.66318972393013 1759556893.5 +71.39177227780574 1759561001.3 +64.75924211225893 1759565109.2 +60.02321981354598 1759569217.1 +56.01895320285354 1759573325 +52.02658584520444 1759577432.9 +47.168225505969595 1759581540.7 +39.42362176149338 1759585648.6 +22.34856485597804 1759589756.5 +0.0 1759593864.4 +82.82998418270341 1759643393 +71.6868544036226 1759647477.4 +65.08547688698398 1759651561.8 +60.36503091272515 1759655646.3 +56.389644395830004 1759659730.7 +52.4573097808864 1759663815.1 +47.730914180105884 1759667899.6 +40.29696888590064 1759671984 +24.128684308811682 1759676068.4 +0.0 1759680152.9 +82.99677864147674 1759729892.7 +71.97598690291781 1759733953.7 +65.4057620351874 1759738014.7 +60.70089238538265 1759742075.7 +56.762608143917376 1759746136.8 +52.890306271679265 1759750197.8 +48.28992578283142 1759754258.8 +41.160689312375474 1759758319.8 +25.871701486215454 1759762380.8 +0.0 1759766441.8 +83.15989602883927 1759816392.8 +72.26511940221302 1759820430.4 +65.72009755686912 1759824468 +61.04043092945091 1759828505.6 +57.12734971037217 1759832543.2 +53.321030207361225 1759836580.8 +48.848937385556965 1759840618.4 +42.020732667439546 1759844656 +27.577616388189355 1759848693.7 +0.0 1759852731.3 +83.31338671826937 1759902893.1 +72.55057483009745 1759906907.3 +66.04038270507253 1759910921.6 +61.37629240210841 1759914935.8 +57.49804090334864 1759918950 +53.74807707163243 1759922964.3 +49.40427191687172 1759926978.5 +42.87255384087105 1759930992.8 +29.254651196365952 1759935007 +0.0 1759939021.2 +83.46460485258856 1759989393.7 +72.8300806314602 1759993384.6 +66.35104115534351 1759997375.5 +61.70620424824425 1760001366.4 +57.86505502491435 1760005357.3 +54.181073562425304 1760009348.2 +49.95733389307559 1760013339.1 +43.711071244959356 1760017330 +30.896856284223592 1760021320.9 +0.0 1760025311.8 +83.60846884408625 1760075894.6 +73.10363680630131 1760079862.2 +66.65942705050357 1760083829.8 +62.04206572090176 1760087797.4 +58.22979659136914 1760091765 +54.60812042669651 1760095732.6 +50.506718797868686 1760099700.1 +44.54591157763689 1760103667.7 +32.50195909665136 1760107635.3 +0.0 1760111602.9 +83.75006028047301 1760162395.8 +73.37351590973164 1760166340.1 +66.97008550077453 1760170284.5 +62.37197756703759 1760174228.8 +58.59681071293485 1760178173.1 +55.0328947358568 1760182117.4 +51.0561037026618 1760186061.7 +45.368852657271084 1760190006 +34.078181815281845 1760193950.3 +0.0 1760197894.7 +83.887974645449 1760248897.3 +73.63744538664031 1760252818.4 +67.27479432452382 1760256739.5 +62.701889413173426 1760260660.6 +58.95787520797889 1760264581.7 +55.456264528717234 1760268502.7 +51.593589354411556 1760272423.8 +46.17621741245118 1760276344.9 +35.623251885004116 1760280266 +0.0 1760284187.1 +84.0236164553141 1760335399.2 +73.90137486354898 1760339297.1 +67.57582607686237 1760343194.9 +63.03180125930926 1760347092.8 +59.32261677443368 1760350990.7 +55.87736176646677 1760354888.6 +52.13334756127223 1760358786.5 +46.97990509622053 1760362684.4 +37.1312196792965 1760366582.3 +0.0 1760370480.1 +84.15190412235766 1760421901.3 +74.1556776425252 1760425776 +67.87458527409 1760429650.8 +63.35803603403432 1760433525.5 +59.68368126947772 1760437400.2 +56.298459004216305 1760441275 +52.670833213022 1760445149.7 +47.771693526946514 1760449024.5 +38.60435775326994 1760452899.2 +0.0 1760456773.9 +84.27791923429034 1760508403.7 +74.40998042150144 1760512255.4 +68.17561702642853 1760516107 +63.678321182237724 1760519958.6 +60.03879613800008 1760523810.3 +56.71587917055507 1760527661.9 +53.19869216683933 1760531513.6 +48.55385525974008 1760535365.2 +40.04861573344608 1760539216.8 +0.0 1760543068.5 +84.40025727481223 1760594906.5 +74.658333573956 1760598735.1 +68.46474952572373 1760602563.7 +64.00228340185188 1760606392.3 +60.39391100652245 1760610220.8 +57.13329933689384 1760614049.4 +53.72882367576757 1760617878 +49.322713223190455 1760621706.6 +41.46172106471402 1760625535.2 +0.0 1760629363.8 +84.52259531533414 1760681409.5 +74.9030096549998 1760685215.1 +68.7598316515406 1760689020.7 +64.3225685500553 1760692826.3 +60.751298430155714 1760696631.9 +57.544769876710944 1760700437.5 +54.25073300306323 1760704243.1 +50.08334900500825 1760708048.8 +42.84367374707375 1760711854.4 +0.0 1760715660 +84.6330341028127 1760767912.8 +75.14768573604361 1760771695.5 +69.0489641508358 1760775478.2 +64.63917662684793 1760779260.9 +61.106413298678085 1760783043.6 +57.95624041652805 1760786826.2 +54.768965258948135 1760790608.9 +50.83068101748286 1760794391.6 +44.18484708259286 1760798174.3 +0.0 1760801957 +84.75169507192382 1760854416.5 +75.38641219056575 1760858176.3 +69.32846995219857 1760861936.1 +64.95351214852965 1760865695.9 +61.45785109578968 1760869455.7 +58.36771095634514 1760873215.6 +55.28352044342227 1760876975.4 +51.56838633202503 1760880735.2 +45.50081739572542 1760884495 +0.0 1760888254.8 +84.85845678799164 1760940920.4 +75.6191890185662 1760944657.4 +69.61392538008299 1760948394.4 +65.26784767021138 1760952131.5 +61.80701633779038 1760955868.5 +58.77323186964058 1760959605.5 +55.79212600137475 1760963342.6 +52.2905153221131 1760967079.6 +46.78195798853903 1760970816.6 +0.0 1760974553.6 +84.96521850405944 1761027424.6 +75.84828877515591 1761031138.9 +69.89343118144576 1761034853.2 +65.57850612048236 1761038567.5 +62.15250450838031 1761042281.8 +59.175075711525245 1761045996.1 +56.29478193280554 1761049710.5 +53.006694685679506 1761053424.8 +48.02599630592276 1761057139.1 +1.2907672907460368 1761060853.4 +85.07198022012724 1761113929.1 +76.07143890522394 1761117620.7 +70.16698735628687 1761121312.4 +65.88916457075334 1761125004.1 +62.497992678970256 1761128695.8 +59.576919553409915 1761132387.4 +56.791488237714674 1761136079.1 +53.7072977247918 1761139770.8 +49.24115452950919 1761143462.5 +1.3567496599732032 1761147154.1 +85.17279230967337 1761200433.8 +76.29458903529198 1761204102.9 +70.44054353112797 1761207772 +66.19387339450263 1761211441.1 +62.839803778149424 1761215110.3 +59.972813768772916 1761218779.4 +57.28451747121304 1761222448.5 +54.39459699456091 1761226117.6 +50.41921047766575 1761229786.8 +0.0 1761233455.9 +85.2736043992195 1761286938.7 +76.51406209394925 1761290585.4 +70.7104226345583 1761294232.1 +66.49263259173026 1761297878.7 +63.179342322217686 1761301525.4 +60.36503091272515 1761305172.1 +57.77386963330065 1761308818.7 +55.06999701128667 1761312465.4 +51.56243670550336 1761316112.1 +0.0 1761319758.7 +85.37073941735487 1761373443.9 +76.73126259749561 1761377068.2 +70.97435211146697 1761380692.5 +66.7936643440688 1761384316.8 +63.51520379487519 1761387941.1 +60.75497550156648 1761391565.4 +58.25499961375567 1761395189.7 +55.73577033008 1761398814 +52.67678283954367 1761402438.3 +34.794361178848234 1761406062.6 +85.46192480896858 1761459949.3 +76.94110895822045 1761463551.4 +71.23828158837564 1761467153.4 +67.09242354129643 1761470755.5 +63.85106526753269 1761474357.5 +61.14719264551873 1761477959.5 +58.732452522799946 1761481561.6 +56.389644395830004 1761485163.6 +53.7540266981541 1761488765.7 +46.684822970403665 1761492367.7 +85.55311020058228 1761546454.9 +77.14868276383437 1761550034.8 +71.49853399387354 1761553614.7 +67.3875056671133 1761557194.6 +64.18097711366852 1761560774.5 +61.52751053642761 1761564354.4 +59.20027873391178 1761567934.3 +57.02653762082605 1761571514.2 +54.79416828133466 1761575094.1 +52.274938997659 1761578673.9 +85.64429559219597 1761632960.7 +77.35257949803756 1761636518.6 +71.75651384426052 1761640076.4 +67.6766381664085 1761643634.3 +64.51088895980436 1761647192.1 +61.904151355925755 1761650750 +59.668104945023615 1761654307.8 +57.65520866418951 1761657865.7 +55.805429770717936 1761661423.5 +54.22185290926594 1761664981.4 +85.7318039123989 1761719466.7 +77.55052660571906 1761723002.6 +72.01081662323676 1761726538.5 +67.96577066570369 1761730074.5 +64.83712373452944 1761733610.4 +62.284469246834654 1761737146.3 +60.12630445820302 1761740682.3 +58.270575938209774 1761744218.2 +56.78186153978224 1761747754.1 +56.065682176215844 1761751290.1 +85.81703967749094 1761805972.7 +77.74847371340054 1761809486.9 +72.26144233080224 1761813001 +68.25122609358813 1761816515.2 +65.15740888273282 1761820029.3 +62.65516043981112 1761823543.5 +60.578554344860756 1761827057.6 +58.87036688777595 1761830571.8 +57.72714065993834 1761834085.9 +57.81237642503037 1761837600.1 +85.90454799769387 1761892478.9 +77.9427437496713 1761895971.4 +72.50384585673514 1761899463.9 +68.53668152147257 1761902956.4 +65.47542147582533 1761906448.9 +63.02217456137683 1761909941.4 +61.02485460499681 1761913433.9 +59.464208210820445 1761916926.4 +58.64126713118624 1761920418.9 +60.04474576452176 1761923911.4 +85.98610669137514 1761978985.1 +78.12879160430946 1761982456.1 +72.74852193777893 1761985927.1 +68.81023769631366 1761989398.1 +65.7860799260963 1761992869.1 +63.383239056420855 1761996340.1 +61.46152816720044 1761999811.1 +60.03879613800008 1762003282.1 +59.52056388211518 1762006753.1 +61.05005762738334 1762010224.1 +86.06171575853473 1762065491.4 +78.31711201405852 1762068941.1 +72.98724839230107 1762072390.7 +69.08974349767644 1762075840.3 +66.10268800288894 1762079290 +63.74430355146489 1762082739.6 +61.89452465799332 1762086189.3 +60.607434438658046 1762089638.9 +60.368707984135916 1762093088.5 +62.55434835026499 1762096538.2 +86.13732482569434 1762151997.7 +78.50175535239683 1762155426.2 +73.22002522030154 1762158854.6 +69.35962260110676 1762162283.1 +66.40739682663823 1762165711.5 +64.09941841998726 1762169140 +62.32157152226453 1762172568.4 +61.156819343451154 1762175996.8 +61.19164906377012 1762179425.3 +63.98303000598702 1762182853.7 +86.21520644796483 1762238504 +78.67817650910256 1762241911.4 +73.45507460341291 1762245318.8 +69.62722914942619 1762248726.3 +66.71210565038754 1762252133.7 +64.44490659057719 1762255541.1 +62.74266876001406 1762258948.5 +61.70025462172258 1762262355.9 +61.97976042308536 1762265763.4 +65.34345673737099 1762269170.8 +86.29081551512445 1762325010.2 +78.85687022091919 1762328396.8 +73.68417436000261 1762331783.4 +69.89343118144576 1762335169.9 +67.01086484761515 1762338556.5 +64.79039476116714 1762341943.1 +63.15413929983116 1762345329.6 +62.23038613065083 1762348716.2 +62.74266876001406 1762352102.8 +66.6401736546387 1762355489.4 +86.36274751087328 1762411516.4 +79.02366467969249 1762414882.3 +73.90732449007064 1762418248.2 +70.15141103183275 1762421614.1 +67.30594697343203 1762424980 +65.12993330523538 1762428345.9 +63.55598314171582 1762431711.8 +62.742668760014055 1762435077.7 +63.47442444803456 1762438443.6 +67.88053490061166 1762441809.5 +86.43240695151121 1762498022.3 +79.19273169357669 1762501367.8 +74.124524993617 1762504713.2 +70.41166343733067 1762508058.7 +67.59507947272724 1762511404.1 +65.4657947778929 1762514749.5 +63.95782698360049 1762518095 +63.24532469144485 1762521440.4 +64.17502748714685 1762524785.9 +69.0645404752899 1762528131.3 +86.49838932073837 1762584528.1 +79.35952615235 1762587853.3 +74.34399805227429 1762591178.5 +70.663693661196 1762594503.7 +67.88421197202243 1762597828.9 +65.79570662402872 1762601154 +64.34777157244181 1762604479.2 +63.73835392494322 1762607804.4 +64.85637713039429 1762611129.6 +70.19814000519507 1762614454.7 +86.56437168996554 1762671033.7 +79.52264353971252 1762674338.8 +74.55752148440988 1762677644 +70.9083697422398 1762680949.1 +68.16966739990686 1762684254.2 +66.11599177223212 1762687559.4 +64.73036201846163 1762690864.5 +64.21580683398749 1762694169.6 +65.50657412473353 1762697474.8 +71.2753838638055 1762700779.9 +86.63035405919271 1762757539 +79.67981130055338 1762760824.3 +74.76509529002381 1762764109.6 +71.15672289469437 1762767394.9 +68.44322357474796 1762770680.2 +66.43627692043553 1762773965.6 +65.10473028284885 1762777250.9 +64.68363304509931 1762780536.2 +66.13156809668622 1762783821.5 +72.2962720511212 1762787106.8 +86.69265935700912 1762844044 +79.83102943487259 1762847309.7 +74.96899202422698 1762850575.4 +71.3954493492165 1762853841.1 +68.71905230469997 1762857106.9 +66.74693537070651 1762860372.6 +65.47174440441457 1762863638.3 +65.13588293175704 1762866904 +66.73730867277406 1762870169.8 +73.26675419366384 1762873435.5 +86.75269209971462 1762930548.5 +79.98452012430269 1762933794.9 +75.17288875843013 1762937041.3 +71.63049873232787 1762940287.7 +68.9889314081303 1762943534.1 +67.05759382097744 1762946780.5 +65.8328088994586 1762950026.9 +65.57850612048236 1762953273.3 +67.31557367136446 1762956519.7 +74.18088066491175 1762959766 +86.81499739753102 1763017052.7 +80.13206118721112 1763020280 +75.36488623958999 1763023507.3 +71.86327556032833 1763026734.6 +69.24691125851729 1763029961.9 +67.3563530182051 1763033189.2 +66.18792376798096 1763036416.5 +66.00923005616433 1763039643.8 +67.87090820267923 1763042871.2 +75.04092401997582 1763046098.5 +86.87503014023652 1763103556.3 +80.2736526235979 1763106764.8 +75.55915627586072 1763109973.3 +72.08869824550727 1763113181.8 +69.5071636640152 1763116390.3 +67.65143514402197 1763119598.8 +66.52746231204922 1763122807.3 +66.4266502225031 1763126015.8 +68.40244422790734 1763129224.3 +75.83866207722347 1763132432.8 +86.93138581153124 1763190059.4 +80.4115669885739 1763193249.3 +75.74747668560978 1763196439.3 +72.31184837557531 1763199629.3 +69.75919388788053 1763202819.3 +67.94056764331717 1763206009.2 +66.86927341122839 1763209199.2 +66.83444369090944 1763212389.2 +68.91699941238146 1763215579.2 +76.5800444631764 1763218769.1 +86.98179185630431 1763276561.8 +80.54948135354991 1763279733.6 +75.92984746883718 1763282905.3 +72.52904887912167 1763286077 +70.009819595446 1763289248.8 +68.2260230712016 1763292420.5 +67.19323563084255 1763295592.3 +67.23033790627242 1763298764 +69.41002864587983 1763301935.7 +77.26507117783461 1763305107.5 +87.03814752759904 1763363063.6 +80.68144609200424 1763366217.4 +76.11221825206458 1763369371.2 +72.74257231125726 1763372525 +70.25222312137889 1763375678.8 +68.4995792460427 1763378832.6 +67.51352077904596 1763381986.4 +67.61065579718134 1763385140.3 +69.87785485699166 1763388294.1 +77.89601477630899 1763391447.9 +87.0885535723721 1763449564.6 +80.81341083045855 1763452700.8 +76.28496233735954 1763455837 +72.94646904546045 1763458973.2 +70.48727250449028 1763462109.4 +68.76945834947303 1763465245.6 +67.82417922931693 1763468381.8 +67.9813469901578 1763471518 +70.3301047436494 1763474654.2 +78.48022940142106 1763477790.4 +87.13895961714518 1763536064.8 +80.93574887098046 1763539183.7 +76.45770642265451 1763542302.6 +73.15036577966362 1763545421.5 +70.72004933249073 1763548540.4 +69.0333878263817 1763551659.4 +68.12888805306623 1763554778.3 +68.34241148520182 1763557897.2 +70.76082867933137 1763561016.1 +79.01998760828172 1763564135 +87.18568859050748 1763622564.1 +81.05581435639145 1763625666.1 +76.62450088142782 1763628768 +73.3483128873451 1763631870 +70.94319946255877 1763634972 +69.28769060535794 1763638074 +68.4239701788831 1763641175.9 +68.68789965579175 1763644277.9 +71.17824884567014 1763647379.9 +79.51669391319085 1763650481.9 +87.23609463528055 1763709062.4 +81.17815239691336 1763712147.8 +76.78394119737959 1763715233.2 +73.54031036850495 1763718318.6 +71.16267252121602 1763721404 +69.5360437578125 1763724489.4 +68.7131026781783 1763727574.8 +69.02376112844927 1763730660.2 +71.57414306103314 1763733745.5 +79.96894379984859 1763736830.9 +87.28055105353195 1763795559.7 +81.29086373950283 1763798628.8 +76.94110895822045 1763801698 +73.72863077825401 1763804767.2 +71.38214557987331 1763807836.4 +69.7807198388563 1763810905.6 +68.9889314081303 1763813974.7 +69.34772334806343 1763817043.9 +71.95078388053128 1763820113.1 +80.39004103759812 1763823182.3 +87.32133040037257 1763882055.8 +81.4013025269814 1763885109.2 +77.09232709253965 1763888162.5 +73.9110015614814 1763891215.9 +71.58971938548723 1763894269.2 +70.01944629337844 1763897322.6 +69.25653795644973 1763900375.9 +69.6583817983344 1763903429.3 +72.31552544698607 1763906482.6 +80.77630855502869 1763909536 +87.36805937373488 1763968550.8 +81.50806424304919 1763971588.7 +77.2398681554481 1763974626.6 +74.08969527329805 1763977664.5 +71.78766649316873 1763980702.4 +70.24259642344647 1763983740.3 +69.52046743335839 1763986778.2 +69.9630906220837 1763989816.1 +72.661013617576 1763992854.1 +81.13369597866196 1763995892 +87.40883872057552 1764055044.4 +81.614825959117 1764058067.3 +77.38373214694576 1764061090.2 +74.25648973207134 1764064113.1 +71.98561360085024 1764067136 +70.4657465535145 1764070158.9 +69.77109314092387 1764073181.7 +70.25222312137889 1764076204.6 +72.98724839230107 1764079227.5 +81.46360782479779 1764082250.4 +87.44366844089448 1764141536.7 +81.71196097725237 1764144545 +77.51937395681085 1764147553.3 +74.42555674595555 1764150561.6 +72.1739340105993 1764153569.8 +70.6792699856501 1764156578.1 +70.01349666685677 1764159586.4 +70.53172892274166 1764162594.7 +73.30158391398281 1764165603 +81.7683166485471 1764168611.3 +87.48444778773512 1764228027.6 +81.8127730667985 1764231021.7 +77.65728832178685 1764234015.8 +74.58272450679641 1764237009.9 +72.35630479382671 1764240004 +70.88316671985325 1764242998.1 +70.24854604996813 1764245992.2 +70.79793095476123 1764248986.4 +73.60261566632136 1764251980.5 +82.04782244990986 1764254974.6 +87.52155006316498 1764314516.9 +81.9062310135231 1764317497.3 +77.78330343371952 1764320477.7 +74.73621519622651 1764323458.1 +72.52904887912167 1764326438.5 +71.08706345405643 1764329418.9 +70.47169618003618 1764332399.2 +71.05591080514823 1764335379.6 +73.88579853909486 1764338360 +82.30580230029686 1764341340.4 +87.55637978348395 1764401004.6 +81.99146677861512 1764403971.7 +77.90564147424142 1764406938.9 +74.88148370402405 1764409906 +72.70179296441663 1764412873.1 +71.2753838638055 1764415840.3 +70.69116923869343 1764418807.4 +71.30058688619204 1764421774.5 +74.1556776425252 1764424741.7 +82.544528754819 1764427708.8 +87.58753243239215 1764487490.6 +82.07897509881808 1764490445 +78.02202988824165 1764493399.3 +75.02534769552172 1764496353.7 +72.86491035177917 1764499308 +71.4577546470329 1764502262.4 +70.89874304430737 1764505216.7 +71.5333637141925 1764508171.1 +74.40998042150144 1764511125.4 +82.76400181347626 1764514079.8 +87.61641252618945 1764573974.8 +82.15826123738843 1764576916.9 +78.13474123083112 1764579859 +75.16098950538681 1764582801 +73.01840104120927 1764585743.1 +71.63644835884953 1764588685.1 +71.09669015198887 1764591627.2 +71.75283677284976 1764594569.2 +74.65465650254524 1764597511.3 +82.97157561909019 1764600453.3 +87.64756517509764 1764660457.2 +82.23614285965893 1764663387.5 +78.24745257342059 1764666317.7 +75.28927717243037 1764669248 +73.16594210411772 1764672178.2 +71.80324281762283 1764675108.5 +71.28501056173793 1764678038.8 +71.96636020498538 1764680969 +74.88148370402405 1764683899.3 +83.15989602883927 1764686829.6 +87.67871782400584 1764746937.6 +82.31175192681853 1764749856.6 +78.34826466296671 1764752775.6 +75.41529228436305 1764755694.5 +73.30753354050448 1764758613.5 +71.96041057846371 1764761532.5 +71.46370427355457 1764764451.5 +72.16798438407763 1764767370.5 +75.09500713615964 1764770289.5 +83.33264011413424 1764773208.4 +87.70392084639238 1764833415.9 +82.37773429604569 1764836324.2 +78.44539968110209 1764839232.4 +75.5339532534742 1764842140.6 +73.44544790548048 1764845048.9 +72.11390126789381 1764847957.1 +71.63049873232787 1764850865.3 +72.35630479382671 1764853773.6 +75.2989038703628 1764856681.8 +83.49575750149677 1764859590 +87.73280094018968 1764919892.2 +82.44371666527287 1764922790.2 +78.5365850727158 1764925688.2 +75.64439204095275 1764928586.2 +73.57146301741315 1764931484.2 +72.25549270428057 1764934382.2 +71.7936161196904 1764937280.3 +72.53499850564334 1764940178.3 +75.48722428011189 1764943076.3 +83.64329856440521 1764945974.3 +87.75432689116543 1765006366.2 +82.50969903450003 1765009254.5 +78.62182083780783 1765012142.9 +75.74747668560978 1765015031.2 +73.68785143141338 1765017919.6 +72.39340706925658 1765020807.9 +71.94115718259884 1765023696.3 +72.70179296441663 1765026584.6 +75.66591799192852 1765029473 +83.77526330285954 1765032361.3 +87.77952991355197 1765092837.9 +82.56605470579477 1765095717.2 +78.70337953148909 1765098596.4 +75.84828877515591 1765101475.7 +73.8042398454136 1765104354.9 +72.51942218118923 1765107234.1 +72.0827486189856 1765110113.4 +72.8589607252575 1765112992.6 +75.82676282418014 1765115871.9 +83.9012784147922 1765118751.1 +87.80105586452774 1765179307.3 +82.6224103770895 1765182178 +78.7789885986487 1765185048.7 +75.93947416676961 1765187919.4 +73.90732449007064 1765190790.1 +72.63581059518947 1765193660.8 +72.21471335743995 1765196531.5 +73.00282471675517 1765199402.3 +75.98025351361025 1765202273 +84.01398975738165 1765205143.7 +87.8203092603926 1765265774.2 +82.67281642186256 1765268637 +78.85092059439752 1765271499.7 +76.02698248697256 1765274362.5 +74.00813657961677 1765277225.2 +72.74852193777893 1765280088 +72.33705139796184 1765282950.7 +73.13846652662028 1765285813.5 +76.12184494999701 1765288676.3 +84.1148018469278 1765291539 +87.83588558484672 1765352238.6 +82.71727284011396 1765355094 +78.9169029636247 1765357949.4 +76.10259155413215 1765360804.8 +74.09564489981972 1765363660.2 +72.84565695591431 1765366515.6 +72.45343981196207 1765369371 +73.26080456714217 1765372226.4 +76.25013261704059 1765375081.7 +84.2082597936524 1765377937.1 +87.85513898071157 1765438700.4 +82.76400181347626 1765441549 +78.9792082614411 1765444397.6 +76.17820062129174 1765447246.3 +74.18088066491175 1765450094.9 +72.94051941893876 1765452943.5 +72.55425190150821 1765455792.2 +73.3794655362533 1765458640.8 +76.36652103104082 1765461489.4 +84.29349555874443 1765464338.1 +87.86703823375491 1765525159.5 +82.79883153379524 1765528001.9 +79.03329137762492 1765530844.4 +76.23823336399725 1765533686.9 +74.25648973207134 1765536529.4 +73.02207811262004 1765539371.9 +72.64770984823281 1765542214.4 +73.48027762579945 1765545056.9 +76.47328274710861 1765547899.3 +84.36910462590404 1765550741.8 +87.88034200309811 1765611615.8 +82.83593380922508 1765614452.8 +79.08002035098723 1765617289.7 +76.30053866181365 1765620126.7 +74.32247210129852 1765622963.6 +73.09995973489055 1765625800.6 +72.73294561332483 1765628637.5 +73.57146301741315 1765631474.5 +76.57041776524397 1765634311.4 +84.4350869951312 1765637148.4 +87.89591832755221 1765698069.3 +82.8648139030224 1765700901.4 +79.12079969782786 1765703733.4 +76.3509447065867 1765706565.5 +74.38477739911491 1765709397.5 +73.16594210411772 1765712229.5 +72.80487760907366 1765715061.6 +73.65302171109441 1765717893.6 +76.65197645892525 1765720725.7 +84.49144266642594 1765723557.7 +87.90554502548464 1765784520 +82.8959665519306 1765787347.8 +79.1615790446685 1765790175.5 +76.39767367994902 1765793003.3 +74.43518344388796 1765795831 +73.2259748468232 1765798658.8 +72.87085997830084 1765801486.6 +73.72495370684325 1765804314.3 +76.72163589956318 1765807142.1 +84.541848711199 1765809969.9 +87.91149465200631 1765870967.7 +82.91749250290637 1765873791.8 +79.19273169357669 1765876615.9 +76.43845302678965 1765879440.1 +74.47596279072862 1765882264.2 +73.27270382018551 1765885088.3 +72.92721564959558 1765887912.4 +73.78498644954874 1765890736.5 +76.78394119737959 1765893560.7 +84.58262805803963 1765896384.8 +87.92112134993874 1765957412.4 +82.93674589877124 1765960233.5 +79.21793471596322 1765963054.7 +76.46733312058694 1765965875.8 +74.51674213756924 1765968696.9 +73.3171602384369 1765971518 +72.97167206784697 1765974339.1 +73.83171542291105 1765977160.3 +76.83434724215265 1765979981.4 +84.6197303334695 1765982802.5 +87.92707097646041 1766043854.1 +82.95232222322534 1766046672.8 +79.24313773834976 1766049491.6 +76.49253614297348 1766052310.4 +74.54194515995577 1766055129.1 +73.3483128873451 1766057947.9 +73.00650178816593 1766060766.7 +73.87022221464078 1766063585.4 +76.87512658899328 1766066404.2 +84.64493335585603 1766069223 +87.93302060298208 1766130292.6 +82.96194892115776 1766133109.7 +79.25276443628219 1766135926.7 +76.51406209394925 1766138743.8 +74.56347111093154 1766141560.9 +73.36756628320997 1766144377.9 +73.03397736566338 1766147195 +73.8976977921382 1766150012 +76.90032961137982 1766152829.1 +84.6641867517209 1766155646.1 +87.93669767439285 1766216728 +82.96789854767943 1766219544 +79.26239113421462 1766222360 +76.52368879188167 1766225176 +74.57677488027474 1766227992 +73.38314260766407 1766230808 +73.04728113500657 1766233624 +73.91695118800307 1766236440 +76.9159059358339 1766239256 +84.67381344965332 1766242072 +87.93669767439285 1766303160.2 +82.97157561909019 1766305975.8 +79.2683407607363 1766308791.4 +76.52963841840334 1766311607 +74.58272450679641 1766314422.6 +73.38909223418574 1766317238.2 +73.05323076152824 1766320053.8 +73.92290081452474 1766322869.4 +76.92553263376635 1766325685 +84.67976307617499 1766328500.6 +87.93669767439285 1766389589.2 +82.96789854767943 1766392405.1 +79.2683407607363 1766395220.9 +76.52368879188167 1766398036.8 +74.57677488027474 1766400852.6 +73.38314260766407 1766403668.5 +73.04728113500657 1766406484.3 +73.91695118800307 1766409300.2 +76.91958300724468 1766412116 +84.67381344965332 1766414931.9 +87.93302060298208 1766476014.9 +82.96194892115776 1766478831.7 +79.25871406280386 1766481648.4 +76.51406209394925 1766484465.2 +74.56714818234231 1766487281.9 +73.37351590973164 1766490098.7 +73.03397736566338 1766492915.5 +73.90137486354898 1766495732.2 +76.90400668279058 1766498549 +84.66050968031013 1766501365.7 +87.93302060298208 1766562437.3 +82.95232222322534 1766565255.6 +79.24681480976052 1766568074 +76.49848576949515 1766570892.3 +74.54789478647744 1766573710.6 +73.35198995875587 1766576528.9 +73.0124514146876 1766579347.2 +73.87617184116243 1766582165.5 +76.87512658899328 1766584983.8 +84.64493335585603 1766587802.2 +87.92707097646041 1766648856.4 +82.9426955252929 1766651677 +79.22756141389566 1766654497.5 +76.47923237363028 1766657318 +74.52269176409091 1766660138.5 +73.32310986495857 1766662959 +72.97762169436864 1766665779.6 +73.83539249432181 1766668600.1 +76.83802431356341 1766671420.6 +84.6197303334695 1766674241.1 +87.92112134993874 1766735272.2 +82.9271192008388 1766738095.6 +79.20235839150912 1766740918.9 +76.44807972472208 1766743742.3 +74.48558948866105 1766746565.7 +73.28233051811794 1766749389.1 +72.936842347528 1766752212.5 +73.79093607607041 1766755035.8 +76.78761826879035 1766757859.2 +84.58262805803963 1766760682.6 +87.91149465200631 1766821684.6 +82.90191617845227 1766824511.5 +79.17120574260092 1766827338.3 +76.41097744929222 1766830165.2 +74.44481014182041 1766832992.1 +73.23560154475564 1766835819 +72.88048667623328 1766838645.9 +73.72863077825401 1766841472.7 +76.72758552608485 1766844299.6 +84.541848711199 1766847126.5 +87.90186795407388 1766908093.6 +82.87671315606573 1766910924.6 +79.13637602228195 1766913755.6 +76.36652103104082 1766916586.7 +74.39440409704734 1766919417.7 +73.1792458734609 1766922248.7 +72.82045393352777 1766925079.7 +73.66264840902684 1766927910.8 +76.65565353033601 1766930741.8 +84.49144266642594 1766933572.8 +87.89224125614145 1766994499.3 +82.8515101336792 1766997335 +79.09559667544133 1767000170.8 +76.31611498626775 1767003006.6 +74.33804842575262 1767005842.4 +73.11326350423374 1767008678.2 +72.74257231125726 1767011514 +73.58108971534558 1767014349.8 +76.57409483665474 1767017185.6 +84.43140992372044 1767020021.4 +87.88034200309811 1767080901.5 +82.81440785824934 1767083742.7 +79.04886770207902 1767086583.9 +76.25975931497302 1767089425.1 +74.27206605652545 1767092266.3 +73.03765443707414 1767095107.5 +72.661013617576 1767097948.8 +73.48990432373188 1767100790 +76.48290944504105 1767103631.2 +84.36542755449328 1767106472.4 +87.86703823375491 1767167300.4 +82.77957813793036 1767170147.6 +78.99846165730594 1767172994.9 +76.19377694574585 1767175842.1 +74.19645698936584 1767178689.3 +72.95609574339288 1767181536.6 +72.56982822596231 1767184383.8 +73.38909223418574 1767187231 +76.37614772897325 1767190078.3 +84.29349555874443 1767192925.5 +87.8514619093008 1767253695.9 +82.73879879108972 1767256549.8 +78.93842891460045 1767259403.7 +76.12184494999701 1767262257.6 +74.11489829568457 1767265111.4 +72.86491035177917 1767267965.3 +72.46901613641617 1767270819.2 +73.27638089159628 1767273673.1 +76.25975931497302 1767276527 +84.2082597936524 1767279380.8 +87.83588558484672 1767340088.1 +82.69206981772743 1767342949.2 +78.8724465453733 1767345810.3 +76.04623588283742 1767348671.4 +74.02966253059255 1767351532.6 +72.76409826223305 1767354393.7 +72.35630479382671 1767357254.8 +73.15404285107438 1767360116 +76.13374420304035 1767362977.1 +84.11112477551704 1767365838.2 +87.81435963387095 1767426476.8 +82.64166377295437 1767429345.8 +78.80646417614612 1767432214.8 +75.96467718915615 1767435083.8 +73.93252751245717 1767437952.8 +72.65733654616524 1767440821.8 +72.23396675330481 1767443690.7 +73.01840104120927 1767446559.7 +75.98988021154268 1767449428.7 +84.00804013086001 1767452297.7 +87.79510623800607 1767512862.3 +82.5912577281813 1767515739.7 +78.72858255387563 1767518617.1 +75.87349179754244 1767521494.6 +73.82576579638938 1767524372 +72.54094813216501 1767527249.4 +72.10200201485047 1767530126.8 +72.8745370497116 1767533004.3 +75.83866207722347 1767535881.7 +83.89165171685977 1767538759.1 +87.7735802870303 1767599244.4 +82.53490205688657 1767602130.9 +78.65297348671602 1767605017.3 +75.77635677940708 1767607903.8 +73.71305445379991 1767610790.2 +72.41266046512145 1767613676.6 +71.96041057846371 1767616563.1 +72.71736928887074 1767619449.5 +75.67554468986096 1767622336 +83.76931367633787 1767625222.4 +87.74837726464376 1767685623.3 +82.47486931418106 1767688519.3 +78.56178809510233 1767691415.3 +75.66959506333929 1767694311.4 +73.59666603979969 1767697207.4 +72.2806957266671 1767700103.4 +71.81286951555528 1767702999.5 +72.55057483009745 1767705895.5 +75.49685097804432 1767708791.5 +83.63367186647278 1767711687.6 +87.72317424225724 1767771998.8 +82.4088869449539 1767774905 +78.47427977489939 1767777811.2 +75.55915627586072 1767780717.4 +73.47065092786701 1767783623.6 +72.13910429028033 1767786529.7 +71.64975212819273 1767789435.9 +72.37188111828081 1767792342.1 +75.30485349688448 1767795248.3 +83.48018117704268 1767798154.5 +87.69797121987071 1767858371.2 +82.33695494920507 1767861288 +78.37941731187492 1767864204.9 +75.44644493327124 1767867121.8 +73.33868618941267 1767870038.7 +71.98561360085024 1767872955.5 +71.48295766941943 1767875872.4 +72.18356070853173 1767878789.3 +75.1009567626813 1767881706.2 +83.3230134162018 1767884623.1 +87.67276819748417 1767944740.3 +82.26502295345624 1767947668.4 +78.27633266721789 1767950596.5 +75.32042982133859 1767953524.6 +73.194822197915 1767956452.7 +71.82844584000937 1767959380.8 +71.3042639576028 1767962308.9 +71.98193652943948 1767965237 +74.8874333305457 1767968165.2 +83.14431970438517 1767971093.3 +87.64161554857597 1768031106.2 +82.18941388629663 1768034046.1 +78.16957095115009 1768036986 +75.19214215429501 1768039925.8 +73.04728113500657 1768042865.7 +71.66165138123607 1768045805.6 +71.11821610296464 1768048745.4 +71.76841309730388 1768051685.3 +74.658333573956 1768054625.1 +82.95232222322534 1768057565 +87.61273545477869 1768117469.1 +82.10785519261536 1768120421.2 +78.05913216367152 1768123373.3 +75.06017741584068 1768126325.4 +72.89011337416571 1768129277.6 +71.48295766941943 1768132229.7 +70.91799644017223 1768135181.8 +71.54894003864659 1768138134 +74.41593004802311 1768141086.1 +82.74842548902217 1768144038.2 +87.58158280587048 1768203828.8 +82.02629649893409 1768206793.7 +77.93679412314962 1768209758.6 +74.91858597945391 1768212723.5 +72.73294561332483 1768215688.4 +71.30058688619204 1768218653.3 +70.7104226345583 1768221618.2 +71.31021358412447 1768224583 +74.1556776425252 1768227547.9 +82.52527535895413 1768230512.8 +87.54675308555152 1768290185.5 +81.9351111073204 1768293163.6 +77.8144560826277 1768296141.8 +74.77104491654548 1768299119.9 +72.56020152802988 1768302098 +71.11226647644297 1768305076.2 +70.49094957590104 1768308054.3 +71.06553750308066 1768311032.5 +73.88579853909486 1768314010.6 +82.28059927791033 1768316988.8 +87.50965081012164 1768376539.2 +81.8439257157067 1768379531 +77.68844097069505 1768382522.9 +74.6138771557046 1768385514.8 +72.38745744273491 1768388506.6 +70.91431936876147 1768391498.5 +70.26779944583299 1768394490.4 +70.80755765269366 1768397482.2 +73.59666603979969 1768400474.1 +82.01666980100167 1768403465.9 +87.47482108980269 1768462889.9 +81.74679069757133 1768465895.9 +77.55647623224073 1768468902 +74.45670939486375 1768471908 +72.2050866595075 1768474914.1 +70.70447300803663 1768477920.1 +70.03502261783254 1768480926.2 +70.53767854926333 1768483932.2 +73.29790684257205 1768486938.3 +81.73348692822815 1768489944.3 +87.43404174296205 1768549237.7 +81.65192823454686 1768552258.4 +77.41856186726473 1768555279 +74.29359200750122 1768558299.7 +72.01081662323676 1768561320.4 +70.49094957590104 1768564341.1 +69.79034653678873 1768567361.7 +70.25817274790056 1768570382.4 +72.9812987657794 1768573403.1 +81.42282847795717 1768576423.8 +87.3932623961214 1768635582.6 +81.54516651847906 1768638618.4 +77.27697043087795 1768641654.1 +74.12084792220624 1768644689.9 +71.81881914207693 1768647725.6 +70.26779944583299 1768650761.3 +69.5360437578125 1768653797.1 +69.96904024860537 1768656832.8 +72.64770984823281 1768659868.5 +81.08696700529966 1768662904.3 +87.35248304928078 1768721924.8 +81.43840480241126 1768724976 +77.12942936796952 1768728027.2 +73.94215421038962 1768731078.4 +71.61492240787375 1768734129.7 +70.0386996892433 1768737180.9 +69.27211428090384 1768740232.1 +69.66433142485607 1768743283.3 +72.2962720511212 1768746334.5 +80.72590251025564 1768749385.7 +87.30802663102938 1768808264.2 +81.32569345982179 1768811331.3 +76.97593867853942 1768814398.4 +73.75978342716222 1768817465.5 +71.40734860225983 1768820532.6 +69.79997323472116 1768823599.7 +69.0022351774735 1768826666.8 +69.34772334806343 1768829733.9 +71.9292579295555 1768832801 +80.33000829489262 1768835868.1 +87.26129765766709 1768894600.8 +81.21525467234324 1768897684.2 +76.81877091769854 1768900767.6 +73.57146301741315 1768903851 +71.19382517012424 1768906934.4 +69.55756970878826 1768910017.8 +68.72272937611073 1768913101.2 +69.0178115019276 1768916184.5 +71.54894003864659 1768919267.9 +79.90296143062142 1768922351.3 +87.21456868430478 1768980934.9 +81.09659370323209 1768984034.9 +76.65565353033601 1768987135 +73.3794655362533 1768990235 +70.97067504005621 1768993335 +69.3069440012228 1768996435.1 +68.43359687681554 1768999535.1 +68.6819500292701 1769002635.2 +71.14709619676194 1769005735.2 +79.43513521950959 1769008835.3 +87.17011226605338 1769067266.3 +80.97425566271019 1769070383.4 +76.49253614297348 1769073500.4 +73.1792458734609 1769076617.5 +70.74525235487727 1769079734.6 +69.0489641508358 1769082851.6 +68.1348376795879 1769085968.7 +68.32683516074773 1769089085.8 +70.7259989590124 1769092202.9 +78.92652966155711 1769095319.9 +87.1197062212803 1769153595.2 +80.84824055077752 1769156729.6 +76.31979205767851 1769159864.1 +72.97762169436864 1769162998.5 +70.51247552687681 1769166133 +68.78503467392713 1769169267.4 +67.8301288558386 1769172401.9 +67.96577066570369 1769175536.3 +70.28932539680876 1769178670.8 +78.37941731187492 1769181805.2 +87.06930017650724 1769239921.6 +80.71627581232319 1769243073.7 +76.14337090097278 1769246225.9 +72.76777533364381 1769249378.1 +70.27374907235466 1769252530.3 +68.50920594397513 1769255682.4 +67.51352077904596 1769258834.6 +67.59140240131647 1769261986.8 +69.8274488122186 1769265138.9 +77.77962636230876 1769268291.1 +87.0129445052125 1769326245.5 +80.58431107386886 1769329415.8 +75.96467718915615 1769332586 +72.55425190150821 1769335756.2 +70.02907299131087 1769338926.4 +68.22970014261236 1769342096.6 +67.18955855943179 1769345266.9 +67.2051348838859 1769348437.1 +69.34772334806343 1769351607.3 +77.12942936796952 1769354777.5 +86.96253846043945 1769412567.1 +80.44639670889286 1769415755.7 +75.78230640592875 1769418944.3 +72.33705139796184 1769422132.9 +69.77477021233463 1769425321.5 +67.94651726983884 1769428510 +66.85964671329596 1769431698.6 +66.80329104200123 1769434887.2 +68.8510170431543 1769438075.8 +76.42287670233554 1769441264.4 +86.90618278914471 1769498886.4 +80.30480527250609 1769502093.7 +75.58803636965801 1769505300.9 +72.11390126789381 1769508508.2 +69.52046743335839 1769511715.4 +67.65738477054364 1769514922.6 +66.5178356141168 1769518129.9 +66.39182050218413 1769521337.1 +68.32683516074773 1769524544.4 +75.66591799192852 1769527751.6 +86.84387749132831 1769585203.4 +80.16321383611933 1769588429.6 +75.39603888849818 1769591655.8 +71.8848015113041 1769594882 +69.2624875829714 1769598108.2 +67.3563530182051 1769601334.4 +66.1686703721161 1769604560.6 +65.9684507093237 1769607786.8 +67.78339988247629 1769611013.1 +74.84297691229432 1769614239.3 +86.78384474862281 1769671518.2 +80.01567277321088 1769674763.7 +75.19809178081668 1769678009.1 +71.64975212819273 1769681254.5 +68.99260847954106 1769684500 +67.05164419445578 1769687745.4 +65.81128294848283 1769690990.9 +65.53177714712005 1769694236.3 +67.2184386532291 1769697481.7 +73.96368016136539 1769700727.2 +86.72153945080642 1769757830.9 +79.86218208378078 1769761095.8 +74.9941950466135 1769764360.8 +71.4110256736706 1769767625.7 +68.72272937611073 1769770890.6 +66.74098574418483 1769774155.6 +65.44654138202803 1769777420.5 +65.07952726046231 1769780685.5 +66.6245973301846 1769783950.4 +73.0280277391417 1769787215.4 +86.6615067081009 1769844141.4 +79.7109639494616 1769847426.1 +74.79029831241034 1769850710.8 +71.17229921914847 1769853995.5 +68.44917320126963 1769857280.2 +66.4266502225031 1769860564.9 +65.06990056252988 1769863849.6 +64.61765067587216 1769867134.3 +66.00923005616433 1769870419 +72.03234257421254 1769873703.7 +86.59552433887374 1769930449.9 +79.55152363350982 1769933754.6 +74.58272450679641 1769937059.3 +70.9239460666939 1769940364 +68.16966739990686 1769943668.7 +66.10268800288894 1769946973.5 +64.69325974303176 1769950278.2 +64.14614739334955 1769953582.9 +65.37093231486843 1769956887.6 +70.98030173798864 1769960192.3 +86.52954196964657 1770016756.4 +79.39067880125819 1770020081.4 +74.36325144813914 1770023406.3 +70.67559291423933 1770026731.3 +67.88053490061166 1770030056.2 +65.77645322816386 1770033381.2 +64.30331515419043 1770036706.1 +63.65679523126195 1770040031.1 +64.7051589960751 1770043356 +69.87190523046999 1770046680.9 +86.4635596004194 1770103061 +79.22161178737399 1770106406.4 +74.14605094459279 1770109751.8 +70.41534050874144 1770113097.2 +67.59140240131647 1770116442.6 +65.44059175550636 1770119788.1 +63.90742093882743 1770123133.5 +63.16008892635283 1770126478.9 +64.01191009978432 1770129824.3 +68.70942560676754 1770133169.7 +86.39162760467057 1770189363.7 +79.05481732860069 1770192729.8 +73.92290081452474 1770196095.9 +70.15736065835442 1770199462 +67.2963202754996 1770202828.1 +65.10105321143809 1770206194.1 +63.49962747042109 1770209560.2 +62.64553374187869 1770212926.3 +63.28610403828549 1770216292.4 +67.4942673831811 1770219658.5 +86.31601853751097 1770275664.6 +78.88207324330573 1770279051.6 +73.69747812934581 1770282438.5 +69.89343118144576 1770285825.5 +66.99528852316105 1770289212.4 +64.75924211225893 1770292599.4 +63.08815693060399 1770295986.4 +62.11767478806134 1770299373.3 +62.538772025810886 1770302760.3 +66.21907641688918 1770306147.2 +86.24408654176214 1770361963.7 +78.70337953148909 1770365371.7 +73.46470130134534 1770368779.8 +69.62722914942619 1770372187.8 +66.69057969941177 1770375595.8 +64.41007687025821 1770379003.9 +62.67073676426522 1770382411.9 +61.577916581200675 1770385819.9 +61.75661029301731 1770389228 +64.88158015278084 1770392636 +86.16847747460254 1770448261.1 +78.52100874826169 1770451690.4 +73.23192447334488 1770455119.7 +69.3536729745851 1770458548.9 +66.38587087566246 1770461978.2 +64.05268944662495 1770465407.5 +62.243689899994024 1770468836.8 +61.03080423151848 1770472266.1 +60.949245537837214 1770475695.4 +63.480374074556224 1770479124.7 +86.08691878092128 1770534556.8 +78.33863796503428 1770538007.5 +72.99319801882274 1770541458.2 +69.080116799744 1770544908.9 +66.0752124253915 1770548359.7 +63.693897506691826 1770551810.4 +61.81296596431205 1770555261.1 +60.465843002271285 1770558711.8 +60.10477850722725 1770562162.6 +62.00496344547189 1770565613.3 +86.01130971376168 1770620850.8 +78.15031755528523 1770624323.2 +72.7544715643006 1770627795.5 +68.80061099838123 1770631267.8 +65.76087690370976 1770634740.1 +63.33283301164779 1770638212.5 +61.37034277558674 1770641684.8 +59.887578003680886 1770645157.1 +59.231431382819984 1770648629.4 +60.45026667781718 1770652101.8 +85.92975102008039 1770707143.4 +77.95604751901448 1770710637.4 +72.50979548325681 1770714131.5 +68.52110519701846 1770717625.6 +65.44059175550636 1770721119.7 +62.96214181867133 1770724613.8 +60.92404251545068 1770728107.8 +59.29741375204715 1770731601.9 +58.32693160950451 1770735096 +58.81996084300288 1770738590.1 +85.84451525498837 1770793434.3 +77.76405003785464 1770796950.3 +72.25549270428057 1770800466.3 +68.23564976913401 1770803982.3 +65.11662953589219 1770807498.3 +62.589178070583955 1770811014.3 +60.471792628792954 1770814530.3 +58.69167317595931 1770818046.3 +57.38760211587008 1770821562.3 +57.09619706146397 1770825078.3 +85.75700693478544 1770879723.8 +77.56610293017316 1770883261.9 +72.007139551826 1770886799.9 +67.94651726983884 1770890338 +64.79039476116714 1770893876 +62.20886017967506 1770897414.1 +60.00764348909188 1770900952.1 +58.07857845704995 1770904490.1 +56.417119973327445 1770908028.2 +55.28352044342227 1770911566.2 +85.66582154317175 1770966011.9 +77.36220619596997 1770969572.2 +71.74688714632809 1770973132.4 +67.65143514402197 1770976692.6 +64.46048291503129 1770980252.8 +61.82854228876616 1770983813.1 +59.54208983309095 1770987373.3 +57.447634858575576 1770990933.5 +55.40953555535493 1770994493.7 +50.535598891666 1770998054 +85.57463615155804 1771052298.6 +77.15463239035604 1771055881.2 +71.4889072959411 1771059463.7 +67.3563530182051 1771063046.2 +64.12462144237378 1771066628.8 +61.442274771335576 1771070211.3 +59.068313995457444 1771073793.9 +56.807064562168776 1771077376.4 +54.367121417063466 1771080959 +51.339286575435324 1771084541.5 +85.48345075994433 1771138584 +76.94478602963122 1771142189 +71.22270526392154 1771145793.9 +67.05759382097744 1771149398.9 +63.78875996971629 1771153003.9 +61.05005762738334 1771156608.9 +58.59086108641318 1771160213.8 +56.15091794130787 1771163818.8 +53.28987755845303 1771167423.8 +43.889764956775984 1771171028.8 +85.38631574180897 1771224868.1 +76.73126259749561 1771228495.6 +70.95877578701287 1771232123.1 +66.75656206863894 1771235750.6 +63.44922142564803 1771239378.2 +60.660113038542015 1771243005.7 +58.10378147943648 1771246633.2 +55.48146755110377 1771250260.7 +52.17780397952363 1771253888.3 +28.670436571253887 1771257515.8 +85.28918072367361 1771311150.9 +76.51406209394925 1771314801.1 +70.69116923869343 1771318451.3 +66.45185324488963 1771322101.4 +63.10741032646886 1771325751.6 +60.261946268068115 1771329401.8 +57.61075224593811 1771333052 +54.80011790785633 1771336702.2 +51.03457775168603 1771340352.3 +0.0 1771344002.5 +85.18836863412747 1771397432.5 +76.29091196388121 1771401105.5 +70.41534050874144 1771404778.4 +66.14119479461866 1771408451.3 +62.76192215587892 1771412124.3 +59.86237498129435 1771415797.2 +57.11177338591807 1771419470.2 +54.10914156667647 1771423143.1 +49.85057217700779 1771426816 +0.0 1771430489 +85.08528398947044 1771483713 +76.06548927870229 1771487408.8 +70.13583470737866 1771491104.6 +65.8328088994586 1771494800.4 +62.41643398528899 1771498496.2 +59.45458151288801 1771502192 +56.60911745448727 1771505887.7 +53.4025889010425 1771509583.5 +48.63541395342135 1771513279.3 +0.0 1771516975.1 +84.98079482851354 1771569992.4 +75.83866207722347 1771573711.1 +69.8563289060159 1771577429.8 +65.52215044918762 1771581148.6 +62.06726874328829 1771584867.3 +59.04906059959258 1771588586 +56.100511896534805 1771592304.8 +52.68045991095443 1771596023.5 +47.3817489381052 1771599742.2 +0.0 1771603461 +84.86808348592407 1771656270.6 +75.60361269411212 1771660012.4 +69.57682310465313 1771663754.2 +65.20186530098422 1771667495.9 +61.71215387476592 1771671237.7 +58.63759005977548 1771674979.4 +55.58822926717157 1771678721.2 +51.948704222933934 1771682463 +46.09465871876992 1771686204.7 +0.0 1771689946.5 +84.7553721433346 1771742547.9 +75.36488623958999 1771746312.8 +69.28769060535794 1771750077.6 +64.8875297793025 1771753842.5 +61.35476645113264 1771757607.4 +58.22611951995838 1771761372.2 +55.064047384765 1771765137.1 +51.207321836980995 1771768902 +44.76906170770492 1771772666.8 +0.0 1771776431.7 +84.63898372933436 1771828824.2 +75.12615978506784 1771832612.2 +68.99855810606273 1771836400.3 +64.5672446310991 1771840188.3 +60.99965158261028 1771843976.3 +57.80869935361961 1771847764.4 +54.53986550235843 1771851552.4 +50.450363126573954 1771855340.5 +43.41231204773172 1771859128.5 +0.0 1771862916.6 +84.52259531533414 1771915099.5 +74.88148370402405 1771918910.8 +68.70942560676754 1771922722.1 +64.24100985637402 1771926533.4 +60.63858708756624 1771930344.7 +57.38760211587008 1771934155.9 +54.012006548541095 1771937967.2 +49.68377771823449 1771941778.5 +42.020732667439546 1771945589.8 +0.0 1771949401.1 +84.40025727481223 1772001373.9 +74.63313055156948 1772005208.5 +68.41434348095066 1772009043.1 +63.917047636759854 1772012877.7 +60.27752259252222 1772016712.3 +56.96423232300965 1772020546.9 +53.478197968202096 1772024381.5 +48.9052930568517 1772028216.1 +40.598000638239185 1772032050.7 +0.0 1772035885.3 +84.27791923429034 1772087647.4 +74.37882777259324 1772091505.4 +68.11331172861213 1772095363.4 +63.59081286203478 1772099221.4 +59.916458097478184 1772103079.3 +56.54313508526011 1772106937.3 +52.940712316452334 1772110795.3 +48.11350462612569 1772114653.3 +39.13448926219818 1772118511.3 +0.0 1772122369.2 +84.145954495836 1772173920.1 +74.12084792220624 1772177801.5 +67.80860290486282 1772181682.9 +63.26090101589895 1772185564.3 +59.55171653102338 1772189445.7 +56.11608822098891 1772193327.2 +52.3972770381809 1772197208.6 +47.30981694235636 1772201090 +37.63982523724898 1772204971.4 +0.4485728152469742 1772208852.8 +84.01398975738165 1772260192 +73.86059551670834 1772264096.9 +67.50984370763518 1772268001.8 +62.93098916976312 1772271906.7 +59.18470240945768 1772275811.6 +55.6890413567177 1772279716.5 +51.8478921333878 1772283621.4 +46.49282548924383 1772287526.3 +36.114008563391565 1772291431.2 +0.4618765845901653 1772295336.1 +83.88202501892734 1772346463.1 +73.59071641327802 1772350391.6 +67.19918525736423 1772354320 +62.595127697105625 1772358248.4 +58.81401121648121 1772362176.8 +55.258317421035734 1772366105.3 +51.29850722859469 1772370033.7 +45.667611854498716 1772373962.1 +34.549685097804435 1772377890.5 +0.47377583763350667 1772381819 +83.74043358254056 1772432733.5 +73.32310986495857 1772436685.5 +66.88852680709326 1772440637.5 +62.259266224448126 1772444589.5 +58.44332002350474 1772448541.5 +54.82532093024287 1772452493.5 +50.74544525239083 1772456445.6 +44.83504407693209 1772460397.6 +32.9542089833091 1772464349.6 +0.0 1772468301.6 +83.59656959104291 1772519003.3 +73.04728113500657 1772522978.9 +66.57419128541154 1772526954.5 +61.92340475179062 1772530930.1 +58.07262883052828 1772534905.7 +54.38864736803924 1772538881.4 +50.18643364966529 1772542857 +43.98689997491135 1772546832.6 +31.323903148494797 1772550808.2 +0.0 1772554783.8 +83.44535145672371 1772605272.3 +72.76777533364381 1772609271.6 +66.2598557637298 1772613270.9 +61.589815834244014 1772617270.2 +57.701937637551815 1772621269.4 +53.95565087724636 1772625268.7 +49.62147242041809 1772629268 +43.13280624636896 1772633267.2 +29.656495038250625 1772637266.5 +0.0 1772641265.8 +83.2918607672936 1772691540.8 +72.48459246087027 1772695563.7 +65.94324768693717 1772699586.7 +61.248004735064846 1772703609.7 +57.32529681805367 1772707632.6 +53.518977315042726 1772711655.6 +49.05878374628179 1772715678.6 +42.269085819894116 1772719701.5 +27.948307581165817 1772723724.5 +0.0 1772727747.4 +83.13469300645274 1772777808.7 +72.19913703298583 1772781855.3 +65.62296253873376 1772785902 +60.90251656447491 1772789948.7 +56.954605625077214 1772793995.4 +53.07635412631743 1772798042.1 +48.48787289051291 1772802088.8 +41.38978906896518 1772806135.4 +26.211240030283715 1772810182.1 +0.0 1772814228.8 +82.96789854767943 1772864076 +71.90405490716897 1772868146.4 +65.2990003191196 1772872216.8 +60.56297802040665 1772876287.3 +56.57796480557907 1772880357.7 +52.639680564113796 1772884428.1 +47.919234589854945 1772888498.6 +40.51049231803624 1772892569 +24.433393132560983 1772896639.4 +0.0 1772900709.9 +82.79883153379524 1772950342.8 +71.60897278135211 1772954437 +64.97276554439452 1772958531.2 +60.217489849816715 1772962625.4 +56.20359654119184 1772966719.6 +52.1993299304994 1772970813.8 +47.34464666267532 1772974908 +39.61561924265321 1772979002.2 +22.624393585930044 1772983096.4 +0.0 1772987190.7 +82.62608744850026 1773036609.1 +71.3042639576028 1773040727.1 +64.64285369825869 1773044845.1 +59.872001679226784 1773048963.1 +55.82695572169371 1773053081.1 +51.756706741774096 1773057199.1 +46.766381664084925 1773061317.1 +38.717069095859415 1773065435.1 +20.774614692458478 1773069553.2 +0.0 1773073671.2 +82.44371666527287 1773122875 +70.9995551338535 1773127016.8 +64.31294185212286 1773131158.6 +59.526513508636846 1773135300.4 +55.444365275673896 1773139442.3 +51.31408355304879 1773143584.1 +46.19179373690529 1773147725.9 +37.812569322543936 1773151867.7 +18.88405645214627 1773156009.6 +0.0 1773160151.4 +82.2553962555238 1773209140.4 +70.68521961217176 1773213306.1 +63.97708037946535 1773217471.7 +59.181025338046915 1773221637.4 +55.06999701128667 1773225803.1 +50.87146036432349 1773229968.7 +45.60757911179322 1773234134.4 +36.89844285129604 1773238300.1 +16.962345562925865 1773242465.7 +0.0 1773246631.4 +82.0574491478423 1773295405.5 +70.37088409049004 1773299595 +63.64121890680785 1773303784.5 +58.82958754093531 1773307974 +54.68740656526686 1773312163.5 +50.42883717559818 1773316353.1 +45.02336448668115 1773320542.6 +35.972417127004796 1773324732.1 +15.005804953386495 1773328921.6 +0.0 1773333111.1 +81.8595020401608 1773381670.2 +70.05059894228664 1773385883.6 +63.30168036273959 1773390097 +58.47814974382371 1773394310.3 +54.31303830087964 1773398523.7 +49.98253691546212 1773402737.1 +44.442826932979855 1773406950.5 +35.048663957824466 1773411163.9 +13.020384250049835 1773415377.2 +0.0 1773419590.6 +81.64597860802519 1773467934.6 +69.7206870961508 1773472171.9 +62.96214181867133 1773476409.1 +58.12898450182301 1773480646.4 +53.930447854859835 1773484883.6 +49.53991372673682 1773489120.9 +43.854935236457024 1773493358.1 +34.113011535600805 1773497595.4 +11.001538342694056 1773501832.6 +0.0 1773506069.9 +81.42650554936793 1773554198.7 +69.38850269490406 1773558459.8 +62.616653648081396 1773562721 +57.777546704711405 1773566982.1 +53.55012996395093 1773571243.3 +49.09361346660076 1773575504.4 +43.270720611344956 1773579765.5 +33.17735911337713 1773584026.7 +8.95976196806266 1773588287.8 +0.0 1773592549 +81.19967834788912 1773640462.6 +69.0489641508358 1773644747.6 +62.271165477491465 1773649032.6 +57.42243183618905 1773653317.6 +53.173489144452795 1773657602.7 +48.650990277875444 1773661887.7 +42.680556359711225 1773666172.7 +32.2380296197427 1773670457.8 +6.900136713866244 1773674742.8 +0.0 1773679027.8 +80.96462896477776 1773726726.2 +68.70942560676754 1773731035.1 +61.92340475179062 1773735344 +57.07099403907744 1773739653 +52.793171253543896 1773743961.9 +48.208367089150144 1773748270.8 +42.09039210807748 1773752579.7 +31.292750499586596 1773756888.6 +4.827207690326642 1773761197.6 +0.0 1773765506.5 +80.71627581232319 1773812989.6 +68.35798780965592 1773817322.4 +61.57423950978991 1773821655.2 +56.71587917055507 1773825988.1 +52.41653043404576 1773830320.9 +47.76206682901408 1773834653.7 +41.50250041155465 1773838986.5 +30.341521752908825 1773843319.4 +2.7483290402653693 1773847652.2 +0.0 1773851985 +80.4560234068253 1773899252.9 +68.00655001254432 1773903609.6 +61.22280171267832 1773907966.3 +56.36444137344347 1773912323 +52.03621254313686 1773916679.7 +47.31944364028879 1773921036.4 +40.91233615992091 1773925393.2 +29.392565561341957 1773929749.9 +0.6754000167257662 1773934106.6 +0.0 1773938463.3 +80.18841685850585 1773985516 +67.64548551750029 1773989896.6 +60.86768684415595 1773994277.2 +56.009326504921106 1773998657.8 +51.65957172363873 1774003038.4 +46.87682045156349 1774007419 +40.31849483687641 1774011799.7 +28.437659743253423 1774016180.3 +0.0 1774020560.9 +0.0 1774024941.5 +79.90296143062142 1774071779 +67.2807439510455 1774076183.5 +60.51257197563359 1774080588 +55.65421163639874 1774084992.5 +51.27925383272983 1774089397 +46.43646981794909 1774093801.5 +39.72833058524268 1774098206 +27.480481370053983 1774102610.5 +0.0 1774107015 +0.0 1774111419.5 +79.60420223339379 1774158041.9 +66.91005275806903 1774162470.3 +60.15150748058955 1774166898.7 +55.30277383928713 1774171327.1 +50.90261301323169 1774175755.5 +45.99384662922379 1774180183.9 +39.13816633360894 1774184612.3 +26.525575551965453 1774189040.7 +0.0 1774193469 +0.0 1774197897.4 +79.29354378312283 1774244304.8 +66.5334119385709 1774248757.1 +59.79044298554552 1774253209.4 +54.94765897076478 1774257661.6 +50.52597219373355 1774262113.9 +45.551223440498475 1774266566.2 +38.55027463708611 1774271018.4 +25.570669733876915 1774275470.7 +0.0 1774279923 +0.0 1774284375.2 +78.963631936987 1774330567.7 +66.153094047662 1774335043.8 +59.42937849050148 1774339520 +54.59254410224241 1774343996.1 +50.149331374235416 1774348472.2 +45.108600251773176 1774352948.4 +37.960110385452374 1774357424.5 +24.615763915788378 1774361900.6 +0.0 1774366376.8 +0.0 1774370852.9 +78.61814376639707 1774416830.6 +65.76087690370976 1774421330.6 +59.06463692404668 1774425830.6 +54.23515667860913 1774430330.6 +49.77496310984819 1774434830.6 +44.67192668956955 1774439330.5 +37.36994613381863 1774443830.5 +23.65490847117818 1774448330.5 +0.0 1774452830.5 +0.0 1774457330.5 +78.25112964483135 1774503093.6 +65.36498268834676 1774507617.4 +58.69762280248098 1774512141.2 +53.880041810086766 1774516665 +49.39832229035005 1774521188.9 +44.23525312736592 1774525712.7 +36.779781882184906 1774530236.5 +22.703679724500404 1774534760.3 +0.0 1774539284.2 +0.0 1774543808 +77.86486212740078 1774589356.6 +64.96313884646209 1774593904.2 +58.33288123602618 1774598451.9 +53.524926941564395 1774602999.5 +49.027631097373586 1774607547.2 +43.798579565162285 1774612094.8 +36.19556725707283 1774616642.5 +21.754723532933543 1774621190.1 +0.0 1774625737.8 +0.0 1774630285.4 +77.45934121410535 1774675619.7 +64.55761793316667 1774680191.2 +57.95991748793881 1774684762.6 +53.16981207304203 1774689334.1 +48.65693990439712 1774693905.5 +43.361906002958655 1774698477 +35.60767556055 1774703048.4 +20.803494786255772 1774707619.9 +0.0 1774712191.3 +0.0 1774716762.8 +77.02634472331248 1774761883 +64.14019776682788 1774766478.2 +57.589226294962344 1774771073.4 +52.81837427593043 1774775668.7 +48.286248711420654 1774780263.9 +42.92890951216579 1774784859.2 +35.027138006848695 1774789454.4 +19.85821566609967 1774794049.6 +0.0 1774798644.9 +0.0 1774803240.1 +76.5644681387223 1774848146.4 +63.722777600489124 1774852765.4 +57.21853510198587 1774857384.4 +52.46325940740807 1774862003.4 +47.91555751844419 1774866622.4 +42.49818557648382 1774871241.4 +34.442923381736634 1774875860.4 +18.912936545943566 1774880479.4 +0.0 1774885098.4 +0.0 1774889717.4 +76.07738853174561 1774934410 +63.292053664807156 1774939052.8 +56.84189428248774 1774943695.5 +52.11182161029646 1774948338.2 +47.548543396878486 1774952981 +42.06518908569094 1774957623.7 +33.86465838314624 1774962266.5 +17.9795566788308 1774966909.2 +0.0 1774971551.9 +0.0 1774976194.7 +75.55915627586072 1775020673.9 +62.85905717401428 1775025340.3 +56.46752601810051 1775030006.8 +51.756706741774096 1775034673.2 +47.17785220390203 1775039339.7 +41.63814222141975 1775044006.1 +33.28412082944493 1775048672.6 +17.043904256607135 1775053339 +0.0 1775058005.5 +0.0 1775062671.9 +75.00382174454595 1775106938 +62.41643398528899 1775111628.1 +56.09088519860237 1775116318.3 +51.40526894466249 1775121008.4 +46.810838082336325 1775125698.5 +41.211095357148544 1775130388.6 +32.709532902265295 1775135078.8 +16.114201460905132 1775139768.9 +0.0 1775144459 +0.0 1775149149.2 +74.41593004802311 1775193202.4 +61.97013372515293 1775197916.2 +55.71424437910424 1775202630 +51.05015407614013 1775207343.7 +46.45204614240319 1775212057.5 +40.789998119399016 1775216771.3 +32.137217530196565 1775221485.1 +15.194125363135562 1775226198.8 +0.0 1775230912.6 +0.0 1775235626.4 +73.79093607607041 1775279467.1 +61.51193421197351 1775284204.5 +55.33392648819534 1775288941.9 +50.698716279028524 1775293679.3 +46.08503202083749 1775298416.7 +40.362951255127804 1775303154.1 +31.566306674427693 1775307891.5 +14.279998891887665 1775312628.9 +0.0 1775317366.3 +0.0 1775322103.6 +73.11921313075541 1775365732.2 +61.05005762738334 1775370493.2 +54.95360859728645 1775375254.1 +50.34955103702782 1775380015.1 +45.72396752579345 1775384776.1 +39.945531088789046 1775389537 +30.997668373769727 1775394298 +13.375499118572195 1775399059 +0.0 1775403819.9 +0.0 1775408580.9 +72.40671083859978 1775451997.7 +60.58223141627152 1775456782.2 +54.57101815126663 1775461566.7 +50.00406286643789 1775466351.2 +45.368852657271084 1775471135.7 +39.53038347756118 1775475920.2 +30.43497969963343 1775480704.7 +12.47099934525673 1775485489.2 +0.0 1775490273.7 +0.0 1775495058.2 +71.64975212819273 1775538263.6 +60.10477850722725 1775543071.6 +54.19070026035774 1775547879.5 +49.65262506932629 1775552687.5 +45.01373778874872 1775557495.5 +39.11296331122241 1775562303.5 +29.870018470386228 1775567111.5 +11.582075896395363 1775571919.5 +0.0 1775576727.5 +0.0 1775581535.5 +70.84833699953431 1775624529.9 +59.62364852677222 1775629361.3 +53.80443274292717 1775634192.8 +49.30713689873636 1775639024.2 +44.65635036511545 1775643855.7 +38.701492771405306 1775648687.1 +29.31100686766069 1775653518.5 +10.696829518944757 1775658350 +0.0 1775663181.4 +0.0 1775668012.9 +70.00019289751357 1775710796.7 +59.13061929327385 1775715651.5 +53.4181652254966 1775720506.4 +48.96164872814643 1775725361.2 +44.307185123114756 1775730216.1 +38.2900222315882 1775735070.9 +28.757944891456823 1775739925.7 +9.823482394537491 1775744780.6 +0.0 1775749635.4 +0.0 1775754490.3 +69.10899689354129 1775797064 +58.631640433253814 1775801942.2 +53.03784733458771 1775806820.4 +48.61616055755648 1775811698.6 +43.95574732600315 1775816576.8 +37.88450131829278 1775821455 +28.20855998666372 1775826333.1 +8.953812341540988 1775831211.3 +0.0 1775836089.5 +0.0 1775840967.7 +68.17929409783929 1775883331.9 +58.12303487530134 1775888233.4 +52.651579817157135 1775893134.8 +48.274349458377316 1775898036.3 +43.60430952889155 1775902937.8 +37.48265747640811 1775907839.3 +27.65917508187062 1775912740.8 +8.099718612998583 1775917642.2 +0.0 1775922543.7 +0.0 1775927445.2 +67.21476158181834 1775969600.3 +57.61075224593811 1775974525.1 +52.26531229972657 1775979449.8 +47.934810914309054 1775984374.5 +43.25882135830162 1775989299.2 +37.08081363452344 1775994223.9 +27.115739803599194 1775999148.6 +7.25157451097785 1776004073.3 +0.0 1776008998 +0.0 1776013922.7 +66.21312679036751 1776055869.4 +57.092519990053205 1776060817.3 +51.87309515577433 1776065765.2 +47.589322743719116 1776070713 +42.919282814233355 1776075660.9 +36.68491941916044 1776080608.8 +26.57598159673852 1776085556.7 +6.413057106889548 1776090504.6 +0.0 1776095452.4 +0.0 1776100400.3 +65.19223860305179 1776142139.1 +56.56238848112497 1776147110.1 +51.48682763834376 1776152081.1 +47.253461271061624 1776157052.1 +42.57974427016509 1776162023.1 +36.28675264868653 1776166994 +26.04444557151042 1776171965 +5.5901160272553465 1776176936 +0.0 1776181907 +0.0 1776186878 +64.14982446476033 1776228409.5 +56.02490282937521 1776233403.5 +51.100560120913194 1776238397.6 +46.917599798404126 1776243391.6 +42.23793317098591 1776248385.6 +35.8968080598452 1776253379.6 +25.51431406258218 1776258373.6 +4.776801645553578 1776263367.6 +0.0 1776268361.6 +0.0 1776273355.7 +63.088156930604 1776314680.7 +55.48514462251453 1776319697.6 +50.71429260348262 1776324714.6 +46.58401088085752 1776329731.6 +41.90207169832841 1776334748.5 +35.51054054241463 1776339765.5 +24.986455108764847 1776344782.5 +3.97311396178424 1776349799.5 +0.0 1776354816.4 +0.0 1776359833.4 +62.010913071993556 1776400952.5 +54.93208264631067 1776405992.4 +50.324348014641295 1776411032.2 +46.24814940820002 1776416072.1 +41.57215985219258 1776421111.9 +35.12427302498406 1776426151.8 +24.468222852879947 1776431191.6 +3.1813255310582416 1776436231.5 +0.0 1776441271.3 +0.0 1776446311.2 +60.91809288892901 1776487225.2 +54.373071043585135 1776492287.8 +49.938080497210734 1776497350.5 +45.918237562064185 1776502413.1 +41.24224800605675 1776507475.8 +34.743955134075165 1776512538.4 +23.955940223516716 1776517601.1 +2.3991637982646754 1776522663.7 +0.0 1776527726.4 +0.0 1776532789 +59.809696381410376 1776573498.7 +53.80810981433793 1776578584 +49.55181297978016 1776583669.4 +45.588325715928356 1776588754.8 +40.91233615992091 1776593840.1 +34.36731431457704 1776598925.5 +23.44138503904258 1776604010.8 +1.6266287634035397 1776609096.2 +0.0 1776614181.6 +0.0 1776619266.9 +58.687996104548546 1776659773 +53.23947151367996 1776664881 +49.16554546234959 1776669989 +45.26209094120328 1776675097 +40.592051011717516 1776680204.9 +33.9906734950789 1776685312.9 +22.938729107611778 1776690420.9 +0.8733471244072656 1776695528.9 +0.0 1776700636.9 +0.0 1776705744.8 +57.544769876710944 1776746048.3 +52.66120651508957 1776751178.8 +48.77332831839736 1776756309.3 +44.9418057929999 1776761439.8 +40.27176586351411 1776766570.3 +33.625931928624105 1776771700.8 +22.43975024759174 1776776831.3 +0.12828766704357272 1776781961.8 +0.0 1776787092.3 +0.0 1776792222.8 +56.380017697897564 1776832324.5 +52.07104226345582 1776837477.4 +48.393010427488456 1776842630.3 +44.61557101827482 1776847783.2 +39.95148071531071 1776852936.2 +33.258917807058396 1776858089.1 +21.94304394268261 1776863242 +0.0 1776868394.9 +0.0 1776873547.8 +0.0 1776878700.7 +55.201961749741 1776918601.7 +51.48087801182209 1776923776.9 +48.00674291005789 1776928952.1 +44.29755842518233 1776934127.4 +39.64082226503974 1776939302.6 +32.89785331201437 1776944477.8 +21.453691780595 1776949653 +0.0 1776954828.3 +0.0 1776960003.5 +0.0 1776965178.7 +54.00237985060866 1777004879.9 +50.88108706225592 1777010077.3 +47.62047539262732 1777015274.7 +43.98095034838968 1777020472.1 +39.32648674335801 1777025669.6 +32.542738443492006 1777030867 +20.972561800139978 1777036064.4 +0.0 1777041261.8 +0.0 1777046459.2 +0.0 1777051656.7 +52.78722162702223 1777091159.1 +50.27761904127899 1777096378.6 +47.23788494660752 1777101598.1 +43.666614826707956 1777106817.6 +39.02177791960871 1777112037.1 +32.187623574969635 1777117256.6 +20.495108891095708 1777122476.1 +0.0 1777127695.6 +0.0 1777132915.1 +0.0 1777138134.6 +51.54686038104926 1777177439.5 +49.668201393780386 1777182680.9 +46.85756705569863 1777187922.4 +43.35595637643698 1777193163.8 +38.717069095859415 1777198405.3 +31.836185777858027 1777203646.7 +20.027282679983873 1777208888.2 +0.0 1777214129.6 +0.0 1777219371.1 +0.0 1777224612.5 +50.287245739211414 1777263721 +49.05283411976012 1777268984.2 +46.477249164789725 1777274247.5 +43.051247552687684 1777279510.8 +38.41603734352087 1777284774.1 +31.490697607268096 1777290037.3 +19.55945646887204 1777295300.6 +0.0 1777300563.9 +0.0 1777305827.1 +0.0 1777311090.4 +49.006105146397815 1777350003.6 +48.427840147807416 1777355288.6 +46.09465871876992 1777360573.5 +42.74058910241671 1777365858.5 +38.12322777281491 1777371143.5 +31.154836134610594 1777376428.4 +19.101256955692634 1777381713.4 +0.0 1777386998.3 +0.0 1777392283.3 +0.0 1777397568.2 +43.88013825884356 1777436287.5 +47.80284617585472 1777441594 +45.720290454382685 1777446900.5 +42.44182990518908 1777452207 +37.82814564699804 1777457513.5 +30.81897466195309 1777462820 +18.649007069034898 1777468126.5 +0.0 1777473433 +0.0 1777478739.5 +0.0 1777484045.9 +46.380114146654364 1777522572.7 +47.17190257738036 1777527900.6 +45.34364963488455 1777533228.5 +42.14079815285054 1777538556.3 +37.539013147702846 1777543884.2 +30.48906281581726 1777549212.1 +18.208656435420504 1777554539.9 +0.0 1777559867.8 +0.0 1777565195.7 +0.0 1777570523.6 +45.032991184613586 1777608859.2 +46.53728190749522 1777614208.3 +44.96700881538642 1777619557.4 +41.84798858214459 1777624906.5 +37.2535577198184 1777630255.6 +30.159150969681424 1777635604.7 +17.766033246695198 1777640953.8 +0.0 1777646302.9 +0.0 1777651652 +0.0 1777657001.1 +43.66066520018629 1777695147 +45.89671161108841 1777700517.2 +44.596317622409956 1777705887.3 +41.55290645632771 1777711257.5 +36.974051918455636 1777716627.6 +29.838865821478024 1777721997.8 +17.33303675590233 1777727367.9 +0.0 1777732738.1 +0.0 1777738108.3 +0.0 1777743478.4 +35.27776371441417 1777781436.2 +45.256141314681614 1777786827.3 +44.22562642943349 1777792218.3 +41.267451028443276 1777797609.4 +36.69454611709287 1777803000.4 +29.524530299796293 1777808391.4 +16.911939518152806 1777813782.5 +0.0 1777819173.5 +0.0 1777824564.6 +0.0 1777829955.6 +38.12690484422567 1777867726.9 +44.61189394686406 1777873138.7 +43.85861230786779 1777878550.4 +40.97831852914808 1777883962.1 +36.42466701366253 1777889373.9 +29.213871849525322 1777894785.6 +16.490842280403275 1777900197.4 +0.0 1777905609.1 +0.0 1777911020.8 +0.0 1777916432.6 +36.34310831998127 1777954019.1 +43.96537402393558 1777959451.3 +43.49754781282375 1777964883.6 +40.69881272778531 1777970315.8 +36.1547879102322 1777975748.1 +28.90916302577602 1777981180.3 +16.07937174058617 1777986612.6 +0.0 1777992044.8 +0.0 1777997477.1 +0.0 1778002909.3 +34.992308286529735 1778040312.8 +43.31517702959635 1778045765.3 +43.13280624636895 1778051217.9 +40.41930692642254 1778056670.5 +35.89085843332353 1778062123 +28.60445420202672 1778067575.6 +15.6775278987015 1778073028.1 +0.0 1778078480.7 +0.0 1778083933.3 +0.0 1778089385.8 +24.60981428926671 1778126608.1 +42.664980035257116 1778132080.7 +42.77769137784658 1778137553.4 +40.1494278229922 1778143026 +35.63287858293654 1778148498.7 +28.309372076209854 1778153971.4 +15.281633683338502 1778159444 +0.0 1778164916.7 +0.0 1778170389.4 +0.0 1778175862 +21.962297338547472 1778212905 +42.01478304091788 1778218397.5 +42.42625358073498 1778223890.1 +39.87954871956188 1778229382.6 +35.378575803960295 1778234875.2 +28.02023957691465 1778240367.7 +14.889416539386263 1778245860.3 +0.0 1778251352.8 +0.0 1778256845.4 +0.0 1778262337.9 +22.12541472591001 1778299203.5 +41.36458604657865 1778304715.8 +42.071138712212615 1778310228 +39.61194217124245 1778315740.2 +35.12427302498406 1778321252.4 +27.734784149030226 1778326764.6 +14.509098648477371 1778332276.8 +0.0 1778337789 +0.0 1778343301.2 +0.0 1778348813.4 +0.0 1778385503.9 +40.71438905223942 1778391035.5 +41.725650541622684 1778396567.1 +39.35168976574454 1778402098.8 +34.87959694394028 1778407630.4 +27.455278347667452 1778413162 +14.13245782897923 1778418693.7 +0.0 1778424225.3 +0.0 1778429756.9 +0.0 1778435288.6 +0.0 1778471805.9 +40.06786912931094 1778477356.8 +41.380162371032746 1778482907.6 +39.09370991535755 1778488458.4 +34.637193418007364 1778494009.2 +27.18172217282636 1778499560 +13.765443707413523 1778505110.8 +0.0 1778510661.6 +0.0 1778516212.4 +0.0 1778521763.2 +0.0 1778558109.9 +39.42362176149338 1778563679.6 +41.044300898375255 1778569249.3 +38.843084207792074 1778574819.1 +34.402144034896 1778580388.8 +26.91184306939602 1778585958.5 +13.410328838891157 1778591528.3 +0.0 1778597098 +0.0 1778602667.7 +0.0 1778608237.5 +0.0 1778644415.6 +38.7771018385649 1778650004 +40.70843942571774 1778655592.4 +38.594731055337505 1778661180.8 +34.16936720689554 1778666769.2 +26.647913592487356 1778672357.6 +13.055213970368799 1778677946 +0.0 1778683534.4 +0.0 1778689122.8 +0.0 1778694711.2 +0.0 1778730723.4 +38.1365315421581 1778736330.1 +40.37852757958191 1778741936.9 +38.350054974293705 1778747543.7 +33.94026745030583 1778753150.4 +26.38993374210036 1778758757.2 +12.713402871189626 1778764364 +0.0 1778769970.8 +0.0 1778775577.5 +0.0 1778781184.3 +0.0 1778817033 +37.50191087227297 1778822657.9 +40.05229280485684 1778828282.8 +38.11132851977157 1778833907.6 +33.72079439164857 1778839532.5 +26.13930803453488 1778845157.4 +12.37386432712136 1778850782.3 +0.0 1778856407.1 +0.0 1778862032 +0.0 1778867656.9 +0.0 1778903344.7 +36.873239828909504 1778908987.4 +39.73428021176435 1778914630.1 +37.87855169177111 1778920272.7 +33.5035938881022 1778925915.4 +25.896904508601985 1778931558.1 +12.04762955239629 1778937200.7 +0.0 1778942843.4 +0.0 1778948486.1 +0.0 1778954128.8 +0.0 1778989658.5 +36.24824585695681 1778995318.7 +39.4176721349717 1779000978.8 +37.6494519351814 1779006639 +33.29374752737736 1779012299.2 +25.652228427558182 1779017959.3 +11.729616959303797 1779023619.5 +0.0 1779029279.6 +0.0 1779034939.8 +0.0 1779040599.9 +0.0 1779075974.4 +35.62692895641487 1779081651.7 +39.10928623981165 1779087329.1 +37.42630180511337 1779093006.4 +33.08617372176343 1779098683.7 +25.423128670968477 1779104361.1 +11.418958509032828 1779110038.4 +0.0 1779115715.7 +0.0 1779121393.1 +0.0 1779127070.4 +0.0 1779162292.5 +35.01156168239459 1779167986.7 +38.802304860951445 1779173680.8 +37.21277837297777 1779179375 +32.88227698756027 1779185069.2 +25.19402891437878 1779190763.3 +11.114249685283529 1779196457.5 +0.0 1779202151.7 +0.0 1779207845.9 +0.0 1779213540 +0.0 1779248612.8 +34.41177073282843 1779254323.5 +38.503545663723806 1779260034.1 +36.99925494084217 1779265744.8 +32.69027950640044 1779271455.5 +24.970878784310745 1779277166.1 +10.819167559466658 1779282876.8 +0.0 1779288587.5 +0.0 1779294298.2 +0.0 1779300008.8 +0.0 1779334935.3 +33.81425233837318 1779340662.2 +38.214413164428606 1779346389 +36.79168113522824 1779352115.8 +32.4960094701297 1779357842.6 +24.757355352175146 1779363569.5 +10.53371213158222 1779369296.3 +0.0 1779375023.1 +0.0 1779380749.9 +0.0 1779386476.7 +0.0 1779421260.2 +33.2277651581502 1779427002.8 +37.92895773654417 1779432745.4 +36.58778440102507 1779438488.1 +32.31363868690229 1779444230.7 +24.54978154656121 1779449973.3 +10.254206330219453 1779455715.9 +0.0 1779461458.5 +0.0 1779467201.1 +0.0 1779472943.7 +0.0 1779507587.5 +32.6495001595598 1779513345.5 +37.6494519351814 1779519103.5 +36.38983729334357 1779524861.5 +32.131267903674896 1779530619.5 +24.345884812358044 1779536377.6 +9.986599781900027 1779542135.6 +0.0 1779547893.6 +0.0 1779553651.6 +0.0 1779559409.6 +0.0 1779593917.2 +32.0845389303126 1779599690.2 +37.37957283175106 1779605463.2 +36.20151688359451 1779611236.3 +31.95852381837993 1779617009.3 +24.147937704676547 1779622782.3 +9.72634737640212 1779628555.4 +0.0 1779634328.4 +0.0 1779640101.4 +0.0 1779645874.5 +0.0 1779680249.3 +31.53147695410873 1779686037 +37.111966283431634 1779691824.6 +36.01319647384543 1779697612.3 +31.79172935960663 1779703399.9 +23.959617294927476 1779709187.6 +9.472044597425887 1779714975.2 +0.0 1779720762.9 +0.0 1779726550.5 +0.0 1779732338.2 +0.0 1779766584 +30.993991302358964 1779772385.9 +36.8576635044554 1779778187.7 +35.834502762028805 1779783989.6 +31.628611972244094 1779789791.4 +23.77724651170008 1779795593.3 +9.233318142903753 1779801395.2 +0.0 1779807197 +0.0 1779812998.9 +0.0 1779818800.7 +0.0 1779852921.2 +30.463859793430725 1779858736.9 +36.607037796889934 1779864552.5 +35.66175867673384 1779870368.2 +31.471444211403234 1779876183.8 +23.598552799883446 1779881999.5 +9.000541314903293 1779887815.1 +0.0 1779893630.8 +0.0 1779899446.4 +0.0 1779905262.1 +0.0 1779939261 +29.94562753754583 1779945090.1 +36.36463427095703 1779950919.1 +35.49496421796053 1779956748.1 +31.317953521973127 1779962577.1 +23.431758341110147 1779968406.1 +8.771441558313589 1779974235.1 +0.0 1779980064.1 +0.0 1779985893.1 +0.0 1779991722.1 +0.0 1780025603.5 +29.448921232636696 1780031445.4 +36.12958488784567 1780037287.3 +35.337796457119666 1780043129.3 +31.176362085586362 1780048971.2 +23.268640953747614 1780054813.1 +8.557918126177986 1780060655 +0.0 1780066496.9 +0.0 1780072338.8 +0.0 1780078180.7 +0.0 1780111948.7 +28.965518697070756 1780117803.1 +35.90275768636687 1780123657.4 +35.180628696278795 1780129511.8 +31.03249809408869 1780135366.1 +23.111473192906743 1780141220.5 +8.350344320564057 1780147074.9 +0.0 1780152929.2 +0.0 1780158783.6 +0.0 1780164638 +0.0 1780198296.6 +28.49174285943725 1780204163 +35.6832846277096 1780210029.3 +35.033087633370364 1780215895.6 +30.900533355634355 1780221762 +22.96393212999831 1780227628.3 +8.150124657771647 1780233494.7 +0.0 1780239361 +0.0 1780245227.4 +0.0 1780251093.7 +0.0 1780284647.3 +28.039492972779517 1780290525.1 +35.475710822095664 1780296403 +34.89149619698362 1780302280.8 +30.774518243701692 1780308158.7 +22.822340693611544 1780314036.5 +7.964076803133489 1780319914.4 +0.0 1780325792.2 +0.0 1780331670.1 +0.0 1780337547.9 +0.0 1780371000.8 +27.602819410575886 1780376889.6 +35.2718140878925 1780382778.5 +34.7535818320076 1780388667.4 +30.652180203179793 1780394556.2 +22.68442632863554 1780400445.1 +7.779433464795181 1780406334 +0.0 1780412222.8 +0.0 1780418111.7 +0.0 1780424000.6 +0.0 1780457357.1 +27.18767179934803 1780463256.5 +35.083493678143434 1780469155.9 +34.625294164964025 1780475055.3 +30.535791789179562 1780480954.6 +22.55246159018121 1780486854 +7.612639006021885 1780492753.4 +0.0 1780498652.8 +0.0 1780504552.2 +0.0 1780510451.5 +0.0 1780543716.3 +26.78582795746335 1780549625.7 +34.90112289491604 1780555535.1 +34.499279053031366 1780561444.5 +30.42903007311176 1780567353.9 +22.430123549659307 1780573263.3 +7.4495216186593485 1780579172.6 +0.0 1780585082 +0.0 1780590991.4 +0.0 1780596900.8 +0.0 1780630078.5 +26.403237511443553 1780635997.3 +34.72837880962106 1780641916.2 +34.386567710441895 1780647835.1 +30.32226835704396 1780653753.9 +22.319684762180746 1780659672.8 +7.2983034843401535 1780665591.7 +0.0 1780671510.6 +0.0 1780677429.4 +0.0 1780683348.3 +0.0 1780716443.5 +26.04444557151042 1780722371.4 +34.56526142225854 1780728299.2 +34.27612892296334 1780734227 +30.22513333890859 1780740154.8 +22.206973419591275 1780746082.7 +7.154439492842481 1780752010.5 +0.0 1780757938.3 +0.0 1780763866.1 +0.0 1780769794 +0.0 1780802811.6 +25.702634472331244 1780808747.8 +34.41177073282843 1780814684.1 +34.1730442783063 1780820620.3 +30.13394794729489 1780826556.6 +22.10983840145591 1780832492.8 +7.0224747543881465 1780838429 +0.0 1780844365.3 +0.0 1780850301.5 +0.0 1780856237.8 +0.0 1780889182.6 +25.382349324127848 1780895126.7 +34.26650222503091 1780901070.8 +34.078181815281845 1780907015 +30.052389253613626 1780912959.1 +22.012703383320538 1780918903.2 +6.900136713866244 1780924847.3 +0.0 1780930791.4 +0.0 1780936735.5 +0.0 1780942679.6 +0.0 1780975556.7 +25.083590126900216 1780981508.1 +34.13226493146567 1780987459.5 +33.9906734950789 1780993411 +29.97083055993236 1780999362.4 +21.92746761822851 1781005313.8 +6.783748299866012 1781011265.2 +0.0 1781017216.7 +0.0 1781023168.1 +0.0 1781029119.5 +0.0 1781061933.8 +24.807761396948212 1781067892 +34.006249819533004 1781073850.1 +33.909114801397635 1781079808.3 +29.901171119294432 1781085766.5 +21.845908924547242 1781091724.6 +6.676986583798212 1781097682.8 +0.0 1781103641 +0.0 1781109599.2 +0.0 1781115557.3 +0.0 1781148313.9 +24.54978154656121 1781154278.3 +33.89353847694353 1781160242.6 +33.83350573423804 1781166207 +29.835188750067264 1781172171.3 +21.773976928798408 1781178135.7 +6.585801192184514 1781184100 +0.0 1781190064.4 +0.0 1781196028.7 +0.0 1781201993.1 +0.0 1781234697.1 +24.320681789971513 1781240667.1 +33.79272638739741 1781246637 +33.76752336501087 1781252607 +29.77288345225086 1781258576.9 +21.70799455957124 1781264546.9 +6.500565427092485 1781270516.9 +0.0 1781276486.8 +0.0 1781282456.8 +0.0 1781288426.7 +0.0 1781321083.4 +24.107158357835914 1781327058.4 +33.69559136926204 1781333033.4 +33.70749062230538 1781339008.3 +29.722477407477793 1781344983.3 +21.65391144338741 1781350958.3 +6.42268380482198 1781356933.3 +0.0 1781362908.2 +0.0 1781368883.2 +0.0 1781374858.2 +0.0 1781407472.8 +23.924787574608512 1781413452.2 +33.614032675580766 1781419431.6 +33.65113495101064 1781425411 +29.675748434115487 1781431390.4 +21.601232843503436 1781437369.8 +6.356701435594813 1781443349.2 +0.0 1781449328.6 +0.0 1781455308 +0.0 1781461287.4 +0.0 1781493865.2 +23.76167018724598 1781499848.4 +33.54437323494283 1781505831.7 +33.60440597764833 1781511814.9 +29.634969087274854 1781517798.2 +21.556776425252043 1781523781.4 +6.300345764300077 1781529764.7 +0.0 1781535747.9 +0.0 1781541731.2 +0.0 1781547714.4 +0.0 1781580260.7 +23.62007875085921 1781586247.2 +33.48206793712643 1781592233.7 +33.569576257329366 1781598220.2 +29.60013936695589 1781604206.7 +21.51967414982217 1781610193.1 +6.255889346048683 1781616179.6 +0.0 1781622166.1 +0.0 1781628152.6 +0.0 1781634139.1 +0.0 1781666659.3 +23.503690336858984 1781672648.5 +33.43166189235336 1781678637.6 +33.534746537010406 1781684626.7 +29.57493634456936 1781690615.8 +21.490794056024875 1781696604.9 +6.215109999208049 1781702594.1 +0.0 1781708583.2 +0.0 1781714572.3 +0.0 1781720561.4 +0.0 1781753061 +23.416182016656045 1781759052.2 +33.3968321720344 1781765043.3 +33.513220586034635 1781771034.5 +29.555682948704494 1781777025.6 +21.469268105049103 1781783016.8 +6.189906976821515 1781789007.9 +0.0 1781794999.1 +0.0 1781800990.2 +0.0 1781806981.4 +0.0 1781839465.7 +23.35019964742888 1781845458.3 +33.3656795231262 1781851450.9 +33.49396719016977 1781857443.5 +29.54010662425039 1781863436.1 +21.453691780595 1781869428.6 +6.174330652367414 1781875421.2 +0.0 1781881413.8 +0.0 1781887406.4 +0.0 1781893399 +0.0 1781925873.5 +23.303470674066578 1781931866.9 +33.3501031986721 1781937860.3 +33.48206793712643 1781943853.7 +29.534156997728722 1781949847.1 +21.450014709184238 1781955840.5 +6.164703954434982 1781961833.9 +0.0 1781967827.3 +0.0 1781973820.7 +0.0 1781979814.1 +0.0 1782012284.3 +23.290166904723385 1782018277.9 +33.34047650073967 1782024271.5 +33.48206793712643 1782030265.2 +29.530479926317962 1782036258.8 +21.450014709184238 1782042252.4 +6.164703954434982 1782048246 +0.0 1782054239.6 +0.0 1782060233.2 +0.0 1782066226.9 +0.0 1782098698.1 +23.29384397613415 1782104691.3 +33.34642612726134 1782110684.6 +33.48206793712643 1782116677.8 +29.534156997728722 1782122671 +21.453691780595 1782128664.2 +6.174330652367414 1782134657.4 +0.0 1782140650.7 +0.0 1782146643.9 +0.0 1782152637.1 +0.0 1782185114.9 +23.33094625156402 1782191107.1 +33.36200245171544 1782197099.3 +33.497644261580525 1782203091.5 +29.549733322182824 1782209083.8 +21.469268105049103 1782215076 +6.195856603343185 1782221068.2 +0.0 1782227060.4 +0.0 1782233052.6 +0.0 1782239044.8 +0.0 1782271534.6 +23.385029367747844 1782277525.2 +33.39088254551273 1782283515.8 +33.513220586034635 1782289506.4 +29.565309646636923 1782295497.1 +21.490794056024875 1782301487.7 +6.22473669714048 1782307478.3 +0.0 1782313468.9 +0.0 1782319459.5 +0.0 1782325450.1 +0.0 1782357957.3 +23.466588061429114 1782363945.7 +33.427984820942605 1782369934.1 +33.53842360842116 1782375922.5 +29.590512669023457 1782381910.8 +21.51967414982217 1782387899.2 +6.265516043981114 1782393887.6 +0.0 1782399876 +0.0 1782405864.4 +0.0 1782411852.8 +0.0 1782444382.8 +23.573349777496915 1782450368.4 +33.472441239194 1782456354 +33.57325332874013 1782462339.5 +29.62166531793166 1782468325.1 +21.556776425252043 1782474310.7 +6.315922088754178 1782480296.3 +0.0 1782486281.9 +0.0 1782492267.4 +0.0 1782498253 +0.0 1782530811.2 +23.70163744454048 1782536793.3 +33.534746537010406 1782542775.5 +33.614032675580766 1782548757.7 +29.656495038250625 1782554739.8 +21.601232843503436 1782560722 +6.378227386570585 1782566704.2 +0.0 1782572686.3 +0.0 1782578668.5 +0.0 1782584650.7 +0.0 1782617242.3 +23.858805205381348 1782623220.5 +33.60440597764833 1782629198.7 +33.66076164894307 1782635176.8 +29.703224011612928 1782641155 +21.64796181686574 1782647133.1 +6.444209755797751 1782653111.3 +0.0 1782659089.5 +0.0 1782665067.6 +0.0 1782671045.8 +0.0 1782703676.3 +24.035226362087077 1782709649.8 +33.6859646713296 1782715623.4 +33.717117320237804 1782721597 +29.753630056385994 1782727570.5 +21.70799455957124 1782733544.1 +6.5198188229573475 1782739517.7 +0.0 1782745491.2 +0.0 1782751464.8 +0.0 1782757438.4 +0.0 1782790112.9 +24.235446024879483 1782796081.3 +33.7771500629433 1782802049.7 +33.7771500629433 1782808018.1 +29.80998572768073 1782813986.5 +21.773976928798408 1782819954.8 +6.611004214571046 1782825923.2 +0.0 1782831891.6 +0.0 1782837860 +0.0 1782843828.4 +0.0 1782876552.2 +24.458596154947514 1782882514.8 +33.880234707600344 1782888477.5 +33.84908205869214 1782894440.1 +29.870018470386228 1782900402.7 +21.845908924547242 1782906365.4 +6.708139232706415 1782912328 +0.0 1782918290.6 +0.0 1782924253.3 +0.0 1782930215.9 +0.0 1782962994.1 +24.70694930740208 1782968950.4 +33.9906734950789 1782974906.7 +33.92469112585173 1782980863 +29.94195046613506 1782986819.3 +21.92151799170684 1782992775.6 +6.814900948774215 1782998731.9 +0.0 1783004688.2 +0.0 1783010644.6 +0.0 1783016600.9 +0.0 1783049438.5 +24.976828410832415 1783055387.9 +34.11301153560081 1783061337.4 +34.006249819533004 1783067286.8 +30.01755953329466 1783073236.2 +22.009026311909775 1783079185.6 +6.931289362774448 1783085135 +0.0 1783091084.5 +0.0 1783097033.9 +0.0 1783102983.3 +0.0 1783135885.4 +25.265960910127617 1783141827.4 +34.24497627405514 1783147769.4 +34.0974352111467 1783153711.4 +30.099118226975925 1783159653.4 +22.100211703523478 1783165595.3 +7.05362740329635 1783171537.3 +0.0 1783177479.3 +0.0 1783183421.3 +0.0 1783189363.2 +0.0 1783222334.8 +25.580296431809344 1783228268.8 +34.386567710441895 1783234202.8 +34.19457022928207 1783240136.8 +30.184353992067955 1783246070.7 +22.201023793069606 1783252004.7 +7.191541768272353 1783257938.7 +0.0 1783263872.7 +0.0 1783269806.7 +0.0 1783275740.7 +0.0 1783308786.5 +25.910208277945177 1783314712 +34.540058399872 1783320637.4 +34.2953823188282 1783326562.9 +30.27553938368166 1783332488.3 +22.307785509137407 1783338413.8 +7.333133204659117 1783344339.3 +0.0 1783350264.7 +0.0 1783356190.2 +0.0 1783362115.6 +0.0 1783395240.5 +26.267595701578458 1783401156.9 +34.703175787234535 1783407073.3 +34.40809366141767 1783412989.7 +30.378624028338695 1783418906.1 +22.420496851726877 1783424822.5 +7.484351338978311 1783430738.9 +0.0 1783436655.3 +0.0 1783442571.7 +0.0 1783448488.1 +0.0 1783481696.8 +26.638286894554923 1783487603.6 +34.8759198725295 1783493510.4 +34.5244820754179 1783499417.3 +30.485385744406496 1783505324.1 +22.542834892248777 1783511230.9 +7.647468726340848 1783517137.7 +0.0 1783523044.5 +0.0 1783528951.4 +0.0 1783534858.2 +0.0 1783568155.2 +27.028231483396254 1783574052 +35.05234102923523 1783579948.7 +34.646820115939796 1783585845.4 +30.595824531885057 1783591742.2 +22.66885000418144 1783597638.9 +7.816535740225055 1783603535.6 +0.0 1783609432.3 +0.0 1783615329.1 +0.0 1783621225.8 +0.0 1783654615.8 +27.441974578324263 1783660501.9 +35.24661106550597 1783666388.1 +34.77283522787246 1783672274.2 +30.714485500996197 1783678160.3 +22.800814742635772 1783684046.5 +7.998906523452453 1783689932.6 +0.0 1783695818.8 +0.0 1783701704.9 +0.0 1783707591 +0.0 1783741078.4 +27.872698514006217 1783746953.4 +35.44455817318747 1783752828.5 +34.910749592848475 1783758703.5 +30.840500612928864 1783764578.6 +22.944678734133447 1783770453.7 +8.18722693320152 1783776328.7 +0.0 1783782203.8 +0.0 1783788078.8 +0.0 1783793953.9 +0.0 1783827542.9 +28.31532170273152 1783833406.4 +35.65213197880141 1783839269.9 +35.05234102923523 1783845133.4 +30.966515724861523 1783850996.9 +23.08994724193097 1783856860.4 +8.38517404088302 1783862723.9 +0.0 1783868587.4 +0.0 1783874450.9 +0.0 1783880314.4 +0.0 1783914009.3 +28.77719828732169 1783919860.8 +35.865655410937 1783925712.3 +35.20583171866533 1783931563.8 +31.104430089837525 1783937415.3 +23.243437931361083 1783943266.7 +8.58907077508619 1783949118.2 +0.0 1783954969.7 +0.0 1783960821.2 +0.0 1783966672.7 +0.0 1784000477.6 +29.254651196365952 1784006316.6 +36.08880554100503 1784012155.6 +35.357049852984524 1784017994.6 +31.246021526224293 1784023833.6 +23.406555318723615 1784029672.6 +8.80259420722179 1784035511.6 +0.0 1784041350.6 +0.0 1784047189.6 +0.0 1784053028.6 +0.0 1784086947.6 +29.753630056385994 1784092773.7 +36.323854924116404 1784098599.8 +35.52016724034706 1784104425.9 +31.393562589132728 1784110251.9 +23.569672706086152 1784116078 +9.029421408700582 1784121904.1 +0.0 1784127730.1 +0.0 1784133556.2 +0.0 1784139382.3 +0.0 1784173419.4 +30.26223561433846 1784179232.1 +36.5662584500493 1784185044.8 +35.689234254231266 1784190857.5 +31.547053278562828 1784196670.2 +23.746093862791877 1784202482.9 +9.258521165290285 1784208295.6 +0.0 1784214108.3 +0.0 1784219921 +0.0 1784225733.7 +0.0 1784259892.7 +30.784144941634125 1784265691.6 +36.8109345310931 1784271490.5 +35.86197833952623 1784277289.5 +31.704221039403695 1784283088.4 +23.924787574608512 1784288887.3 +9.49724761981242 1784294686.3 +0.0 1784300485.2 +0.0 1784306284.1 +0.0 1784312083 +0.0 1784346367.6 +31.317953521973127 1784352152.3 +37.071186936591005 1784357937 +36.03839949623197 1784363721.8 +31.86733842676623 1784369506.5 +24.107158357835914 1784375291.2 +9.747873327377894 1784381076 +0.0 1784386860.7 +0.0 1784392645.4 +0.0 1784398430.2 +0.0 1784432843.9 +31.86733842676623 1784438614.1 +37.32916678697799 1784444384.2 +36.226719905981035 1784450154.4 +32.03413288553953 1784455924.5 +24.30142839410665 1784461694.6 +10.00585317776489 1784467464.8 +0.0 1784473234.9 +0.0 1784479005.1 +0.0 1784484775.2 +0.0 1784519321.7 +32.426350029491765 1784525076.9 +37.60499551693 1784530832 +36.4150403157301 1784536587.2 +32.21282659735617 1784542342.4 +24.499375501788148 1784548097.5 +10.269782654673556 1784553852.7 +0.0 1784559607.8 +0.0 1784565363 +0.0 1784571118.2 +0.0 1784605800.9 +32.99498833014973 1784611540.7 +37.87855169177111 1784617280.5 +36.6129874234116 1784623020.3 +32.38924775406189 1784628760.1 +24.70694930740208 1784634499.9 +10.545611384625563 1784640239.7 +0.0 1784645979.5 +0.0 1784651719.3 +0.0 1784657459.1 +0.0 1784692281.3 +33.5792029552618 1784698005.3 +38.164007119655544 1784703729.4 +36.8109345310931 1784709453.5 +32.57756816381096 1784715177.6 +24.91452311301601 1784720901.7 +10.828794257399089 1784726625.8 +0.0 1784732349.8 +0.0 1784738073.9 +0.0 1784743798 +0.0 1784778762.9 +34.16936720689554 1784784470.9 +38.453139618950736 1784790178.9 +37.01850833670703 1784795886.9 +32.76588857356003 1784801594.9 +25.13399617167328 1784807302.9 +11.117926756694288 1784813010.9 +0.0 1784818719 +0.0 1784824427 +0.0 1784830135 +0.0 1784865245.7 +34.7691581564617 1784870937.3 +38.74822174476761 1784876628.8 +37.23203176884263 1784882320.4 +32.963835681241534 1784888012 +25.357146301741313 1784893703.6 +11.413008882511157 1784899395.2 +0.0 1784905086.8 +0.0 1784910778.4 +0.0 1784916470 +0.0 1784951729.5 +35.378575803960295 1784957404.4 +39.05293056851691 1784963079.2 +37.4515048274999 1784968754.1 +33.1677324154447 1784974428.9 +25.580296431809344 1784980103.8 +11.723667332782126 1784985778.6 +0.0 1784991453.5 +0.0 1784997128.3 +0.0 1785002803.2 +0.0 1785038214.4 +35.993943077980575 1785043872.2 +39.35763939226621 1785049530 +37.670977886157175 1785055187.8 +33.371629149647866 1785060845.6 +25.81534581492072 1785066503.3 +12.034325783053099 1785072161.1 +0.0 1785077818.9 +0.0 1785083476.7 +0.0 1785089134.5 +0.0 1785124700.3 +36.6129874234116 1785130340.7 +39.67197491394794 1785135981.1 +37.89780508763597 1785141621.5 +33.58515258178347 1785147261.9 +26.057749340853615 1785152902.3 +12.358288002667258 1785158542.8 +0.0 1785164183.2 +0.0 1785169823.6 +0.0 1785175464 +0.0 1785211187 +37.2379813953643 1785216809.8 +39.986310435629676 1785222432.5 +38.13285447074734 1785228055.3 +33.79867601391908 1785233678 +26.30242542189742 1785239300.8 +12.684522777392333 1785244923.5 +0.0 1785250546.3 +0.0 1785256169 +0.0 1785261791.8 +0.0 1785297674.7 +37.87260206524944 1785303279.4 +40.31254521035475 1785308884.2 +38.36563129874781 1785314489 +34.021826143987106 1785320093.8 +26.556728200873657 1785325698.6 +13.024061321460595 1785331303.4 +0.0 1785336908.2 +0.0 1785342513 +0.0 1785348117.8 +0.0 1785384163.1 +38.509495290245475 1785389749.6 +40.63877998507982 1785395336.2 +38.61030737979161 1785400922.8 +34.24497627405514 1785406509.3 +26.811030979849882 1785412095.9 +13.365872420639764 1785417682.4 +0.0 1785423269 +0.0 1785428855.6 +0.0 1785434442.1 +0.0 1785470652.2 +39.147793031541376 1785476220.3 +40.972368902626414 1785481788.4 +38.85498346083541 1785487356.4 +34.477753102055594 1785492924.5 +27.074960456758557 1785498492.6 +13.715037662640462 1785504060.6 +0.0 1785509628.7 +0.0 1785515196.8 +0.0 1785520764.8 +0.0 1785557142.1 +39.794312954469845 1785562691.4 +41.30823037528391 1785568240.7 +39.10333661328998 1785573790 +34.71280248516697 1785579339.4 +27.33888993366722 1785584888.7 +14.076102157684495 1785590438 +0.0 1785595987.3 +0.0 1785601536.6 +0.0 1785607085.9 +0.0 1785643632.6 +40.43856032228741 1785649162.9 +41.65004147446309 1785654693.2 +39.36131646367697 1785660223.5 +34.9515289396891 1785665753.9 +27.614718663619225 1785671284.2 +14.4431162792502 1785676814.5 +0.0 1785682344.8 +0.0 1785687875.1 +0.0 1785693405.5 +0.0 1785730123.7 +41.085080245215885 1785735634.8 +41.99552964505302 1785741145.9 +39.62156886917488 1785746657 +35.1962050207329 1785752168 +27.89422446498199 1785757679.1 +14.817484543637425 1785763190.2 +0.0 1785768701.3 +0.0 1785774212.4 +0.0 1785779723.5 +20.07768872475694 1785816615.3 +41.73527723955512 1785822107 +42.344694887053706 1785827598.6 +39.885498346083544 1785833090.2 +35.44455817318747 1785838581.9 +28.17740733775552 1785844073.5 +15.194125363135562 1785849565.1 +0.0 1785855056.7 +0.0 1785860548.4 +0.0 1785866040 +24.992404735286517 1785903107.5 +42.381797162483586 1785908579.5 +42.69613268416532 1785914051.4 +40.1494278229922 1785919523.4 +35.69886095216371 1785924995.3 +28.462862765639954 1785930467.3 +15.586342507087803 1785935939.2 +0.0 1785941411.2 +0.0 1785946883.1 +0.0 1785952355.1 +31.42471523804093 1785989600.1 +43.03199415682282 1785995052.2 +43.051247552687684 1786000504.3 +40.41930692642254 1786005956.3 +35.9568408025507 1786011408.4 +28.757944891456823 1786016860.5 +15.976287095929129 1786022312.5 +0.0 1786027764.6 +0.0 1786033216.7 +0.0 1786038668.7 +36.00951940243467 1786076093.2 +43.67624152464039 1786081525.2 +43.40636242121005 1786086957.1 +40.69881272778531 1786092389.1 +36.220770279459366 1786097821.1 +29.056704088684455 1786103253.1 +16.378130937813804 1786108685.1 +0.0 1786114117.1 +0.0 1786119549 +0.0 1786124981 +37.52711389465951 1786162586.6 +44.32276144756886 1786167998.3 +43.76742691625409 1786173410 +40.972368902626414 1786178821.7 +36.48697231147894 1786184233.4 +29.357735841022993 1786189645.1 +16.783651851109237 1786195056.9 +0.0 1786200468.6 +0.0 1786205880.3 +0.0 1786211292 +34.7224291830994 1786249080.4 +44.96700881538642 1786254471.6 +44.13444103781979 1786259862.9 +41.25782433051085 1786265254.1 +36.75457885979837 1786270645.4 +29.666121736183058 1786276036.6 +17.201072017448 1786281427.9 +0.0 1786286819.1 +0.0 1786292210.4 +0.0 1786297601.6 +36.68859649057121 1786335574.5 +45.60757911179322 1786340945.1 +44.49918260427459 1786346315.7 +41.543279758395286 1786351686.3 +37.03040758975037 1786357057 +29.97678018645403 1786362427.6 +17.622169255197527 1786367798.2 +0.0 1786373168.8 +0.0 1786378539.4 +0.0 1786383910.1 +39.49328120213131 1786422068.9 +46.24219978167835 1786427418.7 +44.86987379725106 1786432768.5 +41.832412257690486 1786438118.3 +37.303963764591465 1786443468.2 +30.29706533465743 1786448818 +18.04921611946873 1786454167.8 +0.0 1786459517.6 +0.0 1786464867.4 +0.0 1786470217.2 +43.69181784909449 1786508563.5 +46.87682045156349 1786513892.4 +45.24056499022751 1786519221.2 +42.12154475698568 1786524550.1 +37.5894191924759 1786529879 +30.61735048286083 1786535207.8 +18.482212610261602 1786540536.7 +0.0 1786545865.5 +0.0 1786551194.4 +0.0 1786556523.3 +46.9391257493799 1786595058.4 +47.50776405003785 1786600366.1 +45.61352873831489 1786605673.9 +42.42030395421331 1786610981.6 +37.87260206524944 1786616289.4 +30.94726232899666 1786621597.1 +18.918886172465236 1786626904.9 +0.0 1786632212.6 +0.0 1786637520.4 +0.0 1786642828.1 +48.24914643599078 1786681553.5 +48.13275802199055 1786686839.9 +45.98789700270212 1786692126.4 +42.721335706551855 1786697412.9 +38.164007119655544 1786702699.4 +31.277174175132494 1786707985.9 +19.365186432601302 1786713272.4 +0.0 1786718558.9 +0.0 1786723845.4 +0.0 1786729131.9 +49.53623665532606 1786768048.7 +48.7540749225325 1786773313.8 +46.364537822200255 1786778578.9 +43.02009490377948 1786783844 +38.453139618950736 1786789109.1 +31.613035647789996 1786794374.2 +19.817436319259034 1786799639.3 +0.0 1786804904.4 +0.0 1786810169.4 +0.0 1786815434.5 +50.80180092368556 1786854544.1 +49.373119267963524 1786859787.6 +46.74117864169839 1786865031.2 +43.32480372752878 1786870274.8 +38.751898816178375 1786875518.3 +31.9488971204475 1786880761.9 +20.27563583243844 1786886005.5 +0.0 1786891249 +0.0 1786896492.6 +0.0 1786901736.2 +52.0458392410693 1786941039.6 +49.98253691546212 1786946261.5 +47.117819461196525 1786951483.4 +43.63178510638899 1786956705.3 +39.05293056851691 1786961927.2 +32.29438529103743 1786967149.2 +20.737512417028604 1786972371.1 +0.0 1786977593 +0.0 1786982814.9 +0.0 1786988036.8 +53.264674536066494 1787027535.2 +50.58827749154996 1787032735.4 +47.498137352105424 1787037935.5 +43.940171001549054 1787043135.6 +39.35168976574454 1787048335.8 +32.63987346162737 1787053535.9 +21.211288254662108 1787058736 +0.0 1787063936.2 +0.0 1787069136.3 +0.0 1787074336.5 +54.4702060617205 1787114030.9 +51.18211881459446 1787119209.2 +47.878455243014315 1787124387.4 +44.256779078341694 1787129565.7 +39.65639858949384 1787134743.9 +32.99498833014974 1787139922.2 +21.682791537184706 1787145100.4 +0.0 1787150278.7 +0.0 1787155456.9 +0.0 1787160635.2 +56.11013859446724 1787200526.7 +51.77596013763896 1787205683 +48.26104568903412 1787210839.2 +44.57111460002343 1787215995.5 +39.96705703976481 1787221151.7 +33.3501031986721 1787226308 +22.166194072750642 1787231464.2 +0.0 1787236620.5 +0.0 1787241776.7 +0.0 1787246933 +56.813014188690445 1787287022.6 +52.36017476275103 1787292156.7 +48.64136357994302 1787297290.9 +44.88545012170516 1787302425 +40.281392561446545 1787307559.2 +33.70749062230538 1787312693.3 +22.64959660831658 1787317827.5 +0.5805375537013071 1787322961.6 +0.0 1787328095.8 +0.0 1787333229.9 +57.95624041652805 1787373518.4 +52.940712316452334 1787378630.4 +49.027631097373586 1787383742.4 +45.205735269908544 1787388854.3 +40.598000638239185 1787393966.3 +34.072232188760175 1787399078.2 +23.142625841814947 1787404190.2 +1.3122932417218092 1787409302.1 +0.0 1787414414.1 +0.0 1787419526.1 +59.083890319911546 1787460014.4 +53.51530024363196 1787465104 +49.407948988282484 1787470193.7 +45.53197004463362 1787475283.4 +40.91233615992091 1787480373 +34.43924631032587 1787485462.7 +23.635655075313313 1787490552.4 +2.057352699085502 1787495642 +0.0 1787500731.7 +0.0 1787505821.4 +60.19228682743018 1787546510.3 +54.077988917768266 1787551577.6 +49.79421650571305 1787556644.9 +45.85225519283702 1787561712.2 +41.23629837953508 1787566779.5 +34.809937503302336 1787571846.7 +24.138311006744114 1787576914 +2.8165839646034465 1787581981.3 +0.0 1787587048.6 +0.0 1787592115.9 +61.28510701049471 1787633006.3 +54.6370005204938 1787638051.1 +50.17680695173286 1787643095.9 +46.18216703897286 1787648140.7 +41.56253315426015 1787653185.6 +35.18430576768956 1787658230.4 +24.640966938174916 1787663275.2 +3.583169372942911 1787668320 +0.0 1787673364.9 +0.0 1787678409.7 +62.36235086910516 1787719502.2 +55.1863854252869 1787724524.5 +50.563074469163425 1787729546.8 +46.506129258587016 1787734569.1 +41.88876792898522 1787739591.4 +35.56094658718771 1787744613.6 +25.153249567538143 1787749635.9 +4.3593814792148065 1787754658.2 +0.0 1787759680.5 +0.0 1787764702.8 +63.42401840326149 1787805998.2 +55.72982070355833 1787810997.8 +50.94339236007232 1787815997.5 +46.838313659833766 1787820997.2 +42.218679775121046 1787825996.8 +35.9412644780966 1787830996.5 +25.66780475201228 1787835996.2 +5.1474928385300425 1787840995.9 +0.0 1787845995.5 +0.0 1787850995.2 +64.47010961296372 1787892494.1 +56.26362928389734 1787897471.1 +51.32965987750289 1787902448.1 +47.168225505969595 1787907425.1 +42.54859162125689 1787912402 +36.323854924116404 1787917379 +26.18603700789718 1787922356 +5.945230895777711 1787927333 +0.0 1787932310 +0.0 1787937287 +65.4969474268011 1787978990.1 +56.791488237714674 1787983944.3 +51.71592739493346 1787988898.5 +47.50181442351619 1787993852.7 +42.88445309391439 1787998807 +36.71012244154697 1788003761.2 +26.71021889030376 1788008715.4 +6.758545277479481 1788013669.6 +0.0 1788018623.9 +0.0 1788023578.1 +66.50225928966269 1788065486 +57.31567012012125 1788070417.4 +52.09624528584236 1788075348.8 +47.837675896173685 1788080280.2 +43.22399163798265 1788085211.6 +37.100067030388296 1788090143 +27.238077844121094 1788095074.4 +7.577809285702921 1788100005.8 +0.0 1788104937.2 +0.0 1788109868.7 +67.48464068524866 1788151981.9 +57.827952749484474 1788156890.4 +52.47883573186217 1788161798.9 +48.173537368831184 1788166707.5 +43.559853110640155 1788171616 +37.49228417434054 1788176524.5 +27.765936797938426 1788181433.1 +8.404427436747882 1788186341.6 +0.0 1788191250.1 +0.0 1788196158.7 +68.43359687681554 1788238477.8 +58.33655830743694 1788243363.4 +52.85915362277107 1788248249 +48.513075912899446 1788253134.6 +43.90534128123009 1788258020.2 +37.88817838970353 1788262905.8 +28.30569500479909 1788267791.4 +9.242944840836184 1788272676.9 +0.0 1788277562.5 +0.0 1788282448.1 +69.34772334806343 1788324973.6 +58.83553716745698 1788329836.2 +53.23947151367996 1788334698.9 +48.848937385556965 1788339561.5 +44.244879825298355 1788344424.1 +38.29002223158821 1788349286.7 +28.843180656548856 1788354149.3 +10.087411871446157 1788359011.9 +0.0 1788363874.5 +0.0 1788368737.1 +70.22334302758159 1788411469.5 +59.32856640095535 1788416309.1 +53.622061959699764 1788421148.6 +49.190748484736126 1788425988.2 +44.590367995888286 1788430827.8 +38.69186607347288 1788435667.4 +29.382938863409528 1788440506.9 +10.94518267139932 1788445346.5 +0.0 1788450186.1 +0.0 1788455025.6 +71.04996117862657 1788497965.3 +59.809696381410376 1788502781.8 +54.00237985060866 1788507598.3 +49.53623665532606 1788512414.8 +44.9418057929999 1788517231.3 +39.09370991535755 1788522047.8 +29.930051213091723 1788526864.3 +11.808903097874156 1788531680.7 +0.0 1788536497.2 +0.0 1788541313.7 +71.8380725379418 1788584461.1 +60.28714929045465 1788589254.5 +54.38269774151757 1788594047.9 +49.875775199394326 1788598841.2 +45.29324359011149 1788603634.6 +39.499230828652976 1788608428 +30.479436117884827 1788613221.3 +12.678573150870662 1788618014.7 +0.0 1788622808 +0.0 1788627601.4 +72.57945492389474 1788670957 +60.75497550156648 1788675727.2 +54.7593385610157 1788680497.4 +50.22126336998425 1788685267.5 +45.64240883211219 1788690037.7 +39.91070136847008 1788694807.9 +31.03249809408869 1788699578.1 +13.557869901799592 1788704348.3 +0.0 1788709118.5 +0.0 1788713888.7 +73.27638089159628 1788757452.8 +61.21912464126755 1788762199.8 +55.13597938051383 1788766946.8 +50.56675154057418 1788771693.7 +45.99979625574546 1788776440.7 +40.322171908287174 1788781187.7 +31.58783262540346 1788785934.7 +14.446793350660963 1788790681.7 +0.0 1788795428.6 +0.0 1788800175.6 +73.93847713897884 1788843948.6 +61.67505159933604 1788848672.3 +55.51262020001197 1788853396.1 +50.91223971116412 1788858119.8 +46.35491112426782 1788862843.6 +40.733642448104284 1788867567.3 +32.146844228129 1788872291 +15.341666426043997 1788877014.8 +0.0 1788881738.5 +0.0 1788886462.2 +74.5515718578882 1788930444.4 +62.12362441458301 1788935144.9 +55.8869884643992 1788939845.4 +51.25772788175406 1788944545.8 +46.710025992790186 1788949246.3 +41.15106261444305 1788953946.7 +32.70585583085453 1788958647.2 +16.240216572837802 1788963347.7 +0.0 1788968048.1 +0.0 1788972748.6 +75.13210941158951 1789016940.3 +62.56397504819742 1789021617.4 +56.25767965737567 1789026294.6 +51.60321605234399 1789030971.7 +47.07109048783422 1789035648.9 +41.568482780781814 1789040326 +33.26854450499083 1789045003.2 +17.144716346153274 1789049680.3 +0.0 1789054357.5 +0.0 1789059034.6 +75.66959506333929 1789103436.2 +62.996971538990294 1789108090 +56.6343204768738 1789112743.8 +51.948704222933934 1789117397.6 +47.42620535635659 1789122051.4 +41.98958001853135 1789126705.2 +33.833505734238045 1789131359 +18.0551657459904 1789136012.8 +0.0 1789140666.6 +0.0 1789145320.4 +76.1841502478134 1789189932.1 +63.427695474672255 1789194562.5 +57.00133459843951 1789199192.9 +52.300142020045534 1789203823.4 +47.787269851400616 1789208453.8 +42.407000184870114 1789213084.3 +34.402144034896 1789217714.7 +18.9692922172383 1789222345.2 +0.0 1789226975.6 +0.0 1789231606 +76.66160315685768 1789276428 +63.84511564101102 1789281035 +57.37202579141598 1789285642.1 +52.645630190635465 1789290249.2 +48.15428397296632 1789294856.2 +42.83404704914132 1789299463.3 +34.97078233555396 1789304070.3 +19.889368315007868 1789308677.4 +0.0 1789313284.4 +0.0 1789317891.5 +77.11385304351542 1789362924 +64.26253580734979 1789367507.6 +57.736767357870775 1789372091.3 +52.99706798774707 1789376674.9 +48.519025539421115 1789381258.5 +43.255144286890854 1789385842.2 +35.541693191322835 1789390425.8 +20.80944441277744 1789395009.5 +0.0 1789399593.1 +0.0 1789404176.7 +77.53495028126494 1789449420 +64.66805672064523 1789453980.2 +58.10378147943648 1789458540.4 +53.34623322974776 1789463100.6 +48.88009003446516 1789467660.8 +43.68219115116206 1789472221 +36.114008563391565 1789476781.3 +21.73914720847944 1789481341.5 +0.0 1789485901.7 +0.0 1789490461.9 +77.93679412314962 1789535916.1 +65.06990056252988 1789540452.9 +58.468523045891274 1789544989.6 +53.69767102685937 1789549526.4 +49.25078122744162 1789554063.1 +44.10923801543326 1789558599.9 +36.68491941916044 1789563136.6 +22.665172932770677 1789567673.4 +0.0 1789572210.2 +0.0 1789576746.9 +78.31711201405852 1789622412.3 +65.4657947778929 1789626925.6 +58.82958754093531 1789631438.9 +54.0431591974493 1789635952.2 +49.617795349007324 1789640465.5 +44.53628487970446 1789644978.7 +37.25950734634007 1789649492 +23.594875728472683 1789654005.3 +0.0 1789658518.6 +0.0 1789663031.9 +78.67817650910256 1789708908.6 +65.85801192184513 1789713398.4 +59.190652035979355 1789717888.2 +54.39459699456091 1789722378 +49.98253691546212 1789726867.8 +44.96700881538642 1789731357.6 +37.83777234493047 1789735847.4 +24.528255595585442 1789740337.2 +0.0 1789744827 +0.0 1789749316.8 +79.01998760828172 1789795405 +66.23832981275403 1789799871.3 +59.55171653102338 1789804337.6 +54.743762236561594 1789808803.9 +50.353228108438586 1789813270.2 +45.40000530617928 1789817736.5 +38.41236027211011 1789822202.8 +25.463908017809114 1789826669.1 +0.0 1789831135.4 +0.0 1789835601.7 +79.33800020137423 1789881901.5 +66.61497063225217 1789886344.3 +59.90683139954575 1789890787.1 +55.0952000336732 1789895229.8 +50.72391930141505 1789899672.6 +45.83072924186125 1789904115.4 +38.990625270700505 1789908558.2 +26.393610813511124 1789913001 +0.0 1789917443.8 +0.0 1789921886.6 +79.64865865164519 1789968398.1 +66.98566182522862 1789972817.4 +60.261946268068115 1789977236.6 +55.444365275673896 1789981655.9 +51.094610494391524 1789986075.2 +46.26372573265412 1789990494.4 +39.57116282440181 1789994913.7 +27.329263235734793 1789999333 +0.0 1790003752.3 +0.0 1790008171.5 +79.93779115094038 1790054894.8 +67.35267594679434 1790059290.6 +60.613384065179716 1790063686.3 +55.79212600137475 1790068082.1 +51.4675742424789 1790072477.8 +46.70039929485775 1790076873.5 +40.145750751581446 1790081269.3 +28.264915657958458 1790085665 +0.0 1790090060.8 +0.0 1790094456.5 +80.21729695230316 1790141391.7 +67.71146788672746 1790145763.9 +60.964821862291316 1790150136.1 +56.141291243375434 1790154508.3 +51.83826543545536 1790158880.6 +47.13112323053972 1790163252.8 +40.72401575017185 1790167625 +29.194618453660457 1790171997.2 +0.44262318872530354 1790176369.4 +0.0 1790180741.6 +80.48349898432274 1790227888.7 +68.06885531036072 1790232237.4 +61.31398710429201 1790236586.1 +56.49272904048704 1790240934.8 +52.208956628431835 1790245283.4 +47.56411972133259 1790249632.1 +41.30228074876224 1790253980.8 +30.124321249362456 1790258329.5 +2.4591965409701713 1790262678.2 +0.0 1790267026.8 +80.74147883470972 1790314385.9 +68.41434348095066 1790318711.1 +61.65947527488194 1790323036.2 +56.83821721107698 1790327361.4 +52.5796478214083 1790331686.5 +48.00079328353622 1790336011.6 +41.88281830246355 1790340336.8 +31.054024045064462 1790344661.9 +4.481719519736709 1790348987.1 +0.0 1790353312.2 +80.98615491575353 1790400883.3 +68.7598316515406 1790405184.9 +62.00496344547189 1790409486.5 +57.187382453077674 1790413788.1 +52.956288640906436 1790418089.7 +48.43746684573985 1790422391.3 +42.45740622964318 1790426692.9 +31.977777214244796 1790430994.5 +6.500565427092485 1790435296.1 +0.0 1790439597.7 +81.21525467234324 1790487380.9 +69.0956931241981 1790491658.9 +62.346774544651055 1790495937 +57.532870623667606 1790500215.1 +53.326979833882895 1790504493.1 +48.87414040794349 1790508771.2 +43.03199415682282 1790513049.3 +32.89785331201437 1790517327.3 +8.511189152815682 1790521605.4 +0.0 1790525883.5 +81.44208187382202 1790573878.6 +69.4292820417447 1790578133.2 +62.68631308871932 1790582387.7 +57.88063134936845 1790586642.2 +53.69767102685937 1790590896.8 +49.30713689873636 1790595151.3 +43.61025915541322 1790599405.8 +33.81425233837318 1790603660.4 +10.508509109195689 1790607914.9 +0.0 1790612169.4 +81.65560530595764 1790660376.6 +69.75551681646976 1790664607.6 +63.0281241878985 1790668838.6 +58.22611951995838 1790673069.6 +54.0743118463575 1790677300.6 +49.74381046093999 1790681531.6 +44.18484708259286 1790685762.6 +34.72837880962106 1790689993.7 +12.480626043189162 1790694224.7 +0.0 1790698455.7 +81.86545166668247 1790746874.8 +70.07947903608392 1790751082.3 +63.361713105445084 1790755289.8 +58.57160769054831 1790759497.2 +54.44500303933397 1790763704.7 +50.18048402314361 1790767912.2 +44.75348538325082 1790772119.7 +35.636555654347305 1790776327.2 +14.431217026206857 1790780534.7 +0.0 1790784742.2 +82.06339877436398 1790833373.2 +70.39608711287657 1790837557.2 +63.69757457810258 1790841741.2 +58.91709586113825 1790845925.1 +54.815694232310435 1790850109.1 +50.61715758534726 1790854293.1 +45.328073310430455 1790858477.1 +36.54105542766276 1790862661.1 +16.346978288905596 1790866845 +0.0 1790871029 +82.2553962555238 1790919871.8 +70.7104226345583 1790924032.3 +64.02748642423842 1790928192.8 +59.25663440520651 1790932353.3 +55.1863854252869 1790936513.8 +51.05015407614013 1790940674.3 +45.89671161108841 1790944834.7 +37.435928503045794 1790948995.2 +18.2375365292178 1790953155.7 +0.0 1790957316.2 +82.4377670387512 1791006370.7 +71.0151314583076 1791010507.7 +64.35372119896348 1791014644.7 +59.60212257579645 1791018781.7 +55.563026244785036 1791022918.7 +51.48682763834376 1791027055.7 +46.46534991174639 1791031192.7 +38.32485195190717 1791035329.7 +20.093265049211038 1791039466.7 +0.0 1791043603.7 +82.61646075056782 1791092869.9 +71.31616321064614 1791096983.4 +64.68363304509931 1791101097 +59.94166111986472 1791105210.5 +55.9337174377615 1791109324 +51.91982412913663 1791113437.6 +47.03031114099359 1791117551.1 +39.21009832935778 1791121664.6 +21.91784092029608 1791125778.1 +0.0 1791129891.7 +82.7892048358628 1791179369.3 +71.61492240787375 1791183459.4 +65.00391819330272 1791187549.5 +60.28347221904389 1791191639.6 +56.304408630737974 1791195729.6 +52.3505480648186 1791199819.7 +47.595272370240785 1791203909.8 +40.08344545376504 1791207999.9 +23.70163744454048 1791212090 +0.0 1791216180 +82.958271849747 1791265869 +71.91000453369064 1791269935.7 +65.33015296802779 1791274002.3 +60.619333691701385 1791278069 +56.66915019719277 1791282135.6 +52.78722162702223 1791286202.3 +48.15796104437708 1791290268.9 +40.95311550676155 1791294335.6 +25.45428131987668 1791298402.2 +0.0 1791302468.9 +83.11911668199863 1791352369 +72.19913703298583 1791356412.2 +65.6481655611203 1791360455.5 +60.95887223576965 1791364498.7 +57.04211394528015 1791368542 +53.214268491293424 1791372585.2 +48.71697264710263 1791376628.5 +41.81683593323639 1791380671.7 +27.17209547489393 1791384715 +0.0 1791388758.2 +83.2762844428395 1791438869.2 +72.4786428343486 1791442889.1 +65.96477363791294 1791446909 +61.294733708427145 1791450928.8 +57.406855511734946 1791454948.7 +53.6472649820863 1791458968.6 +49.27230717841739 1791462988.5 +42.664980035257116 1791467008.3 +28.852807354481286 1791471028.2 +0.0 1791475048.1 +83.4297751322696 1791525369.8 +72.76409826223305 1791529366.3 +66.2754320881839 1791533362.8 +61.630595181084644 1791537359.3 +57.777546704711405 1791541355.9 +54.0743118463575 1791545352.4 +49.82536915462126 1791549348.9 +43.509447065867086 1791553345.4 +30.50463914027136 1791557341.9 +0.0 1791561338.5 +83.57731619517804 1791611870.6 +73.03765443707414 1791615843.8 +66.58976760986565 1791619817 +61.960507027220494 1791623790.2 +58.144560826277115 1791627763.4 +54.505035782039464 1791631736.6 +50.37475405941436 1791635709.8 +44.342014843433724 1791639683 +32.12164120574246 1791643656.3 +0.0 1791647629.5 +83.7189076315648 1791698371.8 +73.30753354050448 1791702321.7 +66.89447643361493 1791706271.6 +62.29041887335632 1791710221.5 +58.50562532132115 1791714171.4 +54.93208264631067 1791718121.4 +50.92186640909655 1791722071.3 +45.170905549589584 1791726021.2 +33.70154099578371 1791729971.1 +0.0 1791733921.1 +83.8568219965408 1791784873.2 +73.57741264393482 1791788799.9 +67.19918525736423 1791792726.6 +62.62033071949215 1791796653.2 +58.87036688777595 1791800579.9 +55.3531798840602 1791804506.6 +51.4675742424789 1791808433.3 +45.984219931291356 1791812359.9 +35.25028813691673 1791816286.6 +0.0 1791820213.3 +83.98878673499514 1791871374.9 +73.83539249432181 1791875278.4 +67.50389408111351 1791879181.9 +62.95024256562799 1791883085.4 +59.231431382819984 1791886988.8 +55.776549676920645 1791890892.3 +52.005059894228665 1791894795.8 +46.79158468647146 1791898699.3 +36.770155184252474 1791902602.7 +0.0 1791906506.2 +84.12075147344947 1791957877 +74.09564489981972 1791961757.3 +67.80492583345206 1791965637.6 +63.276477340353054 1791969517.9 +59.59249587786402 1791973398.3 +56.19764691467017 1791977278.6 +52.538868474567664 1791981158.9 +47.58337311719745 1791985039.2 +38.25519251126924 1791988919.5 +0.0 1791992799.8 +84.24903914049304 1792044379.4 +74.34994767879596 1792048236.6 +68.1036850306797 1792052093.8 +63.60043955996722 1792055951 +59.95356037290805 1792059808.2 +56.61506708100894 1792063665.4 +53.07267705490667 1792067522.6 +48.36780740510192 1792071379.8 +39.703127562856146 1792075237 +0.0 1792079094.2 +84.36910462590404 1792130882 +74.60197790266128 1792134716.2 +68.39876715649658 1792138550.3 +63.926674334692294 1792142384.5 +60.30867524143042 1792146218.6 +57.03021469223681 1792150052.8 +53.60053600872399 1792153886.9 +49.140342439963064 1792157721.1 +41.125859592056514 1792161555.2 +0.0 1792165389.4 +84.49144266642594 1792217385 +74.84665398370507 1792221196.1 +68.68789965579175 1792225007.3 +64.24695948289569 1792228818.4 +60.66379010995278 1792232629.6 +57.44763485857558 1792236440.7 +54.12471789113057 1792240251.9 +49.90097822178086 1792244063 +42.51376190093792 1792247874.2 +0.0 1792251685.3 +84.60783108042617 1792303888.3 +75.09133006474887 1792307676.5 +68.97703215508696 1792311464.7 +64.56129500457743 1792315252.9 +61.01890497847514 1792319041.1 +57.85910539839268 1792322829.3 +54.64295014701547 1792326617.5 +50.654259860777124 1792330405.7 +43.86456193438946 1792334193.9 +0.0 1792337982.1 +84.72054242301564 1792390391.8 +75.33005651927103 1792394157.1 +69.2624875829714 1792397922.5 +64.87790308137006 1792401687.8 +61.37034277558674 1792405453.1 +58.270575938209774 1792409218.4 +55.161182402900366 1792412983.8 +51.38969262020839 1792416749.1 +45.186481874043686 1792420514.4 +0.0 1792424279.8 +84.83325376560511 1792476895.7 +75.56283334727148 1792480638.2 +69.54794301085583 1792484380.7 +65.19223860305179 1792488123.2 +61.72178057269834 1792491865.7 +58.672419780094444 1792495608.3 +55.66978796085284 1792499350.8 +52.11777123681813 1792503093.3 +46.471299538268056 1792506835.8 +0.0 1792510578.3 +84.9400154816729 1792563399.8 +75.79193310386117 1792567119.6 +69.8274488122186 1792570839.4 +65.50289705332277 1792574559.1 +62.07094581469905 1792578278.9 +59.07794069338988 1792581998.7 +56.17244389228364 1792585718.5 +52.83395060038453 1792589438.3 +47.72723710869512 1792593158.1 +0.0 1792596877.9 +85.04677719774071 1792649904.2 +76.02103286045089 1792653601.3 +70.1010049870597 1792657298.4 +65.81128294848283 1792660995.6 +62.412756913878226 1792664692.7 +59.47978453527454 1792668389.8 +56.67509982371444 1792672087 +53.53455363949683 1792675784.1 +48.952022030213996 1792679481.2 +1.3374962641083417 1792683178.4 +85.14758928728683 1792736408.8 +76.24418299051892 1792740083.4 +70.3745611619008 1792743758 +66.11599177223212 1792747432.5 +62.75824508446816 1792751107.1 +59.87567875063755 1792754781.6 +57.16812905721281 1792758456.2 +54.23147960719837 1792762130.8 +50.13602760489222 1792765805.3 +0.0 1792769479.9 +85.24840137683297 1792822913.7 +76.46365604917618 1792826565.8 +70.64444026533114 1792830217.9 +66.42070059598143 1792833870 +63.097783628536426 1792837522.1 +60.273845521111454 1792841174.1 +57.65520866418951 1792844826.2 +54.90687962392414 1792848478.3 +51.28888053066226 1792852130.4 +0.0 1792855782.4 +85.34553639496835 1792909418.9 +76.67717948131178 1792913048.6 +70.91431936876147 1792916678.3 +66.72173234831997 1792920308 +63.433645101193925 1792923937.6 +60.66379010995278 1792927567.3 +58.138611199755445 1792931197 +55.57860256923914 1792934826.7 +52.406903736113335 1792938456.4 +44.62747027131816 1792942086.1 +85.44267141310371 1792995924.2 +76.89070291344738 1792999531.6 +71.17824884567014 1793003139.1 +67.02049154554759 1793006746.5 +63.76950657385142 1793010353.9 +61.05005762738334 1793013961.3 +58.616064108799705 1793017568.7 +56.23247663498914 1793021176.1 +53.49377429265619 1793024783.5 +49.70898074062103 1793028390.9 +85.53385680471742 1793082429.8 +77.09827671906132 1793086015 +71.43622869605713 1793089600.3 +67.31557367136446 1793093185.5 +64.09941841998726 1793096770.7 +61.43632514481391 1793100355.9 +59.089839946433216 1793103941.2 +56.87304693139594 1793107526.4 +54.5458151288801 1793111111.6 +51.79153646209306 1793114696.8 +85.62504219633111 1793168935.5 +77.30217345326449 1793172498.7 +71.69648110155504 1793176061.9 +67.61065579718134 1793179625 +64.42933026612309 1793183188.2 +61.81296596431205 1793186751.3 +59.555393602434144 1793190314.5 +57.50399052987031 1793193877.7 +55.5667033161958 1793197440.8 +53.76365339608654 1793201004 +85.71027796142315 1793255441.4 +77.50379763235675 1793258982.6 +71.95078388053128 1793262523.9 +67.89611122506577 1793266065.1 +64.75556504084817 1793269606.3 +62.193283855220955 1793273147.5 +60.013593115613546 1793276688.7 +58.12303487530134 1793280230 +56.549084711781774 1793283771.2 +55.62900861401221 1793287312.4 +85.79778628162607 1793341947.5 +77.70174474003825 1793345466.9 +72.19913703298583 1793348986.3 +68.18524372436096 1793352505.7 +65.07952726046231 1793356025.1 +62.56397504819742 1793359544.5 +60.465843002271285 1793363063.9 +58.72877545138918 1793366583.3 +57.50399052987031 1793370102.7 +57.39722881380251 1793373622.1 +85.87934497530733 1793428453.6 +77.89601477630899 1793431951.3 +72.4474901854404 1793435449 +68.46474952572373 1793438946.8 +65.39613533725496 1793442444.5 +62.934666241173886 1793445942.2 +60.91809288892901 1793449439.9 +59.32261677443368 1793452937.6 +58.42406662763988 1793456435.3 +59.07794069338988 1793459933.1 +85.96458074039937 1793514959.8 +78.08433518605806 1793518436 +72.68621663996254 1793521912.2 +68.7442553270865 1793525388.4 +65.7104708589367 1793528864.5 +63.29573073621792 1793532340.7 +61.35476645113264 1793535816.9 +59.90315432813499 1793539293.1 +59.31299007650125 1793542769.2 +60.67936643440688 1793546245.4 +86.04246236266988 1793601466.1 +78.27265559580711 1793604920.9 +72.93089272100633 1793608375.7 +69.02376112844927 1793611830.5 +66.02480638061844 1793615285.2 +63.65679523126195 1793618740 +61.79144001333628 1793622194.8 +60.471792628792954 1793625649.6 +60.16708380504365 1793629104.4 +62.193283855220955 1793632559.2 +86.12402105635114 1793687972.4 +78.45502637903452 1793691406 +73.16594210411772 1793694839.5 +69.2936402318796 1793698273.1 +66.3354648308894 1793701706.6 +64.01191009978432 1793705140.2 +62.21848687760749 1793708573.7 +61.02485460499681 1793712007.3 +60.99370195608861 1793715440.8 +63.64121890680785 1793718874.4 +86.19963012351074 1793774478.7 +78.63739716226193 1793777891.2 +73.39871893211817 1793781303.7 +69.56124678019903 1793784716.1 +66.6401736546387 1793788128.6 +64.36334789689592 1793791541.1 +62.641856670467924 1793794953.6 +61.56828988326824 1793798366.1 +61.79144001333628 1793801778.6 +65.01949451775683 1793805191.1 +86.26928956414868 1793860984.9 +78.8101412475569 1793864376.5 +73.62781868870788 1793867768.1 +69.8274488122186 1793871159.7 +66.93893285186633 1793874551.3 +64.70883606748586 1793877942.9 +63.053327210285026 1793881334.5 +62.10209846360724 1793884726.1 +62.56029797678666 1793888117.7 +66.3354648308894 1793891509.3 +86.3412215598975 1793947491.1 +78.98288533285186 1793950862 +73.85096881877591 1793954232.8 +70.09137828912726 1793957603.7 +67.23401497768319 1793960974.6 +65.05064716666504 1793964345.5 +63.45884812358045 1793967716.4 +62.62033071949215 1793971087.3 +63.29573073621792 1793974458.2 +67.5854527747948 1793977829 +86.41315355564635 1794033997.1 +79.15195234673607 1794037347.5 +74.07411894884395 1794040697.8 +70.34935813951428 1794044048.2 +67.5254200320893 1794047398.6 +65.38423608421162 1794050749 +63.86069196546512 1794054099.3 +63.122986650922954 1794057449.7 +64.00823302837355 1794060800.1 +68.78503467392713 1794064150.4 +86.48281299628427 1794120502.9 +79.31874680550936 1794123833 +74.29359200750122 1794127163.1 +70.60366091849049 1794130493.1 +67.81455253138449 1794133823.2 +65.71642048545837 1794137153.2 +64.25290910941736 1794140483.3 +63.62196551094299 1794143813.4 +64.69325974303176 1794147143.4 +69.92826090176473 1794150473.5 +86.54879536551145 1794207008.6 +79.4818641928719 1794210318.5 +74.5071154396368 1794213628.5 +70.85201407094507 1794216938.4 +68.09773540415803 1794220248.4 +66.04038270507253 1794223558.4 +64.63917662684793 1794226868.3 +64.09941841998726 1794230178.3 +65.34940636389265 1794233488.3 +71.0151314583076 1794236798.2 +86.61705028984952 1794293513.9 +79.63903195371275 1794296804 +74.71468924525072 1794300094.1 +71.09669015198887 1794303384.2 +68.37724120552079 1794306674.3 +66.36066785327594 1794309964.4 +65.01354489123516 1794313254.4 +64.57092170250986 1794316544.5 +65.9840270337778 1794319834.6 +72.05754559659907 1794323124.7 +86.67708303255502 1794380019 +79.79619971455362 1794383289.4 +74.92226305086467 1794386559.9 +71.33541660651099 1794389830.3 +68.6530699354728 1794393100.7 +66.67500337495767 1794396371.2 +65.38423608421162 1794399641.6 +65.02912121568927 1794402912.1 +66.59344468127641 1794406182.5 +73.03765443707414 1794409453 +86.73711577526052 1794466523.6 +79.94374077746205 1794469774.7 +75.12248271365708 1794473025.7 +71.57414306103314 1794476276.8 +68.92294903890313 1794479527.8 +66.97971219870695 1794482778.9 +65.74530057925567 1794486029.9 +65.47174440441457 1794489281 +67.1739822349777 1794492532 +73.96735723277615 1794495783.1 +86.79942107307691 1794553027.9 +80.0912818403705 1794556259.8 +75.32042982133859 1794559491.7 +71.8091924441445 1794562723.6 +69.1868785158118 1794565955.5 +67.28669357756716 1794569187.4 +66.10268800288894 1794572419.3 +65.9084179666182 1794575651.2 +67.7389434642249 1794578883.1 +74.83702728577265 1794582115 +86.85945381578242 1794639531.6 +80.23882290327893 1794642744.7 +75.51242730249842 1794645957.7 +72.0360196456233 1794649170.7 +69.4448583661988 1794652383.8 +67.57950314827313 1794655596.8 +66.44817617347887 1794658809.8 +66.32583813295696 1794662022.9 +68.27642911597466 1794665235.9 +75.65034166747442 1794668448.9 +86.91580948707714 1794726034.8 +80.3804143396657 1794729229.3 +75.70074771224748 1794732423.7 +72.25549270428057 1794735618.1 +69.69916114517501 1794738812.6 +67.87090820267923 1794742007 +66.78771471754713 1794745201.5 +66.73730867277406 1794748395.9 +68.79466137185956 1794751590.3 +76.40135075135979 1794754784.8 +86.97216515837188 1794812537.4 +80.5183287046417 1794815713.6 +75.88906812199656 1794818889.7 +72.47496576293784 1794822065.8 +69.9475142976296 1794825242 +68.15409107545277 1794828418.1 +67.11762656368296 1794831594.2 +67.13320288813706 1794834770.4 +69.28769060535794 1794837946.5 +77.10422634558299 1794841122.6 +87.02257120314493 1794899039.4 +80.65029344309603 1794902197.5 +76.06548927870229 1794905355.6 +72.6921662664842 1794908513.8 +70.1921903786734 1794911671.9 +68.43359687681554 1794914830 +67.43791171188636 1794917988.1 +67.51947040556763 1794921146.3 +69.7651435144022 1794924304.4 +77.74847371340054 1794927462.5 +87.07297724791802 1794985540.6 +80.78225818155036 1794988681 +76.24418299051892 1794991821.4 +72.89974007209814 1794994961.9 +70.43091683319552 1794998102.3 +68.70347598024587 1795001242.8 +67.7522472335681 1795004383.2 +67.8901615985441 1795007523.6 +70.22334302758159 1795010664.1 +78.34231503644504 1795013804.5 +87.12338329269107 1795072041 +80.90459622207227 1795075164 +76.41692707581387 1795078287.1 +73.10363680630131 1795081410.2 +70.663693661196 1795084533.3 +68.96740545715451 1795087656.3 +68.0569560573174 1795090779.4 +68.2571757201098 1795093902.5 +70.66001658978524 1795097025.6 +78.89169994123814 1795100148.6 +87.17378933746414 1795158540.5 +81.03061133400493 1795161646.5 +76.5800444631764 1795164752.6 +73.30158391398281 1795167858.6 +70.8927934177857 1795170964.7 +69.22765786265244 1795174070.7 +68.35203818313425 1795177176.8 +68.60634096211051 1795180282.8 +71.077436756124 1795183388.9 +79.40030549919062 1795186494.9 +87.22051831082645 1795245039 +81.14927230311606 1795248128.4 +76.74683892194972 1795251217.8 +73.49585395025355 1795254307.2 +71.11226647644297 1795257396.6 +69.47968808651777 1795260485.9 +68.64344323754037 1795263575.3 +68.942202434768 1795266664.7 +71.47700804289776 1795269754.1 +79.86218208378078 1795272843.5 +87.26724728418876 1795331536.5 +81.2656607171163 1795334609.6 +76.90400668279058 1795337682.7 +73.68417436000261 1795340755.8 +71.32946697998933 1795343828.9 +69.72436416756156 1795346902 +68.92294903890313 1795349975 +69.26843720949307 1795353048.1 +71.86327556032833 1795356121.2 +80.28922894805198 1795359194.3 +87.31170370244016 1795418033 +81.37609950459486 1795421090.1 +77.05749737222068 1795424147.3 +73.86654514323001 1795427204.4 +71.53931334071416 1795430261.6 +69.95941355067293 1795433318.8 +69.19650521374423 1795436375.9 +69.58644980258556 1795439433.1 +72.23028968189405 1795442490.2 +80.685123163415 1795445547.4 +87.35248304928078 1795504528.2 +81.48286122066266 1795507569.8 +77.20503843512911 1795510611.5 +74.04296629993574 1795513653.1 +71.73726044839567 1795516694.7 +70.1921903786734 1795519736.3 +69.45448506413123 1795522778 +69.8874815549241 1795525819.6 +72.57577785248398 1795528861.2 +81.05213728498069 1795531902.8 +87.3932623961214 1795591022.2 +81.58962293673046 1795594048.7 +77.34662987151589 1795597075.2 +74.21798294034161 1795600101.7 +71.93520755607717 1795603128.2 +70.41166343733067 1795606154.7 +69.70878784310746 1795609181.2 +70.18256368074097 1795612207.7 +72.91163932514148 1795615234.2 +81.3879987576382 1795618260.7 +87.43404174296205 1795677514.8 +81.69270758138751 1795680526.6 +77.49049386301355 1795683538.4 +74.38477739911491 1795686550.2 +72.127205037237 1795689562 +70.62886394087704 1795692573.8 +69.95346392415127 1795695585.6 +70.46206948210374 1795698597.4 +73.2259748468232 1795701609.2 +81.69638465279827 1795704620.9 +87.47482108980269 1795764006 +81.78757004441196 1795767003.5 +77.62245860146788 1795770001.1 +74.54194515995577 1795772998.6 +72.31184837557531 1795775996.1 +70.83871030160186 1795778993.6 +70.1921903786734 1795781991.1 +70.73194858553407 1795784988.6 +73.5306836705725 1795787986.2 +81.9818400806827 1795790983.7 +87.50965081012164 1795850495.7 +81.87875543602567 1795853479.4 +77.75442333992221 1795856463.1 +74.69911292079665 1795859446.8 +72.48826953228104 1795862430.5 +71.03665740928338 1795865414.2 +70.4212901352631 1795868397.8 +70.98992843592107 1795871381.5 +73.8198161698677 1795874365.2 +82.24576955759137 1795877348.9 +87.54675308555152 1795936983.8 +81.97221338275027 1795939954.1 +77.87448882533322 1795942924.5 +74.84665398370507 1795945894.8 +72.661013617576 1795948865.1 +71.22865489044321 1795951835.4 +70.63849063880947 1795954805.7 +71.23828158837564 1795957776 +74.08969527329805 1795960746.4 +82.49044563863517 1795963716.7 +87.58158280587048 1796023470.2 +82.0574491478423 1796026427.7 +77.99682686585511 1796029385.1 +74.9941950466135 1796032342.5 +72.82413100493854 1796035299.9 +71.41697530019226 1796038257.3 +70.84833699953431 1796041214.8 +71.47700804289776 1796044172.2 +74.34994767879596 1796047129.6 +82.7135957687032 1796050087 +87.61273545477869 1796109954.9 +82.13900784152356 1796112899.9 +78.10953820844459 1796115844.9 +75.12615978506784 1796118789.9 +72.9812987657794 1796121734.9 +71.58971938548724 1796124679.9 +71.04628410721581 1796127624.9 +71.7024307280767 1796130570 +74.59235120472884 1796133515 +82.92116957431713 1796136460 +87.64161554857597 1796196437.7 +82.22056653520484 1796199370.8 +78.21629992451238 1796202303.9 +75.25812452352218 1796205237 +73.12883982868784 1796208170.1 +71.76246347078221 1796211103.2 +71.23828158837564 1796214036.3 +71.91595416021231 1796216969.4 +74.82740058784022 1796219902.5 +83.11543961058786 1796222835.5 +87.67276819748417 1796282918.6 +82.29249853095367 1796285840.3 +78.32306164058019 1796288762 +75.38641219056575 1796291683.6 +73.27638089159628 1796294605.3 +71.92558085814474 1796297527 +71.41697530019226 1796300448.7 +72.11757833930457 1796303370.4 +75.04460109138658 1796306292.1 +83.2918607672936 1796309213.8 +87.69797121987071 1796369397.4 +82.3621579715916 1796372308.2 +78.42019665871557 1796375219 +75.50280060456599 1796378129.9 +73.40834563005062 1796381040.7 +72.07679899246394 1796383951.5 +71.58971938548724 1796386862.3 +72.31184837557531 1796389773.1 +75.24849782558974 1796392683.9 +83.45497815465613 1796395594.7 +87.72317424225724 1796455874.2 +82.42814034081877 1796458774.6 +78.51505912174002 1796461675.1 +75.6191890185662 1796464575.6 +73.54031036850495 1796467476 +72.22066298396162 1796470376.5 +71.75283677284976 1796473277 +72.49421915880271 1796476177.4 +75.44049530674958 1796479077.9 +83.60846884408625 1796481978.3 +87.74837726464376 1796542348.7 +82.49412271004593 1796545239.4 +78.60256744194297 1796548130.1 +75.72595073463401 1796551020.7 +73.66264840902684 1796553911.4 +72.35630479382671 1796556802.1 +71.90405490716897 1796559692.7 +72.661013617576 1796562583.4 +75.62513864508787 1796565474 +83.74411065395134 1796568364.7 +87.7735802870303 1796628821 +82.55047838134065 1796631702.4 +78.68412613562423 1796634583.9 +75.82308575276937 1796637465.3 +73.7753597516163 1796640346.7 +72.48826953228104 1796643228.1 +72.0515959700774 1796646109.6 +72.82045393352777 1796648991 +75.79193310386117 1796651872.4 +83.8723983209949 1796654753.8 +87.79510623800607 1796715291 +82.6068340526354 1796718163.7 +78.7656848293055 1796721036.5 +75.91427114438308 1796723909.2 +73.8821214676841 1796726782 +72.60693050139217 1796729654.7 +72.18356070853173 1796732527.5 +72.97167206784697 1796735400.2 +75.94542379329128 1796738273 +83.98878673499513 1796741145.7 +87.81435963387095 1796801758.5 +82.65724009740846 1796804623.1 +78.83534426994342 1796807487.8 +76.00545653599679 1796810352.4 +73.98293355723023 1796813217.1 +72.71736928887074 1796816081.8 +72.31184837557531 1796818946.4 +73.10958643282298 1796821811.1 +76.08701522967804 1796824675.7 +84.08959882454127 1796827540.4 +87.82993595832505 1796888223.5 +82.70764614218153 1796891080.6 +78.90132663917058 1796893937.8 +76.08701522967804 1796896794.9 +74.07411894884395 1796899652.1 +72.82413100493854 1796902509.2 +72.42228716305388 1796905366.4 +73.23560154475564 1796908223.5 +76.21897996813239 1796911080.7 +84.18673384267663 1796913937.8 +87.8514619093008 1796974685.9 +82.75437511554382 1796977536.1 +78.963631936987 1796980386.4 +76.15894722542689 1796983236.6 +74.16162726904687 1796986086.9 +72.91531639655224 1796988937.1 +72.52904887912167 1796991787.4 +73.3483128873451 1796994637.6 +76.34131800865428 1796997487.9 +84.27424216287957 1797000338.1 +87.86703823375491 1797061145.6 +82.7892048358628 1797063989.6 +79.01998760828172 1797066833.5 +76.22492959465406 1797069677.5 +74.23723633620648 1797072521.4 +73.00282471675517 1797075365.4 +72.62618389725704 1797078209.3 +73.45507460341291 1797081053.3 +76.44807972472208 1797083897.2 +84.34985123003918 1797086741.2 +87.88034200309811 1797147602.6 +82.82403455618177 1797150440.9 +79.0703936530548 1797153279.2 +76.28496233735954 1797156117.4 +74.30321870543365 1797158955.7 +73.08438341043643 1797161794 +72.71369221745996 1797164632.2 +73.55220962154829 1797167470.5 +76.54521474285744 1797170308.8 +84.421783225788 1797173147 +87.89224125614145 1797234056.8 +82.86113683161163 1797236890 +79.1148500713062 1797239723.3 +76.34131800865428 1797242556.5 +74.36920107466081 1797245389.7 +73.15036577966362 1797248222.9 +72.78930128461958 1797251056.1 +73.63149576011864 1797253889.3 +76.63045050794946 1797256722.5 +84.4818159684935 1797259555.7 +87.90186795407388 1797320508.2 +82.88633985399817 1797323337 +79.15195234673607 1797326165.7 +76.38577442690568 1797328994.5 +74.41960711943388 1797331823.3 +73.2103985223691 1797334652.1 +72.85528365384674 1797337480.9 +73.70342775586747 1797340309.6 +76.70605957510908 1797343138.4 +84.53222201326656 1797345967.2 +87.91149465200631 1797406956.6 +82.9115428763847 1797409781.6 +79.18678206705502 1797412606.6 +76.4265537737463 1797415431.6 +74.46633609279618 1797418256.5 +73.26080456714217 1797421081.5 +72.91163932514148 1797423906.5 +73.76941012509464 1797426731.5 +76.77204194433624 1797429556.5 +84.5730013601072 1797432381.4 +87.92112134993874 1797493402 +82.93079627224957 1797496223.9 +79.21198508944155 1797499045.7 +76.46365604917618 1797501867.5 +74.5071154396368 1797504689.4 +73.30753354050448 1797507511.2 +72.96204536991455 1797510333 +73.8198161698677 1797513154.8 +76.82472054422021 1797515976.7 +84.60783108042617 1797518798.5 +87.92707097646041 1797579844.4 +82.94637259670367 1797582663.8 +79.23718811182809 1797585483.1 +76.48885907156271 1797588302.4 +74.5359955334341 1797591121.7 +73.33868618941267 1797593941 +72.99687509023352 1797596760.3 +73.86059551670834 1797599579.6 +76.86549989106085 1797602399 +84.63898372933436 1797605218.3 +87.93302060298208 1797666283.7 +82.958271849747 1797669101.2 +79.25276443628219 1797671918.6 +76.50811246742758 1797674736.1 +74.55752148440988 1797677553.6 +73.3638892117992 1797680371 +73.0280277391417 1797683188.5 +73.89174816561653 1797686005.9 +76.89437998485815 1797688823.4 +84.66050968031013 1797691640.8 +87.93302060298208 1797752719.9 +82.96789854767943 1797755536.1 +79.26239113421462 1797758352.4 +76.51773916536001 1797761168.6 +74.57309780886398 1797763984.9 +73.3794655362533 1797766801.1 +73.04360406359581 1797769617.3 +73.9110015614814 1797772433.6 +76.9159059358339 1797775249.8 +84.67013637824256 1797778066.1 +87.93669767439285 1797839152.9 +82.97157561909019 1797841968.6 +79.2683407607363 1797844784.2 +76.52368879188167 1797847599.9 +74.58272450679641 1797850415.6 +73.38909223418574 1797853231.3 +73.05323076152824 1797856047 +73.91695118800307 1797858862.7 +76.92553263376635 1797861678.3 +84.67976307617499 1797864494 +87.93669767439285 1797925582.6 +82.97157561909019 1797928398.4 +79.2683407607363 1797931214.2 +76.52368879188167 1797934030 +74.57677488027474 1797936845.7 +73.38909223418574 1797939661.5 +73.04728113500657 1797942477.3 +73.91695118800307 1797945293.1 +76.91958300724468 1797948108.8 +84.67381344965332 1797950924.6 +87.93302060298208 1798012009.1 +82.96789854767943 1798014825.7 +79.26239113421462 1798017642.2 +76.51773916536001 1798020458.7 +74.57309780886398 1798023275.2 +73.3794655362533 1798026091.8 +73.03765443707414 1798028908.3 +73.90137486354898 1798031724.8 +76.90400668279058 1798034541.3 +84.6641867517209 1798037357.8 +87.93302060298208 1798098432.4 +82.958271849747 1798101250.3 +79.24681480976052 1798104068.2 +76.50443539601682 1798106886.1 +74.5515718578882 1798109704 +73.35793958527753 1798112522 +73.01840104120927 1798115339.9 +73.8821214676841 1798118157.8 +76.88475328692572 1798120975.7 +84.64861042726679 1798123793.7 +87.92707097646041 1798184852.2 +82.94637259670367 1798187672.2 +79.23351104041733 1798190492.2 +76.48290944504105 1798193312.2 +74.52636883550169 1798196132.1 +73.332736562891 1798198952.1 +72.98724839230107 1798201772.1 +73.84501919225424 1798204592.1 +76.84992356660675 1798207412 +84.62340740488027 1798210232 +87.92112134993874 1798271268.8 +82.9271192008388 1798274091.5 +79.20603546291989 1798276914.2 +76.45175679613284 1798279736.8 +74.49521618659348 1798282559.5 +73.29195721605038 1798285382.2 +72.94646904546045 1798288204.9 +73.80056277400284 1798291027.5 +76.80319459324444 1798293850.2 +84.59452731108297 1798296672.9 +87.91149465200631 1798357682 +82.9115428763847 1798360508 +79.18083244053335 1798363334.1 +76.41692707581387 1798366160.1 +74.45670939486375 1798368986.1 +73.24522824268807 1798371812.1 +72.89606300068738 1798374638.1 +73.74420710270812 1798377464.2 +76.74316185053895 1798380290.2 +84.55374796424233 1798383116.2 +87.90554502548464 1798444091.8 +82.88633985399817 1798446921.9 +79.1460027202144 1798449751.9 +76.37614772897325 1798452581.9 +74.40998042150144 1798455411.9 +73.194822197915 1798458241.9 +72.83375770287097 1798461071.9 +73.67822473348095 1798463901.9 +76.67717948131178 1798466731.9 +84.50106936435837 1798469561.9 +87.89591832755221 1798530498.3 +82.85518720508996 1798533332.9 +79.10522337337376 1798536167.6 +76.32574168420018 1798539002.2 +74.34994767879596 1798541836.8 +73.12883982868784 1798544671.5 +72.76409826223305 1798547506.1 +73.60261566632136 1798550340.7 +76.59562078763052 1798553175.4 +84.44698624817454 1798556010 +87.88034200309811 1798616901.4 +82.82403455618177 1798619741.3 +79.05849440001145 1798622581.2 +76.26938601290546 1798625421.1 +74.28764238097955 1798628260.9 +73.05918038804991 1798631100.8 +72.68253956855177 1798633940.7 +73.51510734611841 1798636780.6 +76.50443539601682 1798639620.5 +84.38468095035815 1798642460.4 +87.87071530516567 1798703301.1 +82.7892048358628 1798706146.9 +79.00808835523839 1798708992.6 +76.20935327019995 1798711838.4 +74.21798294034161 1798714684.2 +72.97762169436864 1798717529.9 +72.59135417693807 1798720375.7 +73.41429525657229 1798723221.5 +76.40135075135979 1798726067.2 +84.30907188319854 1798728913 +87.85513898071157 1798789697.4 +82.74842548902217 1798792549.7 +78.95400523905455 1798795401.9 +76.14337090097278 1798798254.2 +74.13642424666035 1798801106.5 +72.88643630275494 1798803958.7 +72.49421915880271 1798806811 +73.30753354050448 1798809663.3 +76.29091196388121 1798812515.5 +84.22751318951727 1798815367.8 +87.83588558484672 1798876090.4 +82.70396907077077 1798878949.7 +78.89169994123814 1798881809.1 +76.06548927870229 1798884668.5 +74.04891592645741 1798887527.9 +72.78930128461958 1798890387.2 +72.38150781621324 1798893246.6 +73.18519549998257 1798896106 +76.16262429683765 1798898965.3 +84.13632779790358 1798901824.7 +87.8203092603926 1798962480 +82.65724009740846 1798965347 +78.81976794548932 1798968214.1 +75.98025351361025 1798971081.2 +73.95178090832205 1798973948.3 +72.68253956855177 1798976815.4 +72.26511940221302 1798979682.4 +73.05323076152824 1798982549.5 +76.02698248697256 1798985416.6 +84.03551570835744 1798988283.7 +87.80105586452774 1799048866.2 +82.60088442611374 1799051741.6 +78.7501085048514 1799054617 +75.89274519340732 1799057492.3 +73.85096881877591 1799060367.7 +72.56982822596231 1799063243.1 +72.13315466375866 1799066118.5 +72.91163932514148 1799068993.9 +75.87349179754246 1799071869.2 +83.92280436576796 1799074744.6 +87.77952991355197 1799135249.1 +82.544528754819 1799138133.4 +78.66854981117012 1799141017.7 +75.79788273038284 1799143901.9 +73.74420710270812 1799146786.2 +72.44381311402964 1799149670.4 +71.99524029878266 1799152554.7 +72.7544715643006 1799155439 +75.71632403670158 1799158323.2 +83.80046632524606 1799161207.5 +87.75432689116543 1799221628.8 +82.4844960121135 1799224522.5 +78.58699111748886 1799227416.2 +75.69479808572581 1799230309.9 +73.62781868870788 1799233203.6 +72.31184837557531 1799236097.3 +71.84997179098514 1799238991 +72.59135417693807 1799241884.8 +75.53763032488496 1799244778.5 +83.66850158679173 1799247672.2 +87.73280094018968 1799308005.1 +82.42446326940801 1799310908.8 +78.49580572587516 1799313812.6 +75.58803636965801 1799316716.3 +73.49953102166431 1799319620 +72.1739340105993 1799322523.8 +71.69053147503337 1799325427.5 +72.41266046512145 1799328331.2 +75.35525954165755 1799331234.9 +83.5209605238833 1799334138.7 +87.70392084639238 1799394378.2 +82.35253127365917 1799397292.5 +78.39867070773978 1799400206.8 +75.47164795565779 1799403121.1 +73.36756628320997 1799406035.4 +72.0227158762801 1799408949.7 +71.52373701626006 1799411864 +72.23028968189405 1799414778.3 +75.15136280745438 1799417692.6 +83.36379276304243 1799420606.9 +87.67871782400584 1799480748.1 +82.28059927791033 1799483673.5 +78.30153568960442 1799486598.9 +75.34930991513588 1799489524.3 +73.23192447334488 1799492449.7 +71.86327556032833 1799495375.1 +71.34504330444344 1799498300.5 +72.03234257421254 1799501225.9 +74.93783937531877 1799504151.3 +83.19104867774747 1799507076.7 +87.64756517509764 1799567114.8 +82.20499021075074 1799570051.9 +78.19477397353661 1799572988.9 +75.22329480320322 1799575925.9 +73.08438341043643 1799578862.9 +71.7024307280767 1799581800 +71.16267252121602 1799584737 +71.8224962134877 1799587674 +74.71468924525072 1799590611 +83.00272826799839 1799593548.1 +87.61641252618945 1799653478.4 +82.12938114359113 1799656427.6 +78.08433518605806 1799659376.7 +75.09133006474887 1799662325.9 +72.93089272100633 1799665275.1 +71.52968664278173 1799668224.3 +70.96472541353454 1799671173.4 +71.59934608341968 1799674122.6 +74.47596279072862 1799677071.8 +82.79883153379524 1799680020.9 +87.58753243239215 1799739838.9 +82.04187282338819 1799742800.7 +77.96794677205783 1799745762.5 +74.94973862836211 1799748724.3 +72.76777533364381 1799751686.1 +71.34504330444344 1799754648 +70.76082867933137 1799757609.8 +71.37024632682997 1799760571.6 +74.21798294034161 1799763533.4 +82.58163103024887 1799766495.2 +87.55043015696228 1799826196.3 +81.95663705829617 1799829171.2 +77.84560873153592 1799832146.2 +74.80587463686444 1799835121.1 +72.6009808748705 1799838096.1 +71.15672289469437 1799841071 +70.54730524719577 1799844046 +71.12784280089707 1799847020.9 +73.95178090832205 1799849995.9 +82.34290457572673 1799852970.8 +87.51560043664331 1799912550.7 +81.86545166668247 1799915539.3 +77.71732106449234 1799918527.8 +74.65465650254524 1799921516.4 +72.42823678957555 1799924504.9 +70.95877578701287 1799927493.5 +70.32415511712773 1799930482 +70.87354002192085 1799933470.6 +73.66859803554851 1799936459.2 +82.08265217022884 1799939447.7 +87.48077071632436 1799998902.1 +81.77426627506877 1800001904.8 +77.5913059525597 1800004907.4 +74.49521618659348 1800007910 +72.24586600634814 1800010912.6 +70.7571516079206 1800013915.3 +70.09137828912726 1800016917.9 +70.60366091849049 1800019920.5 +73.36756628320997 1800022923.2 +81.80314636886607 1800025925.8 +87.44366844089448 1800085250.6 +81.67118163041174 1800088267.8 +77.4533915875837 1800091284.9 +74.32842172782019 1800094302.1 +72.05754559659907 1800097319.2 +70.543628175785 1800100336.4 +69.84670220808347 1800103353.5 +70.32415511712773 1800106370.7 +73.05918038804991 1800109387.8 +81.49843754511676 1800112405 +87.40288909405385 1800171596.3 +81.5703695408656 1800174628.4 +77.31180015119692 1800177660.5 +74.16162726904687 1800180692.6 +71.86327556032833 1800183724.7 +70.32415511712773 1800186756.8 +69.59834905562889 1800189788.9 +70.0386996892433 1800192821 +72.72699598680316 1800195853.1 +81.16852569898093 1800198885.2 +87.36210974721321 1800257939.1 +81.46360782479779 1800260986.6 +77.16425908828847 1800264034.1 +73.98293355723023 1800267081.6 +71.66532845264683 1800270129 +70.09505536053803 1800273176.5 +69.338096650131 1800276224 +69.733990865494 1800279271.5 +72.38150781621324 1800282319 +80.81341083045855 1800285366.5 +87.31765332896181 1800344279.1 +81.35684610873 1800347342.4 +77.01076839885837 1800350405.7 +73.8042398454136 1800353469 +71.4577546470329 1800356532.2 +69.8563289060159 1800359595.5 +69.06821754670067 1800362658.8 +69.42560497033392 1800365722.1 +72.0227158762801 1800368785.4 +80.427143313028 1800371848.6 +87.27687398212119 1800430616.5 +81.24045769472977 1800433695.9 +76.85955026453918 1800436775.4 +73.61819199077546 1800439854.9 +71.24423121489731 1800442934.3 +69.61760245149377 1800446013.8 +68.78871174533789 1800449093.2 +69.09937019560886 1800452172.7 +71.6401254302603 1800455252.2 +80.00972314668921 1800458331.6 +87.22646793734812 1800516951.1 +81.12179672561862 1800520047.2 +76.69643287717665 1800523143.2 +73.4239219545047 1800526239.2 +71.02475815624003 1800529335.3 +69.3692492990392 1800532431.3 +68.4995792460427 1800535527.3 +68.76350872295136 1800538623.4 +71.24423121489731 1800541719.4 +79.55152363350982 1800544815.4 +87.17973896398581 1800603283.2 +81.00173124020763 1800606396.1 +76.5333154898141 1800609509.1 +73.23192447334488 1800612622.1 +70.79793095476123 1800615735.1 +69.10899689354129 1800618848 +68.20449712022582 1800621961 +68.41434348095066 1800625074 +70.82681104855853 1800628186.9 +79.05481732860069 1800631299.9 +87.12933291921274 1800689612.7 +80.87939319968574 1800692742.9 +76.36057140451915 1800695873.2 +73.0280277391417 1800699003.5 +70.56883119817154 1800702133.7 +68.84506741663263 1800705264 +67.89978829647653 1800708394.3 +68.05327898590663 1800711524.5 +70.39608711287657 1800714654.8 +78.51505912174002 1800717785.1 +87.07892687443969 1800775939.7 +80.7474284612314 1800779087.6 +76.18782731922418 1800782235.5 +72.82045393352777 1800785383.4 +70.3301047436494 1800788531.3 +68.5751883132023 1800791679.2 +67.59140240131647 1800794827.1 +67.68258779293016 1800797975 +69.93788759969716 1800801122.9 +77.92716742521719 1800804270.8 +87.0285208296666 1800862264.2 +80.61546372277706 1800865430.1 +76.00545653599679 1800868596 +72.60693050139217 1800871761.8 +70.0854286626056 1800874927.7 +68.30163213836119 1800878093.6 +67.26516762659139 1800881259.5 +67.2963202754996 1800884425.3 +69.46638431717457 1800887591.2 +77.29027420022115 1800890757.1 +86.97216515837188 1800948586.4 +80.48349898432274 1800951770.5 +75.82308575276937 1800954954.7 +72.38745744273491 1800958138.9 +69.83707551015102 1800961323 +68.012499639066 1800964507.2 +66.93893285186633 1800967691.4 +66.9004260601366 1800970875.5 +68.97335508367618 1800974059.7 +76.59929785904129 1800977243.8 +86.91580948707714 1801034906.2 +80.33963499282507 1801038109 +75.63476534302032 1801041311.7 +72.16798438407763 1801044514.5 +69.5827727311748 1801047717.2 +67.7233671397708 1801050920 +66.59939430779805 1801054122.7 +66.49263259173026 1801057325.5 +68.4551228277913 1801060528.3 +75.85423840167758 1801063731 +86.85945381578242 1801121223.8 +80.1980435564383 1801124445.4 +75.44049530674958 1801127667 +71.94115718259884 1801130888.7 +69.3225203256769 1801134110.3 +67.42828501395392 1801137332 +66.25390613720813 1801140553.6 +66.07153535398074 1801143775.3 +67.91536462093062 1801146996.9 +75.04460109138658 1801150218.5 +86.79942107307691 1801207539.1 +80.05050249352986 1801210779.9 +75.24849782558974 1801214020.7 +71.70610779948747 1801217261.5 +69.05859084876823 1801220502.3 +67.12357619020463 1801223743.1 +65.89879126868577 1801226984 +65.6348617917771 1801230224.8 +67.3563530182051 1801233465.6 +74.18088066491175 1801236706.4 +86.73711577526052 1801293852.2 +79.90296143062142 1801297112.5 +75.04460109138658 1801300372.8 +71.473330971487 1801303633 +68.78871174533789 1801306893.3 +66.81886736645534 1801310153.5 +65.53177714712005 1801313413.8 +65.19223860305179 1801316674 +66.77213839309303 1801319934.3 +73.2571274957314 1801323194.5 +86.67708303255502 1801380163.3 +79.74579366978055 1801383443.3 +74.84297691229432 1801386723.2 +71.22865489044321 1801390003.1 +68.51515557049679 1801393283.1 +66.50225928966269 1801396563 +65.16108595414359 1801399843 +64.73036201846163 1801403122.9 +66.16272074559443 1801406402.9 +72.27474610014544 1801409682.8 +86.61110066332785 1801466472.3 +79.58862590893969 1801469772.2 +74.6294534801587 1801473072.1 +70.9839788093994 1801476372 +68.23564976913401 1801479671.9 +66.18197414145929 1801482971.8 +64.78444513464547 1801486271.7 +64.25658618082812 1801489571.6 +65.52810007570929 1801492871.5 +71.23460451696488 1801496171.4 +86.54511829410069 1801552779.3 +79.42550852157716 1801556099.4 +74.41593004802311 1801559419.4 +70.73194858553407 1801562739.5 +67.9501943412496 1801566059.6 +65.85206229532346 1801569379.7 +64.39817761721488 1801572699.8 +63.773183645262186 1801576019.8 +64.86600382832673 1801579339.9 +70.14178433390033 1801582660 +86.4791359248735 1801639084.3 +79.26239113421462 1801642424.8 +74.19645698936584 1801645765.3 +70.47764580655785 1801649105.8 +67.6610618419544 1801652446.3 +65.52215044918762 1801655786.8 +64.00228340185188 1801659127.3 +63.28015441176382 1801662467.7 +64.18097711366852 1801665808.2 +68.99260847954106 1801669148.7 +86.40720392912468 1801725387.5 +79.09559667544133 1801728748.6 +73.97698393070858 1801732109.7 +70.22334302758159 1801735470.8 +67.36597971613753 1801738831.9 +65.18261190511936 1801742193 +63.60043955996722 1801745554.1 +62.76787178240059 1801748915.3 +63.46479775010212 1801752276.4 +67.79302658040872 1801755637.5 +86.33754448848674 1801811688.8 +78.92285259014635 1801815070.7 +73.75015672922979 1801818452.7 +69.95941355067293 1801821834.6 +67.06722051890989 1801825216.6 +64.8408008059402 1801828598.5 +63.18896902015012 1801831980.4 +62.243689899994024 1801835362.4 +62.7234153641492 1801838744.3 +66.5334119385709 1801842126.3 +86.25966286621625 1801897988.3 +78.74415887832973 1801901391.3 +73.52105697264008 1801904794.3 +69.69321151865337 1801908197.2 +66.76618876657137 1801911600.2 +64.4916355639395 1801915003.2 +62.77382140892226 1801918406.1 +61.71215387476592 1801921809.1 +61.95088032928805 1801925212.1 +65.21149199891666 1801928615 +86.18405379905664 1801984286.1 +78.567737721624 1801987710.3 +73.28600758952871 1801991134.5 +69.41965534381225 1801994558.7 +66.46147994282207 1801997982.8 +64.14019776682788 1802001407 +62.346774544651055 1802004831.2 +61.162768969972824 1802008255.4 +61.14719264551873 1802011679.6 +63.825862245146155 1802015103.7 +86.10844473189704 1802070582.2 +78.38309438328568 1802074027.8 +73.05323076152824 1802077473.4 +69.14609916897116 1802080918.9 +66.14714442114033 1802084364.5 +63.779133271783856 1802087810.1 +61.91972768037986 1802091255.6 +60.60375736724728 1802094701.2 +60.30867524143042 1802098146.8 +62.36602794051592 1802101592.4 +86.02688603821578 1802156876.7 +78.19477397353661 1802160343.8 +72.80855468048443 1802163810.9 +68.87027043901915 1802167278.1 +65.83648597086936 1802170745.2 +63.418068776739815 1802174212.3 +61.47710449165454 1802177679.5 +60.02916944006765 1802181146.6 +59.44495481495558 1802184613.7 +60.83285712383699 1802188080.9 +85.9453273445345 1802243169.6 +78.00277649237678 1802246658.4 +72.56615115455155 1802250147.3 +68.58708756624564 1802253636.1 +65.51620082266595 1802257125 +63.04737758376336 1802260613.8 +61.03080423151848 1802264102.7 +59.43900518843391 1802267591.5 +58.55008173957254 1802271080.4 +59.22180468488755 1802274569.2 +85.86376865085323 1802329460.9 +77.80850645610606 1802332971.6 +72.31552544698607 1802336482.4 +68.30163213836119 1802339993.1 +65.19591567446255 1802343503.8 +62.67668639078689 1802347014.5 +60.578554344860756 1802350525.3 +58.83921423886774 1802354036 +57.62037894387055 1802357546.7 +58.45889634795884 1802361057.4 +85.77853288576121 1802415750.8 +77.61055934842454 1802419283.5 +72.06717229453149 1802422816.3 +68.012499639066 1802426349 +64.86600382832673 1802429881.7 +62.300045571288756 1802433414.5 +60.120354831681354 1802436947.2 +58.22611951995838 1802440480 +56.655846427849575 1802444012.7 +55.72982070355833 1802447545.4 +85.69102456555828 1802502039.2 +77.41261224074306 1802505594.1 +71.8091924441445 1802509149 +67.7233671397708 1802512703.9 +64.54204160871255 1802516258.8 +61.91972768037986 1802519813.7 +59.65252862056951 1802523368.6 +57.60112554800568 1802526923.5 +55.65421163639874 1802530478.4 +53.835585391835366 1802534033.2 +85.59983917394457 1802588326.2 +77.20503843512911 1802591903.4 +71.54894003864659 1802595480.6 +67.42828501395392 1802599057.8 +64.20618013605505 1802602634.9 +61.53346016294928 1802606212.1 +59.18470240945768 1802609789.3 +56.96055525159888 1802613366.5 +54.6214241960397 1802616943.6 +51.83231580893369 1802620520.8 +85.50270415580921 1802674611.9 +76.99746462951519 1802678211.5 +71.2909601882596 1802681811.1 +67.1272532616154 1802685410.7 +63.87031866339755 1802689010.2 +61.14719264551873 1802692609.8 +58.70357242900265 1802696209.4 +56.310358257259644 1802699809 +53.5560795904726 1802703408.6 +49.71860743855346 1802707008.2 +85.4115187641955 1802760896.3 +76.78394119737959 1802764518.4 +71.02108108482926 1802768140.5 +66.82849406438777 1802771762.6 +63.53445719074005 1802775384.7 +60.75497550156648 1802779006.8 +58.22016989343671 1802782628.9 +55.64458493846631 1802786251 +52.45136015436473 1802789873.1 +44.09733876238992 1802793495.2 +85.31438374606013 1802847179.4 +76.5644681387223 1802850824.2 +70.75120198139894 1802854468.9 +66.52378524063846 1802858113.6 +63.18896902015012 1802861758.4 +60.35540421479273 1802865403.1 +57.72714065993834 1802869047.8 +54.966912366629636 1802872692.6 +51.314083553048796 1802876337.3 +0.0 1802879982 +85.213571656514 1802933461.4 +76.34499508006505 1802937128.8 +70.48132287796861 1802940796.3 +66.21907641688918 1802944463.7 +62.84943047608186 1802948131.2 +59.95723744431882 1802951798.7 +57.23411142643998 1802955466.1 +54.27593602544977 1802959133.6 +50.13970467630298 1802962801.1 +0.0 1802966468.5 +85.10680994044621 1803019742.1 +76.12184494999701 1803023432.4 +70.2077667031275 1803027122.7 +65.9084179666182 1803030813 +62.497992678970256 1803034503.3 +59.55171653102338 1803038193.6 +56.73145549500917 1803041883.9 +53.569383359815795 1803045574.2 +48.930496079238225 1803049264.5 +0.0 1803052954.8 +85.00599785090007 1803106021.7 +75.89274519340732 1803109734.9 +69.92826090176473 1803113448.2 +65.59408244493645 1803117161.4 +62.14882743696955 1803120874.6 +59.14392306261705 1803124587.8 +56.22284993705671 1803128301 +52.8532039962494 1803132014.2 +47.68645776185449 1803135727.5 +0.0 1803139440.7 +84.89328650831061 1803192300.3 +75.65996836540685 1803196036.5 +69.64280547388029 1803199772.7 +65.2834239946655 1803203508.9 +61.79738963985795 1803207245.2 +58.738402149321615 1803210981.4 +55.71056730769347 1803214717.6 +52.12739793475056 1803218453.8 +46.405317169040885 1803222190.1 +0.0 1803225926.3 +84.7865247922428 1803278577.8 +75.42719153740639 1803282337.1 +69.35962260110676 1803286096.4 +64.96313884646209 1803289855.7 +61.442274771335576 1803293615 +58.32098198298284 1803297374.3 +55.19233505180857 1803301133.6 +51.38601554879763 1803304892.9 +45.09529648242999 1803308652.2 +0.0 1803312411.6 +84.67013637824256 1803364854.3 +75.18251545636258 1803368636.7 +69.06821754670067 1803372419.2 +64.64285369825869 1803376201.7 +61.08715990281322 1803379984.2 +57.90583437175498 1803383766.6 +54.668153169402004 1803387549.1 +50.63273390980136 1803391331.6 +43.74222389386755 1803395114 +0.0 1803398896.5 +84.55374796424233 1803451129.8 +74.93783937531877 1803454935.5 +68.77908504740547 1803458741.2 +64.3225685500553 1803462546.9 +60.72609540776918 1803466352.6 +57.48841420541621 1803470158.3 +54.140294215584674 1803473964 +49.86614850146189 1803477769.7 +42.360271211507815 1803481575.4 +0.0 1803485381.1 +84.43140992372044 1803537404.4 +74.68948622286422 1803541233.4 +68.4840029215886 1803545062.4 +63.99860633044112 1803548891.4 +60.36503091272515 1803552720.4 +57.06731696766668 1803556549.4 +53.60648563524566 1803560378.4 +49.09361346660076 1803564207.5 +40.943488808829116 1803568036.5 +0.0 1803571865.5 +84.30907188319854 1803623678.2 +74.44113307040963 1803627530.5 +68.18524372436096 1803631382.9 +63.672371555716055 1803635235.3 +60.00396641768112 1803639087.6 +56.643947174806236 1803642940 +53.07267705490667 1803646792.3 +48.30182503587476 1803650644.7 +39.489604130720544 1803654497.1 +0.0 1803658349.4 +84.18078421615498 1803709951.1 +74.18088066491175 1803713826.9 +67.88421197202243 1803717702.6 +63.342459709580226 1803721578.4 +59.63695229611541 1803725454.2 +56.21690031053504 1803729330 +52.52924177663523 1803733205.7 +47.50181442351619 1803737081.5 +38.00456680370377 1803740957.3 +0.0 1803744833.1 +84.04881947770063 1803796223.2 +73.92290081452474 1803800122.4 +67.57950314827313 1803804021.7 +63.0125478634444 1803807920.9 +59.272210729660614 1803811820.2 +55.79212600137475 1803815719.4 +51.97985687184213 1803819618.6 +46.69077259692532 1803823517.9 +36.48697231147894 1803827417.1 +0.4581995131794051 1803831316.4 +83.91317766783553 1803882494.5 +73.65897133761608 1803886417.2 +67.27479432452382 1803890340 +62.67668639078689 1803894262.8 +58.90519660809491 1803898185.5 +55.359129510581866 1803902108.3 +51.43047196704902 1803906031.1 +45.865558962180216 1803909953.8 +34.93000298871334 1803913876.6 +0.47377583763350667 1803917799.4 +83.77526330285954 1803968765.1 +73.38909223418574 1803972711.4 +66.96640842936378 1803976657.7 +62.340824918129385 1803980604.1 +58.53450541511844 1803984550.4 +54.926133019789006 1803988496.7 +50.87740999084516 1803992443.1 +45.03299118461358 1803996389.4 +33.34047650073967 1804000335.7 +0.0 1804004282 +83.62772223995111 1804055035 +73.11326350423374 1804059004.9 +66.64980035257113 1804062974.8 +62.00496344547189 1804066944.8 +58.16381422214197 1804070914.7 +54.49540908410704 1804074884.6 +50.318398388119626 1804078854.6 +44.19079670911453 1804082824.5 +31.719797363857797 1804086794.5 +0.0 1804090764.4 +83.48018117704268 1804141304.2 +72.83375770287097 1804145297.8 +66.3354648308894 1804149291.3 +61.67137452792528 1804153284.9 +57.793123029165514 1804157278.5 +54.0587355219034 1804161272.1 +49.75938678539409 1804165265.7 +43.33670298057212 1804169259.3 +30.058338880135295 1804173252.8 +0.0 1804177246.4 +83.32896304272347 1804227572.8 +72.55425190150821 1804231590 +66.02112930920768 1804235607.3 +61.329563428746106 1804239624.6 +57.41648220966738 1804243641.8 +53.622061959699764 1804247659.1 +49.19442555614689 1804251676.4 +42.47665962550805 1804255693.6 +28.365727747504586 1804259710.9 +0.0 1804263728.2 +83.1695227267717 1804313840.8 +72.26511940221302 1804317881.8 +65.70084416100427 1804321922.7 +60.990024884677844 1804325963.7 +57.04211394528015 1804330004.7 +53.18311584238523 1804334045.7 +48.625787255488916 1804338086.7 +41.60331250110078 1804342127.6 +26.632337268033254 1804346168.6 +0.0 1804350209.6 +83.00867789452006 1804400108.2 +71.97598690291781 1804404173 +65.37460938627919 1804408237.7 +60.64453671408791 1804412302.4 +56.66915019719277 1804416367.1 +52.7464422801816 1804420431.8 +48.057148954830964 1804424496.6 +40.72401575017185 1804428561.3 +24.864117068242948 1804432626 +0.0 1804436690.7 +82.83961088063586 1804486375.2 +71.68090477710093 1804490463.7 +65.05064716666504 1804494552.1 +60.30272561490875 1804498640.6 +56.29478193280554 1804502729.1 +52.306091646567204 1804506817.6 +47.48256102765132 1804510906.1 +39.82914267478881 1804514994.6 +23.061067148133677 1804519083.1 +0.0 1804523171.6 +82.6668667953409 1804572641.6 +71.37619595335164 1804576753.9 +64.72441239193996 1804580866.2 +59.95723744431882 1804584978.5 +55.9181411133074 1804589090.7 +51.8634684578419 1804593203 +46.907973100471686 1804597315.3 +38.93426959940577 1804601427.6 +21.22091495259454 1804605539.9 +0.0 1804609652.1 +82.49044563863517 1804658907.6 +71.07148712960233 1804663043.7 +64.39450054580412 1804667179.8 +59.60807220231812 1804671315.9 +55.5378232223985 1804675452 +51.42084526911659 1804679588.1 +46.32970810188129 1804683724.2 +38.0297698260903 1804687860.2 +19.33998341021477 1804691996.3 +0.0 1804696132.4 +82.3021252288861 1804745173.1 +70.76082867933137 1804749333.1 +64.05863907314662 1804753493 +59.26258403172818 1804757652.9 +55.161182402900366 1804761812.8 +50.97822208039129 1804765972.8 +45.74917054817999 1804770132.7 +37.1156433548424 1804774292.6 +17.4301717740377 1804778452.6 +0.0 1804782612.5 +82.10785519261536 1804831438.3 +70.44649315764964 1804835622.1 +63.722777600489124 1804839805.9 +58.91114623461658 1804843989.6 +54.780864511991474 1804848173.4 +50.535598891665984 1804852357.2 +45.16495592306791 1804856541 +36.19556725707283 1804860724.7 +15.47958079102 1804864908.5 +0.0 1804869092.3 +81.9062310135231 1804917703.1 +70.12620800944623 1804921910.7 +63.383239056420855 1804926118.4 +58.56565806402664 1804930326 +54.40422369249333 1804934533.7 +50.08929863152992 1804938741.3 +44.58074129795585 1804942948.9 +35.2718140878925 1804947156.6 +13.501514230504856 1804951364.2 +0.0 1804955571.8 +81.69638465279827 1805003967.6 +69.79997323472116 1805008199.1 +63.041427957241694 1805012430.6 +58.21422026691504 1805016662.1 +54.02163324647353 1805020893.6 +49.64667544280462 1805025125.1 +43.996526672843785 1805029356.6 +34.3421112921905 1805033588.1 +11.488617949670754 1805037819.7 +0.0 1805042051.2 +81.48286122066266 1805090231.8 +69.47006138858534 1805094487.2 +62.701889413173426 1805098742.5 +57.85910539839268 1805102997.9 +53.64131535556463 1805107253.3 +49.20037518266856 1805111508.7 +43.412312047731724 1805115764.1 +33.40645886996683 1805120019.5 +9.452791201561025 1805124274.9 +0.0 1805128530.3 +81.25376146407297 1805176495.7 +69.13419991592784 1805180775 +62.356401242583495 1805185054.2 +57.50766760128107 1805189333.5 +53.264674536066494 1805193612.8 +48.75775199394326 1805197892.1 +42.82214779609798 1805202171.3 +32.46117974981073 1805206450.6 +7.399115573886284 1805210729.9 +0.0 1805215009.2 +81.0209846360725 1805262759.3 +68.78871174533789 1805267062.5 +62.01091307199356 1805271365.7 +57.15850235928038 1805275668.9 +52.884356645157595 1805279972 +48.315128805217945 1805284275.2 +42.23425609957515 1805288578.4 +31.521850256176297 1805292881.6 +5.32618655034668 1805297184.7 +0.0 1805301487.9 +80.77630855502869 1805349022.8 +68.44322357474796 1805353349.9 +61.65947527488194 1805357677 +56.80338749075801 1805362004 +52.50771582565946 1805366331.1 +47.86882854508188 1805370658.2 +41.64409184794142 1805374985.2 +30.570621509498523 1805379312.3 +3.247307900285408 1805383639.4 +0.0 1805387966.4 +80.52200577605247 1805435286.1 +68.09405833274727 1805439637.1 +61.31031003288125 1805443988 +56.451949693646405 1805448339 +52.12739793475056 1805452690 +47.42620535635659 1805457040.9 +41.05392759630768 1805461391.9 +29.62166531793166 1805465742.9 +1.1743788767458054 1805470093.8 +0.0 1805474444.8 +80.25439922773302 1805521549.3 +67.73299383770323 1805525924.1 +60.95292260924798 1805530299 +56.09683482512404 1805534673.9 +51.75075711525242 1805539048.7 +46.98358216763129 1805543423.6 +40.46008627326318 1805547798.4 +28.664486944732214 1805552173.3 +0.0 1805556548.1 +0.0 1805560923 +79.97489342637026 1805607812.3 +67.3719293426592 1805612211.1 +60.597807740725614 1805616609.8 +55.739447401490764 1805621008.6 +51.37043922434353 1805625407.3 +46.54323153401689 1805629806.1 +39.86992202162945 1805634204.8 +27.709581126643684 1805638603.6 +0.0 1805643002.3 +0.0 1805647401.1 +79.67981130055338 1805694075.3 +67.00123814968272 1805698497.9 +60.23674324568158 1805702920.5 +55.3843325329684 1805707343.2 +50.99379840484539 1805711765.8 +46.10060834529159 1805716188.5 +39.28203032510662 1805720611.1 +26.754675308555157 1805725033.7 +0.0 1805729456.4 +0.0 1805733879 +79.36915285028243 1805780338.2 +66.6245973301846 1805784784.7 +59.88162837715922 1805789231.2 +55.0328947358568 1805793677.7 +50.61715758534726 1805798124.2 +45.65798515656628 1805802570.8 +38.69186607347288 1805807017.3 +25.799769490466613 1805811463.8 +0.0 1805815910.3 +0.0 1805820356.8 +79.04519063066826 1805866601.1 +66.2442794392757 1805871071.5 +59.51688681070442 1805875541.8 +54.67777986733443 1805880012.2 +50.24278932096002 1805884482.6 +45.21536196784098 1805888953 +38.101701821839136 1805893423.4 +24.844863672378082 1805897893.8 +0.0 1805902364.1 +0.0 1805906834.5 +78.70337953148909 1805952864 +65.85801192184513 1805957358.2 +59.15582231566039 1805961852.4 +54.32266499881207 1805966346.7 +49.86614850146189 1805970840.9 +44.778688405637354 1805975335.2 +37.511537570205405 1805979829.4 +23.887685299178642 1805984323.6 +0.0 1805988817.9 +0.0 1805993312.1 +78.34231503644504 1806039126.9 +65.46211770648213 1806043645 +58.78880819409468 1806048163.1 +53.9675501302897 1806052681.1 +49.48950768196375 1806057199.2 +44.342014843433724 1806061717.3 +36.92364587368257 1806066235.4 +22.932779481090108 1806070753.5 +0.0 1806075271.6 +0.0 1806079789.7 +77.96199714553616 1806125389.9 +65.06027386459745 1806129931.8 +58.42406662763988 1806134473.7 +53.610162706656425 1806139015.6 +49.11881648898729 1806143557.5 +43.90534128123009 1806148099.5 +36.333481622048836 1806152641.4 +21.983823289523244 1806157183.3 +0.0 1806161725.2 +0.0 1806166267.1 +77.56015330365149 1806211653 +64.65843002271279 1806216218.7 +58.05337543466342 1806220784.4 +53.25504783813406 1806225350.2 +48.742175669489164 1806229915.9 +43.46866771902645 1806234481.6 +35.749266996936775 1806239047.3 +21.032594542845473 1806243613 +0.0 1806248178.8 +0.0 1806252744.5 +77.13310643938028 1806297916.2 +64.24100985637402 1806302505.7 +57.68041168657604 1806307095.3 +52.90361004102246 1806311684.8 +48.37148447651268 1806316274.3 +43.03199415682282 1806320863.8 +35.1650523718247 1806325453.3 +20.08363835127861 1806330042.8 +0.0 1806334632.3 +0.0 1806339221.8 +76.68085655272255 1806384179.6 +63.825862245146155 1806388792.9 +57.30972049359958 1806393406.2 +52.54849517250009 1806398019.5 +48.00079328353622 1806402632.7 +42.598997666029945 1806407246 +34.5845148181234 1806411859.3 +19.142036302533267 1806416472.6 +0.0 1806421085.8 +0.0 1806425699.1 +76.19972657226752 1806470443.2 +63.39881538087496 1806475080.2 +56.93535222921234 1806479717.2 +52.19338030397773 1806484354.3 +47.63605171708142 1806488991.3 +42.17195080175874 1806493628.3 +34.000300193011334 1806498265.3 +18.202706808898835 1806502902.3 +0.0 1806507539.4 +0.0 1806512176.4 +75.68517138779337 1806556707 +62.96581889008208 1806561367.7 +56.558711409714206 1806566028.5 +51.84194250686613 1806570689.2 +47.26903759551573 1806575350 +41.74122686607679 1806580010.7 +33.422035194420936 1806584671.4 +17.267054386675166 1806589332.2 +0.0 1806593992.9 +0.0 1806598653.6 +75.14173610952194 1806642971.1 +62.523195701356784 1806647655.5 +56.18207059021607 1806652339.9 +51.48682763834376 1806657024.3 +46.898346402539254 1806661708.8 +41.31418000180558 1806666393.2 +32.8474472672413 1806671077.6 +16.337351590973164 1806675762 +0.0 1806680446.4 +0.0 1806685130.9 +74.56347111093154 1806729235.4 +62.07689544122072 1806733943.5 +55.805429770717936 1806738651.6 +51.135389841232154 1806743359.6 +46.53728190749522 1806748067.7 +40.89081020894514 1806752775.8 +32.27285934006166 1806757483.9 +15.417275493203594 1806762191.9 +0.0 1806766900 +0.0 1806771608.1 +73.94215421038962 1806815500.1 +61.624645554562974 1806820231.8 +55.42511187980903 1806824963.5 +50.78622459923146 1806829695.2 +46.172540341040424 1806834426.9 +40.46603589978485 1806839158.5 +31.704221039403695 1806843890.2 +14.503149021955698 1806848621.9 +0.0 1806853353.6 +0.0 1806858085.3 +73.28600758952871 1806901765.1 +61.162768969972824 1806906520.3 +55.04479398890014 1806911275.6 +50.43478680211985 1806916030.9 +45.815152917407154 1806920786.2 +40.04861573344608 1806925541.5 +31.13558273874573 1806930296.8 +13.59269962211856 1806935052 +0.0 1806939807.3 +0.0 1806944562.6 +72.5854045504164 1806988030.4 +60.69494275886098 1806992809.3 +54.662203542880334 1806997588.1 +50.08334900500825 1807002366.9 +45.454088422363114 1807007145.7 +39.62751849569655 1807011924.6 +30.566944438087763 1807016703.4 +12.688199848803093 1807021482.2 +0.0 1807026261.1 +0.0 1807031039.9 +71.8380725379418 1807074296.2 +60.22116692122748 1807079098.5 +54.281885651971436 1807083900.9 +49.73786083441832 1807088703.2 +45.09897355384074 1807093505.5 +39.21377540076854 1807098307.9 +30.00793283536223 1807103110.2 +11.795599328530963 1807107912.5 +0.0 1807112714.9 +0.0 1807117517.2 +71.04628410721581 1807160562.4 +59.74003694077245 1807165388.2 +53.89561813454087 1807170214 +49.38869559241762 1807175039.8 +44.74385868531839 1807179865.6 +38.802304860951445 1807184691.4 +29.448921232636696 1807189517.2 +10.910352951080357 1807194343 +0.0 1807199168.7 +0.0 1807203994.5 +70.21144377453827 1807246829.1 +59.25068477868484 1807251678.3 +53.51530024363196 1807256527.5 +49.043207421827695 1807261376.7 +44.38874381679602 1807266225.9 +38.390834321134335 1807271075.1 +28.88990962991116 1807275924.3 +10.031056200151422 1807280773.5 +0.0 1807285622.7 +0.0 1807290471.9 +69.32846995219857 1807333096.3 +58.75397847377572 1807337968.9 +53.1290327262014 1807342841.4 +48.697719251237764 1807347714 +44.03730601968442 1807352586.6 +37.98531340783891 1807357459.1 +28.340524725118055 1807362331.7 +9.161386147154916 1807367204.2 +0.0 1807372076.8 +0.0 1807376949.3 +68.408393854429 1807419364.1 +58.24537291582324 1807424259.9 +52.742765208770834 1807429155.8 +48.35590815205858 1807434051.7 +43.69181784909449 1807438947.5 +37.57751993943257 1807443843.4 +27.79113982032495 1807448739.2 +8.303615347201752 1807453635.1 +0.0 1807458531 +0.0 1807463426.8 +67.44753840981879 1807505632.4 +57.736767357870775 1807510551.5 +52.356497691340266 1807515470.6 +48.016369607990335 1807520389.7 +43.34632967850455 1807525308.8 +37.177948652658806 1807530227.9 +27.247704542053523 1807535147 +7.455471245181019 1807540066.1 +0.0 1807544985.2 +0.0 1807549904.3 +66.4578028714113 1807591901.3 +57.21853510198587 1807596843.6 +51.9702301739097 1807601785.9 +47.67683106392206 1807606728.2 +43.00084150791462 1807611670.5 +36.779781882184906 1807616612.8 +26.71021889030376 1807621555 +6.616953841092716 1807626497.3 +0.0 1807631439.6 +0.0 1807636381.9 +65.44059175550636 1807678170.9 +56.69067614816854 1807683136.3 +51.58396265647912 1807688101.7 +47.33501996474289 1807693067.1 +42.66130296384636 1807698032.5 +36.3838876668219 1807702997.9 +26.170460683443082 1807707963.3 +5.788063134936846 1807712928.7 +0.0 1807717894.1 +0.0 1807722859.5 +64.40412724373654 1807764441.1 +56.15686756782954 1807769429.6 +51.191745512526886 1807774418 +46.99915849208539 1807779406.5 +42.31949186466718 1807784394.9 +35.993943077980575 1807789383.4 +25.64260172962575 1807794371.9 +4.971071681824316 1807799360.3 +0.0 1807804348.8 +0.0 1807809337.2 +63.348409336101895 1807850712 +55.613432289558105 1807855723.5 +50.805477995096325 1807860734.9 +46.66556957453879 1807865746.4 +41.98363039200968 1807870757.8 +35.60172593402833 1807875769.2 +25.11247022069751 1807880780.7 +4.167383998054977 1807885792.1 +0.0 1807890803.5 +0.0 1807895815 +62.271165477491465 1807936983.7 +55.064047384765 1807942018.1 +50.41921047766575 1807947052.4 +46.32970810188129 1807952086.7 +41.65004147446309 1807957121.1 +35.21545841659776 1807962155.4 +24.59423796481261 1807967189.7 +3.36964594080731 1807972224.1 +0.0 1807977258.4 +0.0 1807982292.7 +61.18202236583769 1808023256.2 +54.51098540856113 1808028313.4 +50.029265888824426 1808033370.5 +45.99979625574546 1808038427.7 +41.323806699738014 1808043484.8 +34.83514052568888 1808048542 +24.076005708927713 1808053599.1 +2.5874842080137443 1808058656.3 +0.0 1808063713.4 +0.0 1808068770.6 +60.07957548484072 1808109529.5 +53.94602417931393 1808114609.4 +49.64299837139386 1808119689.3 +45.667611854498716 1808124769.2 +40.993894853602185 1808129849 +34.458499706190736 1808134928.9 +23.563723079564483 1808140008.8 +1.8149491731526082 1808145088.7 +0.0 1808150168.6 +0.0 1808155248.4 +58.95787520797889 1808195803.7 +53.377385878655964 1808200906.2 +49.25673085396329 1808206008.7 +45.34364963488455 1808211111.2 +40.66766007887711 1808216213.7 +34.08185888669261 1808221316.3 +23.061067148133677 1808226418.8 +1.0520408362239033 1808231521.3 +0.0 1808236623.8 +0.0 1808241726.3 +57.81832605155204 1808282078.7 +52.79684832495466 1808287203.8 +48.87046333653273 1808292328.8 +45.017414860159484 1808297453.9 +40.34737493067371 1808302579 +33.711167693716135 1808307704 +22.55841121670288 1808312829.1 +0.3047088237493 1808317954.2 +0.0 1808323079.2 +0.0 1808328204.3 +56.66547312578201 1808368354.7 +52.21858332636427 1808373502.2 +48.48419581910215 1808378649.7 +44.693452640545324 1808383797.2 +40.027089782470306 1808388944.7 +33.34642612726134 1808394092.2 +22.065381983204514 1808399239.7 +0.0 1808404387.2 +0.0 1808409534.7 +0.0 1808414682.2 +55.4910942490362 1808454631.6 +51.62474200331976 1808459801.5 +48.09792830167159 1808464971.3 +44.376844563752684 1808470141.1 +39.71275426078858 1808475311 +32.9853616322173 1808480480.8 +21.572352749706145 1808485650.7 +0.0 1808490820.5 +0.0 1808495990.4 +0.0 1808501160.2 +56.77591191326057 1808540909.6 +51.02862812516436 1808546101.6 +47.711660784241026 1808551293.7 +44.05655941554929 1808556485.8 +39.40209581051761 1808561677.8 +32.62429713717327 1808566869.9 +21.08895021414021 1808572062 +0.0 1808577254 +0.0 1808582446.1 +0.0 1808587638.2 +53.082303752839096 1808627188.6 +50.42516010418742 1808632402.7 +47.32907033822122 1808637616.9 +43.74222389386755 1808642831.1 +39.09370991535755 1808648045.3 +32.27285934006166 1808653259.4 +20.611497305095938 1808658473.6 +0.0 1808663687.8 +0.0 1808668901.9 +0.0 1808674116.1 +51.8478921333878 1808713468.7 +49.815742456688824 1808718704.8 +46.94875244731232 1808723941 +43.43156544359658 1808729177.1 +38.792678163019005 1808734413.3 +31.923694098060967 1808739649.4 +20.137721467462434 1808744885.6 +0.0 1808750121.7 +0.0 1808755357.9 +0.0 1808760594 +50.59195456296072 1808799749.9 +49.20037518266856 1808805007.9 +46.56843455640342 1808810265.9 +43.12317954843652 1808815523.9 +38.4879693392697 1808820781.9 +31.578205927471032 1808826039.9 +19.67216781146151 1808831297.9 +0.0 1808836555.9 +0.0 1808841813.9 +0.0 1808847071.9 +49.316763596668785 1808886032.3 +48.58133083723752 1808891312 +46.18584411038362 1808896591.7 +42.81847072468722 1808901871.4 +38.192887213452835 1808907151.1 +31.23639482829186 1808912430.9 +19.213968298282104 1808917710.6 +0.0 1808922990.3 +0.0 1808928270 +0.0 1808933549.7 +48.022319234512004 1808972315.9 +47.956336865284825 1808977617.2 +45.81147584599639 1808982918.4 +42.51376190093792 1808988219.7 +37.89780508763597 1808993521 +30.900533355634355 1808998822.3 +18.761718411624372 1809004123.6 +0.0 1809009424.9 +0.0 1809014726.2 +0.0 1809020027.5 +46.704076366268524 1809058600.7 +47.32539326681046 1809063923.4 +45.43483502649825 1809069246.1 +42.21273014859938 1809074568.9 +37.60867258834077 1809079891.6 +30.566944438087763 1809085214.3 +18.315418151488306 1809090537 +0.0 1809095859.7 +0.0 1809101182.4 +0.0 1809106505.1 +44.22562642943349 1809144886.9 +46.69077259692532 1809150230.9 +45.05819420700011 1809155574.8 +41.917648022782515 1809160918.8 +37.32548971556724 1809166262.8 +30.24070966336269 1809171606.8 +17.872794962763003 1809176950.7 +0.0 1809182294.7 +0.0 1809187638.7 +0.0 1809192982.7 +39.945531088789046 1809231174.4 +46.053879371929284 1809236539.5 +44.687503014023655 1809241904.5 +41.62256589696565 1809247269.6 +37.0400342876828 1809252634.7 +29.92042451515929 1809257999.8 +17.43979847197013 1809263364.8 +0.0 1809268729.9 +0.0 1809274095 +0.0 1809279460 +42.604947292551614 1809317463.3 +45.41330907552248 1809322849.3 +44.316811821047196 1809328235.3 +41.33343339767044 1809333621.3 +36.76647811284171 1809339007.3 +29.60013936695589 1809344393.3 +17.01275160769893 1809349779.3 +0.0 1809355165.3 +0.0 1809360551.3 +0.0 1809365937.3 +35.048663957824466 1809403753.6 +44.76906170770493 1809409160.3 +43.949797699481486 1809414567.1 +41.05025052489692 1809419973.8 +36.4906493828897 1809425380.6 +29.28948091668492 1809430787.3 +16.591654369949406 1809436194.1 +0.0 1809441600.8 +0.0 1809447007.5 +0.0 1809452414.3 +29.60013936695589 1809490045.4 +44.118864713365696 1809495472.7 +43.58505613302669 1809500900 +40.76479509701248 1809506327.3 +36.220770279459366 1809511754.6 +28.981095021524855 1809517181.9 +16.1801838301323 1809522609.2 +0.0 1809528036.5 +0.0 1809533463.8 +0.0 1809538891.1 +32.4671293763324 1809576338.7 +43.47234479043721 1809581786.4 +43.22399163798265 1809587234 +40.49123892217138 1809592681.7 +35.9568408025507 1809598129.4 +28.676386197775557 1809603577 +15.772390361725959 1809609024.7 +0.0 1809614472.3 +0.0 1809619920 +0.0 1809625367.7 +31.628611972244098 1809662633.6 +42.82214779609798 1809668101.4 +42.86292714293862 1809673569.3 +40.21541019221937 1809679037.1 +35.69291132564204 1809684504.9 +28.381304071958688 1809689972.7 +15.376496146362959 1809695440.5 +0.0 1809700908.3 +0.0 1809706376.1 +0.0 1809711843.9 +22.55246159018121 1809748930.1 +42.17195080175874 1809754417.9 +42.50781227441625 1809759905.6 +39.94185401737828 1809765393.4 +35.4386085466658 1809770881.1 +28.08622194614182 1809776368.9 +14.986551557521635 1809781856.6 +0.0 1809787344.4 +0.0 1809792832.1 +0.0 1809798319.9 +20.306788481346643 1809835228.3 +41.521753807419515 1809840735.8 +42.156374477304645 1809846243.3 +39.67792454046961 1809851750.7 +35.18430576768956 1809857258.2 +27.800766518257383 1809862765.6 +14.600284040091067 1809868273.1 +0.0 1809873780.6 +0.0 1809879288 +0.0 1809884795.5 +0.0 1809921528.2 +40.871556813080275 1809927055.2 +41.80720923530395 1809932582.1 +39.41399506356095 1809938109.1 +34.941902241756665 1809943636 +27.52126071689462 1809949162.9 +14.223643220592928 1809954689.9 +0.0 1809960216.8 +0.0 1809965743.8 +0.0 1809971270.7 +0.0 1810007829.9 +40.225036890151806 1810013376.1 +41.46539813612478 1810018922.2 +39.159692284584715 1810024468.4 +34.697226160712866 1810030014.6 +27.247704542053523 1810035560.8 +13.856629099027222 1810041107 +0.0 1810046653.2 +0.0 1810052199.3 +0.0 1810057745.5 +0.0 1810094133.4 +39.57483989581257 1810099698.5 +41.125859592056514 1810105263.7 +38.905389505608476 1810110828.9 +34.45849970619073 1810116394 +26.97782543862319 1810121959.2 +13.491887532572425 1810127524.4 +0.0 1810133089.5 +0.0 1810138654.7 +0.0 1810144219.9 +0.0 1810180438.7 +38.93426959940577 1810186022.6 +40.789998119399016 1810191606.5 +38.65703635315391 1810197190.4 +34.225722878190275 1810202774.2 +26.71021889030376 1810208358.1 +13.140449735460821 1810213942 +0.0 1810219525.9 +0.0 1810225109.8 +0.0 1810230693.7 +0.0 1810266745.9 +38.2900222315882 1810272348.3 +40.46008627326318 1810277950.6 +38.41236027211011 1810283552.9 +33.99662312160057 1810289155.3 +26.45591611132752 1810294757.6 +12.794961564870892 1810300360 +0.0 1810305962.3 +0.0 1810311564.6 +0.0 1810317167 +0.0 1810353055.1 +37.65540156170307 1810358675.6 +40.13017442712734 1810364296.1 +38.17363381758797 1810369916.6 +33.773472991532536 1810375537.1 +26.201613332351286 1810381157.6 +12.455423020802629 1810386778.1 +0.0 1810392398.6 +0.0 1810398019.1 +0.0 1810403639.6 +0.0 1810439366.4 +37.0244579632287 1810445004.7 +39.80988927892395 1810450643.1 +37.93490736306584 1810456281.5 +33.553999932875264 1810461919.8 +25.95098762478581 1810467558.2 +12.129188246077556 1810473196.6 +0.0 1810478835 +0.0 1810484473.3 +0.0 1810490111.7 +0.0 1810525679.6 +36.399463991276 1810531335.6 +39.49328120213131 1810536991.5 +37.70580760647614 1810542647.4 +33.34047650073967 1810548303.4 +25.712261170263677 1810553959.3 +11.805226026463396 1810559615.3 +0.0 1810565271.2 +0.0 1810570927.1 +0.0 1810576583.1 +0.0 1810611995 +35.77447001932331 1810617668.2 +39.18489530697124 1810623341.4 +37.48265747640811 1810629014.6 +33.1365797665365 1810634687.8 +25.479484342263216 1810640360.9 +11.494567576192425 1810646034.1 +0.0 1810651707.3 +0.0 1810657380.5 +0.0 1810663053.7 +0.0 1810698312.6 +35.1650523718247 1810704002.7 +38.87423685670028 1810709692.8 +37.26318441775083 1810715382.9 +32.934955587444236 1810721073 +25.250384585673515 1810726763.1 +11.189858752443124 1810732453.2 +0.0 1810738143.3 +0.0 1810743833.4 +0.0 1810749523.5 +0.0 1810784632.3 +34.555634724326104 1810790339 +38.5791547308834 1810796045.7 +37.049660985615226 1810801752.4 +32.73473592465183 1810807459.1 +25.02723445560548 1810813165.8 +10.891099555215497 1810818872.5 +0.0 1810824579.2 +0.0 1810830285.8 +0.0 1810835992.5 +0.0 1810870954.3 +33.9595208461707 1810876677.3 +38.284072605066534 1810882400.2 +36.84208718000131 1810888123.1 +32.542738443492 1810893846 +24.807761396948212 1810899569 +10.605644127331058 1810905291.9 +0.0 1810911014.8 +0.0 1810916737.7 +0.0 1810922460.7 +0.0 1810957278.7 +33.371629149647866 1810963017.5 +37.994940105771335 1810968756.3 +36.634513374387375 1810974495.1 +32.354418033742924 1810980233.9 +24.600187591334276 1810985972.6 +10.32613832596829 1810991711.4 +0.0 1810997450.2 +0.0 1811003189 +0.0 1811008927.8 +0.0 1811043605.4 +32.79109159594656 1811049359.7 +37.71543430440857 1811055113.9 +36.44024333811664 1811060868.2 +32.1779968770372 1811066622.5 +24.39629085713111 1811072376.8 +10.052582151127195 1811078131.1 +0.0 1811083885.4 +0.0 1811089639.7 +0.0 1811095394 +0.0 1811129934.5 +32.222453295288595 1811135703.9 +37.44187812956747 1811141473.3 +36.24824585695681 1811147242.7 +31.999303165220564 1811153012.1 +24.198343749449613 1811158781.5 +9.792329745629289 1811164550.9 +0.0 1811170320.3 +0.0 1811176089.7 +0.0 1811181859.1 +0.0 1811216266 +31.66939131908473 1811222050.1 +37.177948652658806 1811227834.3 +36.05992544720774 1811233618.4 +31.830236151336358 1811239402.5 +24.006346268289782 1811245186.6 +9.534349895242293 1811250970.8 +0.0 1811256754.9 +0.0 1811262539 +0.0 1811268323.1 +0.0 1811302600.1 +31.120006414291627 1811308398.5 +36.9176962471609 1811314196.9 +35.8812317353911 1811319995.4 +31.66939131908473 1811325793.8 +23.821702929951474 1811331592.2 +9.289673814198489 1811337390.7 +0.0 1811343189.1 +0.0 1811348987.5 +0.0 1811354786 +0.0 1811388936.7 +30.592147460474298 1811394749 +36.663393468184665 1811400561.3 +35.702538023574476 1811406373.6 +31.506273931722195 1811412186 +23.645281773245742 1811417998.3 +9.054624431087115 1811423810.6 +0.0 1811429622.9 +0.0 1811435435.3 +0.0 1811441247.6 +0.0 1811475275.9 +30.073915204589397 1811481101.7 +36.42098994225177 1811486927.4 +35.535743564801166 1811492753.2 +31.35278324229209 1811498579 +23.47253768795078 1811504404.8 +8.827797229608324 1811510230.6 +0.0 1811516056.3 +0.0 1811521882.1 +0.0 1811527707.9 +0.0 1811561617.7 +29.568986718047686 1811567456.5 +36.1859405591404 1811573295.3 +35.372626177438626 1811579134.1 +31.21119180590533 1811584972.9 +23.309420300588247 1811590811.7 +8.608324170951052 1811596650.5 +0.0 1811602489.3 +0.0 1811608328.1 +0.0 1811614166.9 +0.0 1811647962.2 +29.078230039660227 1811653813.6 +35.9568408025507 1811659665 +35.21545841659776 1811665516.3 +31.069600369518565 1811671367.7 +23.152252539747376 1811677219 +8.400750365337123 1811683070.4 +0.0 1811688921.7 +0.0 1811694773.1 +0.0 1811700624.5 +0.0 1811734309.5 +28.60445420202672 1811740172.9 +35.73964029900434 1811746036.4 +35.067917353689325 1811751899.8 +30.93168600454256 1811757763.3 +22.998761850317273 1811763626.8 +8.196853631133951 1811769490.2 +0.0 1811775353.7 +0.0 1811781217.1 +0.0 1811787080.6 +0.0 1811820659.5 +28.152204315368984 1811826534.6 +35.52611686686873 1811832409.6 +34.92632591730258 1811838284.7 +30.805670892609896 1811844159.8 +22.857170413930508 1811850034.9 +8.008533221384884 1811855909.9 +0.0 1811861785 +0.0 1811867660.1 +0.0 1811873535.2 +0.0 1811907012.3 +27.709581126643684 1811912898.5 +35.322220132665564 1811918784.7 +34.7847344809158 1811924670.9 +30.683332852087993 1811930557.1 +22.715578977543746 1811936443.3 +7.8261624381574855 1811942329.6 +0.0 1811948215.8 +0.0 1811954102 +0.0 1811959988.2 +0.0 1811993368 +27.28848388889416 1811999264.8 +35.13022265150573 1812005161.6 +34.65644681387223 1812011058.5 +30.560994811566093 1812016955.3 +22.587291310500174 1812022852.2 +7.653418352862518 1812028749 +0.0 1812034645.9 +0.0 1812040542.7 +0.0 1812046439.6 +0.0 1812079726.5 +26.88296297559873 1812085633.5 +34.94557931316743 1812091540.4 +34.53043170193957 1812097447.4 +30.454233095498292 1812103354.4 +22.461276198567507 1812109261.3 +7.4903009654999835 1812115168.3 +0.0 1812121075.3 +0.0 1812126982.3 +0.0 1812132889.2 +0.0 1812166087.9 +26.49669545816816 1812172004.5 +34.7691581564617 1812177921.1 +34.41177073282843 1812183837.7 +30.347471379430495 1812189754.2 +22.34488778456728 1812195670.8 +7.333133204659117 1812201587.4 +0.0 1812207504 +0.0 1812213420.6 +0.0 1812219337.2 +0.0 1812252452.3 +26.12968133660245 1812258377.9 +34.60604076909917 1812264303.6 +34.305009016760636 1812270229.3 +30.250336361295123 1812276154.9 +22.23812606849948 1812282080.6 +7.191541768272353 1812288006.3 +0.0 1812293931.9 +0.0 1812299857.6 +0.0 1812305783.3 +0.0 1812338819.6 +25.784193166012514 1812344753.8 +34.4488730082583 1812350688 +34.198247300692834 1812356622.2 +30.15547389827066 1812362556.5 +22.131364352431678 1812368490.7 +7.05362740329635 1812374424.9 +0.0 1812380359.1 +0.0 1812386293.3 +0.0 1812392227.5 +0.0 1812425189.9 +25.457958391287445 1812431132.1 +34.30133194534987 1812437074.4 +34.10338483766837 1812443016.6 +30.073915204589397 1812448958.8 +22.04017896081798 1812454901 +6.931289362774448 1812460843.2 +0.0 1812466785.4 +0.0 1812472727.6 +0.0 1812478669.8 +0.0 1812511563.3 +25.153249567538143 1812517512.9 +34.16341758037387 1812523462.6 +34.01219944605467 1812529412.2 +29.992356510908127 1812535361.9 +21.946721014093374 1812541311.6 +6.814900948774215 1812547261.2 +0.0 1812553210.9 +0.0 1812559160.5 +0.0 1812565110.2 +0.0 1812597939.6 +24.87374376617538 1812603896.2 +34.03740246844121 1812609852.7 +33.9306407523734 1812615809.3 +29.92042451515929 1812621765.8 +21.867434875523013 1812627722.3 +6.708139232706415 1812633678.9 +0.0 1812639635.4 +0.0 1812645592 +0.0 1812651548.5 +0.0 1812684319 +24.60981428926671 1812690281.9 +33.92469112585173 1812696244.8 +33.8527591301029 1812702207.6 +29.848492519410456 1812708170.5 +21.795502879774176 1812714133.3 +6.607327143160285 1812720096.2 +0.0 1812726059.1 +0.0 1812732021.9 +0.0 1812737984.8 +0.0 1812770701.5 +24.377037461266244 1812776670.1 +33.81425233837318 1812782638.7 +33.783099689464976 1812788607.3 +29.788459776704958 1812794575.9 +21.72357088402534 1812800544.5 +6.5198188229573475 1812806513.1 +0.0 1812812481.7 +0.0 1812818450.3 +0.0 1812824418.9 +0.0 1812857087 +24.157564402608976 1812863060.8 +33.72079439164857 1812869034.6 +33.72079439164857 1812875008.3 +29.738053731931892 1812880982.1 +21.667215212730603 1812886955.9 +6.444209755797751 1812892929.6 +0.0 1812898903.4 +0.0 1812904877.2 +0.0 1812910850.9 +0.0 1812943475.6 +23.965566921449145 1812949454 +33.63555862655654 1812955432.3 +33.66671127546474 1812961410.7 +29.687647687158826 1812967389 +21.613132096546778 1812973367.3 +6.372277760048915 1812979345.7 +0.0 1812985324 +0.0 1812991302.4 +0.0 1812997280.7 +0.0 1813029867.3 +23.796499907564943 1813035849.7 +33.559949559396934 1813041832 +33.619982302102436 1813047814.3 +29.646868340318193 1813053796.6 +21.566403123184475 1813059778.9 +6.315922088754178 1813065761.3 +0.0 1813071743.6 +0.0 1813077725.9 +0.0 1813083708.2 +0.0 1813116262.1 +23.65490847117818 1813122247.8 +33.497644261580525 1813128233.5 +33.5792029552618 1813134219.2 +29.609766064888323 1813140204.9 +21.53157340286551 1813146190.6 +6.265516043981114 1813152176.3 +0.0 1813158162 +0.0 1813164147.7 +0.0 1813170133.4 +0.0 1813202660 +23.53257043065628 1813208648.5 +33.44723821680747 1813214637 +33.54437323494283 1813220625.4 +29.58088597109103 1813226613.9 +21.500420753957304 1813232602.4 +6.22473669714048 1813238590.9 +0.0 1813244579.4 +0.0 1813250567.9 +0.0 1813256556.4 +0.0 1813289060.9 +23.43543541252091 1813295051.6 +33.40645886996683 1813301042.3 +33.519170212556304 1813307032.9 +29.559360020115253 1813313023.6 +21.475217731570773 1813319014.2 +6.195856603343185 1813325004.9 +0.0 1813330995.6 +0.0 1813336986.2 +0.0 1813342976.9 +0.0 1813375464.9 +23.36577597188298 1813381457.2 +33.371629149647866 1813387449.4 +33.497644261580525 1813393441.6 +29.543783695661155 1813399433.9 +21.459641407116674 1813405426.1 +6.174330652367414 1813411418.3 +0.0 1813417410.6 +0.0 1813423402.8 +0.0 1813429395.1 +0.0 1813461872 +23.315369927109916 1813467865.2 +33.3501031986721 1813473858.4 +33.4880175636481 1813479851.6 +29.534156997728722 1813485844.8 +21.450014709184238 1813491838 +6.164703954434982 1813497831.2 +0.0 1813503824.4 +0.0 1813509817.6 +0.0 1813515810.8 +0.0 1813548282 +23.29384397613415 1813554275.6 +33.34642612726134 1813560269.2 +33.48206793712643 1813566262.7 +29.530479926317962 1813572256.3 +21.450014709184238 1813578249.9 +6.164703954434982 1813584243.4 +0.0 1813590237 +0.0 1813596230.5 +0.0 1813602224.1 +0.0 1813634695.1 +23.29384397613415 1813640688.4 +33.34642612726134 1813646681.7 +33.48206793712643 1813652675.1 +29.534156997728722 1813658668.4 +21.453691780595 1813664661.7 +6.174330652367414 1813670655 +0.0 1813676648.3 +0.0 1813682641.6 +0.0 1813688634.9 +0.0 1813721111.2 +23.31904699852068 1813727103.6 +33.36200245171544 1813733096.1 +33.49396719016977 1813739088.6 +29.543783695661155 1813745081 +21.465591033638344 1813751073.5 +6.189906976821515 1813757065.9 +0.0 1813763058.4 +0.0 1813769050.8 +0.0 1813775043.3 +0.0 1813807530.2 +23.369453043293742 1813813521.2 +33.3812558475803 1813819512.2 +33.513220586034635 1813825503.2 +29.559360020115253 1813831494.2 +21.484844429503205 1813837485.2 +6.221059625729719 1813843476.2 +0.0 1813849467.2 +0.0 1813855458.1 +0.0 1813861449.1 +0.0 1813893952.1 +23.44733466556425 1813899941.1 +33.416085567899266 1813905930 +33.534746537010406 1813911918.9 +29.584563042501788 1813917907.8 +21.515997078411406 1813923896.8 +6.255889346048683 1813929885.7 +0.0 1813935874.6 +0.0 1813941863.5 +0.0 1813947852.5 +0.0 1813980377 +23.54814675511038 1813986363.2 +33.462814541261565 1813992349.5 +33.569576257329366 1813998335.8 +29.61571569140999 1814004322 +21.547149727319614 1814010308.3 +6.306295390821747 1814016294.5 +0.0 1814022280.8 +0.0 1814028267 +0.0 1814034253.3 +0.0 1814066804.7 +23.670484795632277 1814072787.7 +33.519170212556304 1814078770.6 +33.60440597764833 1814084753.6 +29.650545411728956 1814090736.6 +21.587929074160247 1814096719.6 +6.362651062116483 1814102702.6 +0.0 1814108685.6 +0.0 1814114668.6 +0.0 1814120651.6 +0.0 1814153235.2 +23.81802585854071 1814159214.3 +33.58882965319423 1814165193.4 +33.65113495101064 1814171172.5 +29.69132475856959 1814177151.7 +21.63833511893331 1814183130.8 +6.42863343134365 1814189109.9 +0.0 1814195089 +0.0 1814201068.2 +0.0 1814207047.3 +0.0 1814239668.4 +23.99076994383568 1814245643.1 +33.66671127546474 1814251617.8 +33.70154099578371 1814257592.4 +29.741730803342655 1814263567.1 +21.694690790228044 1814269541.8 +6.504242498503247 1814275516.5 +0.0 1814281491.1 +0.0 1814287465.8 +0.0 1814293440.5 +0.0 1814326104.4 +24.18871705151718 1814332074.1 +33.751947040556765 1814338043.7 +33.7615737384892 1814344013.3 +29.794409403226627 1814349983 +21.754723532933543 1814355952.6 +6.591750818706184 1814361922.2 +0.0 1814367891.8 +0.0 1814373861.5 +0.0 1814379831.1 +0.0 1814412543.1 +24.40819011017445 1814418507.1 +33.8527591301029 1814424471.1 +33.833505734238045 1814430435.1 +29.854442145932126 1814436399.1 +21.826655528682377 1814442363.2 +6.682936210319882 1814448327.2 +0.0 1814454291.2 +0.0 1814460255.2 +0.0 1814466219.2 +0.0 1814498984.3 +24.646916564696586 1814504942.2 +33.96547047269237 1814510900 +33.90543772998687 1814516857.8 +29.92637414168096 1814522815.7 +21.905941667252737 1814528773.5 +6.789697926387682 1814534731.3 +0.0 1814540689.1 +0.0 1814546647 +0.0 1814552604.8 +0.0 1814585428.2 +24.910846041605247 1814591379.2 +34.08185888669261 1814597330.3 +33.98699642366814 1814603281.4 +29.99603358231889 1814609232.5 +21.987500360934007 1814615183.5 +6.900136713866244 1814621134.6 +0.0 1814627085.7 +0.0 1814633036.8 +0.0 1814638987.8 +0.0 1814671874.5 +25.19402891437878 1814677818.3 +34.21382362514694 1814683762 +34.072232188760175 1814689705.8 +30.077592276000157 1814695649.6 +22.078685752547706 1814701593.3 +7.0224747543881465 1814707537.1 +0.0 1814713480.9 +0.0 1814719424.6 +0.0 1814725368.4 +0.0 1814758323.3 +25.504687364649747 1814764259.2 +34.351737990122935 1814770195.1 +34.16936720689554 1814776131 +30.165100596203093 1814782066.9 +22.175820770683075 1814788002.8 +7.154439492842481 1814793938.7 +0.0 1814799874.6 +0.0 1814805810.5 +0.0 1814811746.4 +0.0 1814844774.4 +25.83092213937482 1814850701.9 +34.505228679553035 1814856629.4 +34.27017929644167 1814862556.9 +30.256285987816792 1814868484.4 +22.282582486750876 1814874411.9 +7.2983034843401535 1814880339.5 +0.0 1814886267 +0.0 1814892194.5 +0.0 1814898122 +0.0 1814931227.9 +26.18008738137551 1814937146.5 +34.6623964403939 1814943065 +34.37694101250946 1814948983.6 +30.353421005952164 1814954902.2 +22.395293829340343 1814960820.8 +7.4495216186593485 1814966739.3 +0.0 1814972657.9 +0.0 1814978576.5 +0.0 1814984495.1 +0.0 1815017683.6 +26.547101502941224 1815023592.7 +34.83514052568888 1815029501.9 +34.493329426509696 1815035411 +30.460182722019965 1815041320.1 +22.511682243340577 1815047229.2 +7.606689379500215 1815053138.3 +0.0 1815059047.5 +0.0 1815064956.6 +0.0 1815070865.7 +0.0 1815104141.5 +26.937046091782555 1815110040.7 +35.01156168239459 1815115939.8 +34.61566746703159 1815121839 +30.570621509498523 1815127738.1 +22.637697355273236 1815133637.3 +7.7757563933844205 1815139536.4 +0.0 1815145435.6 +0.0 1815151334.8 +0.0 1815157233.9 +0.0 1815190601.6 +27.34483956018889 1815196490.2 +35.19988209214366 1815202378.9 +34.743955134075165 1815208267.6 +30.687009923498756 1815214156.3 +22.77193464883848 1815220045 +7.952177550090148 1815225933.7 +0.0 1815231822.3 +0.0 1815237711 +0.0 1815243599.7 +0.0 1815277063.7 +27.765936797938426 1815282941.4 +35.3941521284144 1815288819.1 +34.87959694394028 1815294696.8 +30.809347964020656 1815300574.5 +22.907576458703574 1815306452.3 +8.140497959839216 1815312330 +0.0 1815318207.7 +0.0 1815324085.4 +0.0 1815329963.2 +0.0 1815363527.7 +28.20855998666372 1815369394 +35.60172593402833 1815375260.3 +35.02346093543793 1815381126.6 +30.93763563106423 1815386992.8 +23.055117521612008 1815392859.1 +8.334767996109957 1815398725.4 +0.0 1815404591.7 +0.0 1815410458 +0.0 1815416324.2 +0.0 1815449993.7 +28.670436571253887 1815455848.1 +35.81524936616395 1815461702.4 +35.1650523718247 1815467556.8 +31.069600369518565 1815473411.2 +23.208608211042115 1815479265.5 +8.542341801723884 1815485119.9 +0.0 1815490974.3 +0.0 1815496828.6 +0.0 1815502683 +0.0 1815536461.5 +29.14421240888739 1815542303.5 +36.03839949623197 1815548145.5 +35.322220132665564 1815553987.5 +31.21119180590533 1815559829.5 +23.36577597188298 1815565671.5 +8.755865233859485 1815571513.5 +0.0 1815577355.5 +0.0 1815583197.5 +0.0 1815589039.5 +0.0 1815622931.2 +29.63129201586409 1815628760.3 +36.267499252821665 1815634589.5 +35.47938789350643 1815640418.7 +31.35873286881376 1815646247.9 +23.53257043065628 1815652077 +8.975338292516762 1815657906.2 +0.0 1815663735.4 +0.0 1815669564.6 +0.0 1815675393.7 +0.0 1815709402.5 +30.139897573816558 1815715218.4 +36.5062257073438 1815721034.3 +35.648454907390644 1815726850.2 +31.506273931722195 1815732666.1 +23.70163744454048 1815738482.1 +9.202165493995551 1815744298 +0.0 1815750113.9 +0.0 1815755929.8 +0.0 1815761745.7 +0.0 1815795875.4 +30.658129829701462 1815801677.6 +36.75457885979837 1815807479.9 +35.82119899268561 1815813282.1 +31.66344169256306 1815819084.4 +23.88400822776788 1815824886.6 +9.440891948517685 1815830688.8 +0.0 1815836491.1 +0.0 1815842293.3 +0.0 1815848095.5 +0.0 1815882349.9 +31.191938410040464 1815888138.1 +37.0088816387746 1815893926.2 +35.99762014939134 1815899714.4 +31.826559079925595 1815905502.5 +24.06637901099528 1815911290.6 +9.691517656083159 1815917078.8 +0.0 1815922866.9 +0.0 1815928655.1 +0.0 1815934443.2 +0.0 1815968825.9 +31.735373688311896 1815974599.6 +37.2691340442725 1815980373.2 +36.18226348772964 1815986146.9 +31.993353538698894 1815991920.5 +24.25469942074435 1815997694.2 +9.945820435059394 1816003467.8 +0.0 1816009241.5 +0.0 1816015015.1 +0.0 1816020788.7 +0.0 1816055303.4 +32.29438529103743 1816061062.1 +37.539013147702846 1816066820.9 +36.3683113423678 1816072579.7 +32.17204725051553 1816078338.4 +24.452646528425845 1816084097.2 +10.209749911968059 1816089855.9 +0.0 1816095614.7 +0.0 1816101373.4 +0.0 1816107132.2 +0.0 1816141782.2 +32.8630235916954 1816147525.7 +37.812569322543936 1816153269.2 +36.562581378638534 1816159012.7 +32.35074096233217 1816164756.2 +24.656543262629015 1816170499.6 +10.479629015398396 1816176243.1 +0.0 1816181986.6 +0.0 1816187730.1 +0.0 1816193473.6 +0.0 1816228262.3 +33.43761151887503 1816233990.1 +38.09207512390671 1816239718 +36.76647811284171 1816245445.9 +32.533111745559566 1816251173.7 +24.864117068242948 1816256901.6 +10.762811888171923 1816262629.4 +0.0 1816268357.3 +0.0 1816274085.2 +0.0 1816279813 +0.0 1816314743.6 +34.02550321539787 1816320455.5 +38.3812076232019 1816326167.4 +36.96810229193397 1816331879.2 +32.721432155308634 1816337591.1 +25.077640500378546 1816343303 +11.04826731605636 1816349014.8 +0.0 1816354726.7 +0.0 1816360438.6 +0.0 1816366150.4 +0.0 1816401226.1 +34.625294164964025 1816406921.7 +38.67628974901878 1816412617.2 +37.18162572406957 1816418312.7 +32.919379262990134 1816424008.3 +25.300790630446578 1816429703.8 +11.34334944187323 1816435399.3 +0.0 1816441094.9 +0.0 1816446790.4 +0.0 1816452485.9 +0.0 1816487709.7 +35.231034741051865 1816493388.6 +38.9750489462464 1816499067.5 +37.395149156205164 1816504746.3 +33.117326370671634 1816510425.2 +25.52989038703628 1816516104.1 +11.648058265622529 1816521782.9 +0.0 1816527461.8 +0.0 1816533140.7 +0.0 1816538819.6 +0.0 1816574194.4 +35.84640201507213 1816579856.2 +39.285707396517374 1816585518.1 +37.618299286273206 1816591180 +33.32490017628556 1816596841.9 +25.75899014362598 1816602503.8 +11.962393787304261 1816608165.7 +0.0 1816613827.6 +0.0 1816619489.4 +0.0 1816625151.3 +0.0 1816660680 +36.465446360503165 1816666324.6 +39.596365846788345 1816671969.2 +37.84372197145214 1816677613.7 +33.534746537010406 1816683258.3 +25.997716598148116 1816688902.9 +12.282678935507661 1816694547.5 +0.0 1816700192.1 +0.0 1816705836.7 +0.0 1816711481.3 +0.0 1816747166.5 +37.09044033245586 1816752793.5 +39.91070136847008 1816758420.5 +38.07649879945261 1816764047.5 +33.7459974140351 1816769674.5 +26.24239267919192 1816775301.5 +12.606641155121824 1816780928.5 +0.0 1816786555.5 +0.0 1816792182.5 +0.0 1816797809.4 +0.0 1816833653.9 +37.72138393093024 1816839263 +40.236936143195145 1816844872.2 +38.30927562745307 1816850481.3 +33.971420099214036 1816856090.4 +26.49669545816816 1816861699.5 +12.942502627779326 1816867308.6 +0.0 1816872917.7 +0.0 1816878526.8 +0.0 1816884135.9 +0.0 1816920142.2 +38.356004600815375 1816925733.1 +40.56089836280931 1816931324.1 +38.55027463708611 1816936915 +34.19457022928207 1816942505.9 +26.748725682033477 1816948096.9 +13.284313726958496 1816953687.8 +0.0 1816959278.8 +0.0 1816964869.7 +0.0 1816970460.6 +0.0 1817006631.2 +38.996574897222175 1817012203.7 +40.89081020894514 1817017776.2 +38.79862778954068 1817023348.7 +34.42366998587177 1817028921.2 +27.008978087531393 1817034493.7 +13.633478968959194 1817040066.2 +0.0 1817045638.7 +0.0 1817051211.2 +0.0 1817056783.7 +0.0 1817093120.8 +39.64082226503974 1817098674.7 +41.226671681602646 1817104228.5 +39.046980941995244 1817109782.3 +34.65644681387223 1817115336.1 +27.278857190961727 1817120889.9 +13.990866392592467 1817126443.8 +0.0 1817131997.6 +0.0 1817137551.4 +0.0 1817143105.2 +0.0 1817179611.2 +40.281392561446545 1817185146.1 +41.568482780781814 1817190681 +39.30128372097148 1817196215.8 +34.89517326839437 1817201750.7 +27.54646373928115 1817207285.6 +14.355607959047262 1817212820.5 +0.0 1817218355.4 +0.0 1817223890.2 +0.0 1817229425.1 +0.0 1817266102.1 +40.93158955578578 1817271617.9 +41.91397095137175 1817277133.6 +39.555586499947715 1817282649.3 +35.139849349438165 1817288165 +27.825969540643914 1817293680.7 +14.726299152023726 1817299196.4 +0.0 1817304712.1 +0.0 1817310227.8 +0.0 1817315743.5 +21.91189129377441 1817352593.7 +41.57810947871425 1817358090 +42.25945912196168 1817363586.3 +39.81951597685638 1817369082.6 +35.38820250189273 1817374578.9 +28.10547534200668 1817380075.2 +15.102939971521863 1817385571.5 +0.0 1817391067.8 +0.0 1817396564.1 +0.0 1817402060.4 +21.71989381261458 1817439085.7 +42.228306473053486 1817444562.4 +42.60862436396238 1817450039.1 +40.08344545376504 1817455515.7 +35.636555654347305 1817460992.4 +28.39688039641279 1817466469.1 +15.489207488952431 1817471945.8 +0.0 1817477422.4 +0.0 1817482899.1 +0.0 1817488375.8 +24.351834438879717 1817525578.2 +42.87255384087105 1817531035.1 +42.966011787595654 1817536491.9 +40.35927418371705 1817541948.7 +35.8968080598452 1817547405.6 +28.686012895707986 1817552862.4 +15.885101704315431 1817558319.3 +0.0 1817563776.1 +0.0 1817569232.9 +0.0 1817574689.8 +34.794361178848234 1817612071.2 +43.52502339032119 1817617508 +43.32112665611802 1817622944.8 +40.63283035855815 1817628381.6 +36.1547879102322 1817633818.4 +28.984772092935618 1817639255.2 +16.280995919678436 1817644692 +0.0 1817650128.8 +0.0 1817655565.6 +0.0 1817661002.4 +36.1103314919808 1817698564.5 +44.16927075813876 1817703981.1 +43.68219115116206 1817709397.7 +40.90638653339924 1817714814.2 +36.42098994225177 1817720230.8 +29.285803845274156 1817725647.4 +16.688789388084775 1817731064 +0.0 1817736480.5 +0.0 1817741897.1 +0.0 1817747313.7 +37.857025740795336 1817785058.2 +44.80984105454556 1817790454.4 +44.046932717616855 1817795850.5 +41.191841961283686 1817801246.7 +36.6885964905712 1817806642.9 +29.590512669023457 1817812039 +17.100259927901867 1817817435.2 +0.0 1817822831.3 +0.0 1817828227.5 +0.0 1817833623.7 +34.89517326839437 1817871552.2 +45.454088422363114 1817876927.8 +44.41394683918256 1817882303.4 +41.47729738916812 1817887678.9 +36.964425220523204 1817893054.5 +29.90484819070519 1817898430.1 +17.5213571656514 1817903805.7 +0.0 1817909181.2 +0.0 1817914556.8 +0.0 1817919932.4 +43.55022641270772 1817958046.5 +46.09098164735916 1817963401.4 +44.778688405637354 1817968756.2 +41.76048026194165 1817974111 +37.2379813953643 1817979465.8 +30.221456267497828 1817984820.6 +17.9484040299226 1817990175.4 +0.0 1817995530.2 +0.0 1818000885.1 +0.0 1818006239.9 +45.287293963589825 1818044541.1 +46.72560231724429 1818049875 +45.14937959861381 1818055208.9 +42.05556238775851 1818060542.8 +37.51748719672707 1818065876.7 +30.54174141570123 1818071210.6 +18.3754508941938 1818076544.5 +0.0 1818081878.4 +0.0 1818087212.3 +0.0 1818092546.2 +46.14138769213223 1818131035.9 +47.36022298712942 1818136348.8 +45.52007079159028 1818141661.6 +42.35064451357538 1818146974.4 +37.802942624611504 1818152287.2 +30.865703635315395 1818157600 +18.818074082919107 1818162912.8 +0.0 1818168225.7 +0.0 1818173538.5 +0.0 1818178851.3 +42.84367374707375 1818217530.9 +47.98521695908213 1818222822.5 +45.89671161108841 1818228114.1 +42.64572663939226 1818233405.7 +38.09207512390671 1818238697.3 +31.195615481451224 1818243988.9 +19.2584247165335 1818249280.5 +0.0 1818254572.1 +0.0 1818259863.7 +0.0 1818265155.3 +49.231527831576756 1818304026.1 +48.60653385962405 1818309296.4 +46.273352430586556 1818314566.6 +42.95043546314155 1818319836.8 +38.38715724972357 1818325107.1 +31.531476954108726 1818330377.3 +19.710674603191233 1818335647.5 +0.0 1818340917.8 +0.0 1818346188 +0.0 1818351458.2 +50.50076917134702 1818390521.5 +49.22557820505509 1818395770.2 +46.64999325008469 1818401019 +43.24919466036918 1818406267.7 +38.68223937554045 1818411516.4 +31.86733842676623 1818416765.2 +20.168874116370638 1818422013.9 +0.0 1818427262.7 +0.0 1818432511.4 +0.0 1818437760.1 +51.74708004384166 1818477017 +49.83499585255368 1818482244.1 +47.0303111409936 1818487471.2 +43.559853110640155 1818492698.3 +38.98099857276807 1818497925.4 +32.21282659735617 1818503152.5 +20.630750700960803 1818508379.7 +0.0 1818513606.8 +0.0 1818518833.9 +0.0 1818524061 +52.9755420367713 1818563512.6 +50.44073642864152 1818568717.9 +47.406951960491725 1818573923.3 +43.870511560911126 1818579128.7 +39.28203032510662 1818584334 +32.5583147679461 1818589539.4 +21.094899840661878 1818594744.8 +0.0 1818599950.2 +0.0 1818605155.5 +0.0 1818610360.9 +54.181073562425304 1818650008.3 +51.0405273782077 1818655191.8 +47.787269851400616 1818660375.3 +44.17889745607119 1818665558.8 +39.58673914885591 1818670742.3 +32.90975256505771 1818675925.8 +21.572352749706145 1818681109.3 +0.0 1818686292.8 +0.0 1818691476.3 +0.0 1818696659.8 +55.3687562085143 1818736504 +51.63436870125219 1818741665.6 +48.167587742309514 1818746827.1 +44.495505532863824 1818751988.6 +39.895125044015984 1818757150.2 +33.264867433580065 1818762311.7 +22.049805658750408 1818767473.3 +0.0 1818772634.8 +0.0 1818777796.3 +0.0 1818782957.9 +56.537185458738435 1818822999.8 +52.22453295288594 1818828139.3 +48.55017818832932 1818833278.8 +44.80984105454556 1818838418.2 +40.20578349428694 1818843557.7 +33.619982302102436 1818848697.2 +22.53093563920544 1818853836.6 +0.4077934684063401 1818858976.1 +0.0 1818864115.6 +0.0 1818869255 +57.68636131309771 1818909495.7 +52.80279795147633 1818914613 +48.936445705759894 1818919730.3 +45.13012620274895 1818924847.6 +40.520119015968675 1818929964.9 +33.98699642366814 1818935082.2 +23.023964872703807 1818940199.5 +1.139549156426842 1818945316.8 +0.0 1818950434.1 +0.0 1818955551.3 +58.81401121648121 1818995991.6 +53.377385878655964 1819001086.7 +49.316763596668785 1819006181.7 +45.45041135095235 1819011276.7 +40.836727092761315 1819016371.7 +34.35173799012294 1819021466.8 +23.516994106202176 1819026561.8 +1.8809315423797748 1819031656.8 +0.0 1819036751.8 +0.0 1819041846.8 +59.92835735052152 1819082487.6 +53.942347107903174 1819087560.2 +49.70303111409935 1819092632.9 +45.77437357056652 1819097705.6 +41.160689312375474 1819102778.2 +34.71875211168864 1819107850.9 +24.015972966222215 1819112923.6 +2.631940626265138 1819117996.2 +0.0 1819123068.9 +0.0 1819128141.6 +61.02485460499681 1819168983.5 +54.50135871062871 1819174033.7 +50.08334900500825 1819179084 +46.10060834529159 1819184134.2 +41.48097446057888 1819189184.4 +35.09312037607586 1819194234.6 +24.51862889765301 1819199284.9 +3.394848963193843 1819204335.1 +0.0 1819209385.3 +0.0 1819214435.5 +62.10804809012891 1819255479.5 +55.05442068683257 1819260507.2 +50.46961652243882 1819265534.9 +46.43052019142742 1819270562.6 +41.81088630671472 1819275590.3 +35.469761195574 1819280618 +25.02723445560548 1819285645.7 +4.173333624576648 1819290673.4 +0.0 1819295701.1 +0.0 1819300728.8 +63.16971562428526 1819341975.4 +55.597855965104 1819346980.5 +50.852206968458624 1819351985.6 +46.760432037563255 1819356990.7 +42.13712108143978 1819361995.8 +35.85007908648289 1819367000.9 +25.54546671149038 1819372006.1 +4.959172428780976 1819377011.2 +0.0 1819382016.3 +0.0 1819387021.4 +64.22175646050916 1819428471.4 +56.13761417196468 1819433453.8 +51.23847448588919 1819438436.2 +47.090343883699084 1819443418.7 +42.467032927575616 1819448401.1 +36.232669532502705 1819453383.5 +26.06369896737528 1819458366 +5.753233414617882 1819463348.4 +0.0 1819468330.9 +0.0 1819473313.3 +65.2522713457573 1819514967.3 +56.66915019719277 1819519927 +51.61879237679809 1819524886.7 +47.42252828494583 1819529846.4 +42.802894400233114 1819534806.1 +36.61893704993327 1819539765.8 +26.581931223260188 1819544725.5 +6.560598169797981 1819549685.2 +0.0 1819554644.9 +0.0 1819559604.6 +66.26353283514057 1819601463.2 +57.193332079599344 1819606400.1 +52.005059894228665 1819611337 +47.75611720249241 1819616273.9 +43.13875587289062 1819621210.8 +37.0088816387746 1819626147.7 +27.109790177077524 1819631084.6 +7.379862178021422 1819636021.5 +0.0 1819640958.4 +0.0 1819645895.3 +67.2495913021373 1819687959.1 +57.707887264073484 1819692873.2 +52.385377785137564 1819697787.2 +48.091978675149925 1819702701.2 +43.47829441695888 1819707615.3 +37.401098782726834 1819712529.3 +27.639921686005756 1819717443.3 +8.202803257655622 1819722357.4 +0.0 1819727271.4 +0.0 1819732185.4 +68.2104467467475 1819774455 +58.21422026691504 1819779346.1 +52.76796823115736 1819784237.2 +48.433789774329085 1819789128.4 +43.81783296102716 1819794019.5 +37.796992998089834 1819798910.6 +28.17740733775552 1819803801.7 +9.041320661743924 1819808692.8 +0.0 1819813583.9 +0.0 1819818475 +69.13052284451707 1819860950.9 +58.71319912693508 1819865819 +53.14828612206626 1819870687.2 +48.76737869187569 1819875555.3 +44.16332113161709 1819880423.4 +38.192887213452835 1819885291.6 +28.71121591809452 1819890159.7 +9.883515137242986 1819895027.9 +0.0 1819899896 +0.0 1819904764.1 +70.01349666685677 1819947446.7 +59.20990543184421 1819952291.8 +53.53455363949683 1819957137 +49.10918979105486 1819961982.1 +44.50880930220702 1819966827.2 +38.594731055337505 1819971672.3 +29.254651196365952 1819976517.4 +10.73760886578539 1819981362.5 +0.0 1819986207.7 +0.0 1819991052.8 +70.85796369746673 1820033942.6 +59.69330796741014 1820038764.6 +53.91119445899497 1820043586.7 +49.45467796164479 1820048408.7 +44.856570027907864 1820053230.7 +38.996574897222175 1820058052.8 +29.79808647463739 1820062874.8 +11.601329292260225 1820067696.9 +0.0 1820072518.9 +0.0 1820077341 +71.6557017547144 1820120438.4 +60.170760876454416 1820125237.3 +54.29151234990386 1820130036.3 +49.79421650571305 1820134835.2 +45.205735269908544 1820139634.1 +39.40209581051761 1820144433 +30.347471379430495 1820149232 +12.47099934525673 1820154030.9 +0.0 1820158829.8 +0.0 1820163628.7 +72.40671083859978 1820206934.2 +60.64453671408791 1820211710 +54.668153169402004 1820216485.8 +50.13602760489222 1820221261.5 +45.55717306702015 1820226037.3 +39.80988927892395 1820230813 +30.900533355634355 1820235588.8 +13.350296096185664 1820240364.6 +0.0 1820245140.3 +0.0 1820249916.1 +73.11326350423374 1820293430 +61.10641329867809 1820298182.6 +55.04479398890014 1820302935.2 +50.48151577548216 1820307687.7 +45.912287935542516 1820312440.3 +40.22135981874104 1820317192.9 +31.455867886949132 1820321945.4 +14.233269918525359 1820326698 +0.0 1820331450.6 +0.0 1820336203.1 +73.78498644954874 1820379925.8 +61.56461281185748 1820384655.2 +55.42511187980904 1820389384.5 +50.8270039460721 1820394113.8 +46.267402804064886 1820398843.2 +40.63283035855815 1820403572.5 +32.00892986315299 1820408301.8 +15.122193367386727 1820413031.2 +0.0 1820417760.5 +0.0 1820422489.8 +74.40998042150144 1820466421.7 +62.016862698515226 1820471127.7 +55.7958030727855 1820475833.8 +51.17249211666203 1820480539.9 +46.624790227698156 1820485245.9 +41.05025052489692 1820489952 +32.567941465878526 1820494658 +16.023016069291433 1820499364.1 +0.0 1820504070.2 +0.0 1820508776.2 +74.9941950466135 1820552917.5 +62.45721333212962 1820557600.3 +56.17244389228364 1820562283 +51.52165735866272 1820566965.8 +46.98358216763129 1820571648.6 +41.46539813612478 1820576331.3 +33.132902695125736 1820581014.1 +16.92751584260691 1820585696.8 +0.0 1820590379.6 +0.0 1820595062.3 +75.54357995140661 1820639413.4 +62.89615944944416 1820644072.8 +56.54313508526011 1820648732.2 +51.86714552925266 1820653391.7 +47.34096959126456 1820658051.1 +41.88876792898522 1820662710.5 +33.69559136926204 1820667369.9 +17.83569268733313 1820672029.4 +0.0 1820676688.8 +0.0 1820681348.2 +76.06181220729152 1820725909.3 +63.32688338512612 1820730545.3 +56.91382627823657 1820735181.4 +52.21858332636427 1820739817.5 +47.70203408630859 1820744453.5 +42.303915540213076 1820749089.6 +34.26650222503091 1820753725.7 +18.74614208717027 1820758361.7 +0.0 1820762997.8 +0.0 1820767633.9 +76.54889181426822 1820812405.2 +63.74798062287565 1820817017.9 +57.28084039980228 1820821630.6 +52.5640714969542 1820826243.2 +48.06677565276338 1820830855.9 +42.73096240448428 1820835468.6 +34.83514052568888 1820840081.3 +19.66621818493984 1820844694 +0.0 1820849306.7 +0.0 1820853919.3 +77.00709132744761 1820898901.2 +64.16540078921442 1820903490.4 +57.651531592778746 1820908079.7 +52.9155092940658 1820912669 +48.427840147807416 1820917258.3 +43.152059642233816 1820921847.5 +35.40377882634683 1820926436.8 +20.58997135412017 1820931026.1 +0.0 1820935615.4 +0.0 1820940204.6 +77.4378152631296 1820985397.2 +64.57092170250986 1820989963 +58.01627315923355 1820994528.9 +53.26099746465573 1820999094.7 +48.79258171426223 1821003660.6 +43.57910650650501 1821008226.4 +35.972417127004796 1821012792.3 +21.515997078411406 1821017358.1 +0.0 1821021924 +0.0 1821026489.8 +77.84560873153592 1821071893.3 +64.97871517091619 1821076435.7 +58.383287280799244 1821080978.1 +53.610162706656425 1821085520.5 +49.15959583582792 1821090062.9 +44.00615337077622 1821094605.3 +36.54700505418443 1821099147.7 +22.43975024759174 1821103690.1 +0.0 1821108232.5 +0.0 1821112774.9 +78.23187624896649 1821158389.5 +65.37460938627919 1821162908.4 +58.744351775843285 1821167427.3 +53.96160050376804 1821171946.3 +49.53028702880439 1821176465.2 +44.433200235047416 1821180984.1 +37.12159298136407 1821185503.1 +23.369453043293742 1821190022 +0.0 1821194540.9 +0.0 1821199059.9 +78.59294074401053 1821244885.7 +65.76682653023143 1821249381.2 +59.10314371577641 1821253876.6 +54.31303830087964 1821258372.1 +49.8973011503701 1821262867.5 +44.8661967258403 1821267363 +37.69985797995447 1821271858.4 +24.305105465517414 1821276353.9 +0.0 1821280849.3 +0.0 1821285344.8 +78.93842891460045 1821331382.1 +66.14714442114033 1821335854 +59.464208210820445 1821340326 +54.662203542880334 1821344797.9 +50.26204271682489 1821349269.9 +45.29692066152225 1821353741.9 +38.2744459071341 1821358213.8 +25.234808261219413 1821362685.8 +0.0 1821367157.7 +0.0 1821371629.7 +79.26239113421462 1821417878.5 +66.52746231204922 1821422327 +59.821595634453715 1821426775.4 +55.007691713470265 1821431223.9 +50.63273390980136 1821435672.3 +45.729917152315124 1821440120.8 +38.85498346083541 1821444569.2 +26.170460683443082 1821449017.7 +0.0 1821453466.1 +0.0 1821457914.6 +79.57304958448559 1821504375.1 +66.9004260601366 1821508800 +60.176710502976086 1821513225 +55.359129510581866 1821517649.9 +51.003425102777825 1821522074.8 +46.160641087997085 1821526499.8 +39.42729883290414 1821530924.7 +27.10611310566676 1821535349.7 +0.0 1821539774.6 +0.0 1821544199.5 +79.87180878171321 1821590871.8 +67.26516762659139 1821595273.2 +60.52814830008769 1821599674.6 +55.71056730769347 1821604076 +51.37411629575429 1821608477.4 +46.59363757878995 1821612878.9 +40.00783638660545 1821617280.3 +28.039492972779517 1821621681.7 +0.0 1821626083.1 +0.0 1821630484.5 +80.15131458307599 1821677368.6 +67.62623212163544 1821681746.5 +60.88326316861004 1821686124.4 +56.059732549694175 1821690502.3 +51.74708004384166 1821694880.2 +47.0303111409936 1821699258.1 +40.586101385195846 1821703635.9 +28.971468323592426 1821708013.8 +0.0 1821712391.7 +0.0 1821716769.6 +80.42119368650633 1821763865.6 +67.9813469901578 1821768220 +61.22875133919998 1821772574.3 +56.405220720284106 1821776928.7 +52.11777123681813 1821781283 +47.46330763178646 1821785637.4 +41.160689312375474 1821789991.7 +29.901171119294432 1821794346.1 +1.9721169339934734 1821798700.4 +0.0 1821803054.8 +80.68144609200424 1821850362.8 +68.33278478726939 1821854693.6 +61.577916581200675 1821859024.4 +56.75665851739571 1821863355.2 +52.49213950120536 1821867686 +47.89998119399009 1821872016.9 +41.74122686607679 1821876347.7 +30.83087391499643 1821880678.5 +3.9946399127600123 1821885009.3 +0.0 1821889340.1 +80.92384961793712 1821936860.1 +68.67827295785933 1821941167.4 +61.92340475179062 1821945474.7 +57.10214668798564 1821949781.9 +52.86510324929274 1821954089.2 +48.33070512967205 1821958396.5 +42.31949186466718 1821962703.8 +31.754627084176757 1821967011 +6.017162891526548 1821971318.3 +0.0 1821975625.6 +81.16257607245926 1822023357.6 +69.01413443051683 1822027641.4 +62.265215850969795 1822031925.1 +57.447634858575576 1822036208.8 +53.235794442269196 1822040492.6 +48.76737869187569 1822044776.3 +42.89407979184682 1822049060.1 +32.674703181946334 1822053343.8 +8.030059172360657 1822057627.6 +0.0 1822061911.3 +81.3879987576382 1822109855.3 +69.34772334806343 1822114115.5 +62.60475439503806 1822118375.7 +57.799072655687176 1822122636 +53.610162706656425 1822126896.2 +49.20632480919023 1822131156.4 +43.46866771902645 1822135416.6 +33.5947792797159 1822139676.8 +10.031056200151422 1822143937 +0.0 1822148197.2 +81.60519926118457 1822196353.2 +69.67990774931017 1822200589.9 +62.946565494217225 1822204826.6 +58.144560826277115 1822209063.3 +53.9808538996329 1822213300 +49.64299837139386 1822217536.6 +44.04325564620609 1822221773.3 +34.50890575096379 1822226010 +12.009122760666566 1822230246.7 +0.0 1822234483.4 +81.8127730667985 1822282851.4 +70.00019289751357 1822287064.5 +63.28015441176382 1822291277.7 +58.490048996867046 1822295490.9 +54.35381764772027 1822299704 +50.07372230707582 1822303917.2 +44.61557101827482 1822308130.3 +35.41935515080093 1822312343.5 +13.963390815095023 1822316556.7 +0.0 1822320769.8 +82.01666980100167 1822369349.7 +70.31820549060608 1822373539.4 +63.61601588442132 1822377729 +58.82958754093531 1822381918.7 +54.7281859121075 1822386108.3 +50.51039586927945 1822390298 +45.19015894545445 1822394487.6 +36.323854924116404 1822398677.3 +15.891051330837103 1822402866.9 +0.0 1822407056.6 +82.2109398372724 1822455848.3 +70.63481356739871 1822460014.5 +63.94592773055715 1822464180.6 +59.175075711525245 1822468346.8 +55.098877105083965 1822472512.9 +50.94934198659399 1822476679.1 +45.76106980122333 1822480845.2 +37.218727999499436 1822485011.4 +17.785286642560063 1822489177.5 +0.0 1822493343.7 +82.3933106204998 1822542347.2 +70.939522391148 1822546489.8 +64.2781121318039 1822550632.5 +59.51688681070442 1822554775.1 +55.47184085317134 1822558917.8 +51.38006592227596 1822563060.5 +46.32970810188129 1822567203.1 +38.11132851977157 1822571345.8 +19.650641860485738 1822575488.5 +0.0 1822579631.1 +82.5756814037272 1822628846.2 +71.24423121489731 1822632965.4 +64.60207435141807 1822637084.6 +59.86237498129435 1822641203.8 +55.84253204614781 1822645323 +51.8167394844796 1822649442.2 +46.892396776017584 1822653561.4 +38.996574897222175 1822657680.6 +21.481167358092442 1822661799.8 +0.0 1822665919 +82.74842548902217 1822715345.6 +71.54299041212492 1822719441.3 +64.92830912614312 1822723537.1 +60.20191352536261 1822727632.8 +56.213223239124275 1822731728.5 +52.249735975272465 1822735824.3 +47.457358005264794 1822739920 +39.87587164815112 1822744015.8 +23.274590580269283 1822748111.5 +0.0 1822752207.2 +82.91749250290637 1822801845.2 +71.8380725379418 1822805917.5 +65.24859427434653 1822809989.8 +60.53777499802012 1822814062.1 +56.58391443210074 1822818134.4 +52.68045991095443 1822822206.7 +48.022319234512004 1822826279.1 +40.74554170114762 1822830351.4 +25.03318408212715 1822834423.7 +0.0 1822838496 +83.08428696167967 1822888345.1 +72.127205037237 1822892394 +65.56887942254993 1822896442.9 +60.87731354208837 1822900491.8 +56.954605625077214 1822904540.7 +53.1134564017473 1822908589.6 +48.58133083723752 1822912638.5 +41.60926212762245 1822916687.4 +26.760624935076827 1822920736.3 +0.0 1822924785.2 +83.23777765110977 1822974845.3 +72.41266046512145 1822978870.8 +65.88916457075334 1822982896.3 +61.21317501474588 1822986921.8 +57.32161974664292 1822990947.3 +53.54418033742926 1822994972.9 +49.140342439963064 1822998998.4 +42.46108330105395 1823003023.9 +28.450963512596616 1823007049.4 +0.0 1823011074.9 +83.38899578542896 1823061345.8 +72.6921662664842 1823065347.9 +66.20350009243506 1823069350.1 +61.54903648740338 1823073352.2 +57.68636131309771 1823077354.4 +53.971227201700465 1823081356.6 +49.69340441616692 1823085358.7 +43.305550331663916 1823089360.9 +30.108744924908358 1823093363 +0.0 1823097365.2 +83.54248647485907 1823147846.5 +72.97167206784697 1823151825.4 +66.51415854270603 1823155804.2 +61.87894833353923 1823159783 +58.05337543466342 1823163761.9 +54.39827406597166 1823167740.7 +50.24278932096002 1823171719.5 +44.14406773575222 1823175698.4 +31.735373688311896 1823179677.2 +0.0 1823183656 +83.68407791124584 1823234347.6 +73.24155117127731 1823238303.1 +66.8225444378661 1823242258.7 +62.214809806196726 1823246214.2 +58.41811700111821 1823250169.8 +54.82532093024287 1823254125.3 +50.78990167064222 1823258080.8 +44.97295844190809 1823262036.4 +33.321223104874804 1823265991.9 +0.0 1823269947.5 +83.82199227622183 1823320849 +73.51143027470765 1823324781.3 +67.1272532616154 1823328713.5 +62.544721652332555 1823332645.8 +58.78513112268392 1823336578.1 +55.25236779451407 1823340510.4 +51.333336948913654 1823344442.7 +45.78994989502062 1823348375 +34.87959694394028 1823352307.3 +0.0 1823356239.6 +83.95763408608693 1823407350.6 +73.7753597516163 1823411259.7 +67.43196208536469 1823415168.8 +62.87463349846839 1823419077.9 +59.14392306261705 1823422986.9 +55.67346503226361 1823426896 +51.87309515577433 1823430805.1 +46.59363757878995 1823434714.2 +36.40541361779767 1823438623.2 +0.0 1823442532.3 +84.08959882454127 1823493852.6 +74.03333960200331 1823497738.5 +67.73299383770323 1823501624.4 +63.20086827319346 1823505510.3 +59.50498755766108 1823509396.2 +56.09683482512404 1823513282.1 +52.412853362635005 1823517168.1 +47.39137563603763 1823521054 +37.89780508763597 1823524939.9 +0.0 1823528825.8 +84.21788649158484 1823580354.9 +74.28764238097955 1823584217.7 +68.03175303493086 1823588080.5 +63.52483049280762 1823591943.2 +59.86605205270511 1823595806 +56.51198243635191 1823599668.8 +52.9443893878631 1823603531.6 +48.17948699535285 1823607394.4 +39.35763939226621 1823611257.2 +0.0 1823615120 +84.34022453210675 1823666857.5 +74.54194515995577 1823670697.2 +68.32683516074773 1823674536.9 +63.84511564101102 1823678376.6 +60.22711654774915 1823682216.3 +56.92940260269067 1823686056.1 +53.47452089679133 1823689895.8 +48.952022030213996 1823693735.5 +40.784048492877346 1823697575.2 +0.0 1823701414.9 +84.46029001751774 1823753360.4 +74.78662124099958 1823757177.1 +68.61596766004293 1823760993.8 +64.16540078921442 1823764810.5 +60.58223141627152 1823768627.2 +57.346822769029444 1823772443.9 +53.99643022408699 1823776260.6 +49.718607438553455 1823780077.3 +42.17790042828042 1823783894 +0.0 1823787710.7 +84.57895098662887 1823839863.6 +75.02902476693248 1823843657.3 +68.90737271444902 1823847451 +64.48568593741783 1823851244.8 +60.93366921338311 1823855038.5 +57.75829330884655 1823858832.3 +54.52061210649357 1823862626 +50.46961652243882 1823866419.8 +43.538327159664384 1823870213.5 +0.0 1823874007.3 +84.6953394006291 1823926367 +75.2677512214546 1823930137.9 +69.19650521374423 1823933908.7 +64.80002145909957 1823937679.6 +61.288784081905476 1823941450.5 +58.16976384866364 1823945221.3 +55.0328947358568 1823948992.2 +51.213271463502664 1823952763 +44.86987379725106 1823956533.9 +0.0 1823960304.7 +84.80577818810767 1824012870.8 +75.50647767597675 1824016618.8 +69.476011015107 1824020366.9 +65.11662953589219 1824024114.9 +61.640221879017076 1824027862.9 +58.57528476195907 1824031611 +55.54744992033093 1824035359 +51.94502715152317 1824039107 +46.166590714518755 1824042855 +0.0 1824046603.1 +84.91253990417547 1824099374.9 +75.73557743256644 1824103100.1 +69.75919388788053 1824106825.4 +65.43096505757393 1824110550.7 +61.98571004960703 1824114276 +58.983078230365415 1824118001.3 +56.05010585176174 1824121726.5 +52.66120651508957 1824125451.8 +47.42620535635659 1824129177.1 +0.0 1824132902.4 +85.01930162024327 1824185879.2 +75.96467718915615 1824189581.8 +70.03502261783254 1824193284.4 +65.73567388132324 1824196987 +62.33119822019696 1824200689.6 +59.38264951713918 1824204392.2 +56.55276178319254 1824208094.8 +53.36775918072353 1824211797.4 +48.65693990439712 1824215500 +1.32191993965424 1824219202.6 +85.1223862649003 1824272383.8 +76.18782731922418 1824276063.8 +70.30857879267364 1824279743.8 +66.0463323315942 1824283423.8 +62.67668639078689 1824287103.8 +59.780816287613085 1824290783.9 +57.045791016690906 1824294463.9 +54.062412593314164 1824298143.9 +49.85057217700779 1824301823.9 +0.0 1824305503.9 +85.22319835444644 1824358888.6 +76.41097744929222 1824362546.1 +70.57845789610397 1824366203.7 +66.35104115534351 1824369861.2 +63.01622493485516 1824373518.7 +60.176710502976086 1824377176.2 +57.538820250189275 1824380833.7 +54.743762236561594 1824384491.2 +51.015324355821164 1824388148.7 +0.0 1824391806.2 +85.3203333725818 1824445393.7 +76.62450088142782 1824449028.8 +70.84833699953431 1824452663.9 +66.64980035257113 1824456299 +63.35208640751265 1824459934.1 +60.56665509181742 1824463569.2 +58.02222278575522 1824467204.3 +55.4154851818766 1824470839.4 +52.142974259204664 1824474474.5 +34.54600802639367 1824478109.6 +85.41746839071718 1824531899 +76.83802431356341 1824535511.8 +71.11226647644297 1824539124.6 +66.95083210490968 1824542737.4 +63.68794788017016 1824546350.2 +60.95887223576965 1824549963 +58.49967569479948 1824553575.8 +56.07530887414827 1824557188.6 +53.235794442269196 1824560801.3 +44.15001736227389 1824564414.1 +85.51233085374164 1824618404.5 +77.04787067428825 1824621995.1 +71.37619595335164 1824625585.7 +67.24591423072653 1824629176.3 +64.02380935282766 1824632766.9 +61.345139753200215 1824636357.5 +58.97712860384375 1824639948 +56.72182879707674 1824643538.6 +54.29746197642554 1824647129.2 +51.29850722859469 1824650719.8 +85.59983917394457 1824704910.2 +77.25544447990218 1824708478.7 +71.63049873232787 1824712047.2 +67.5387238014325 1824715615.7 +64.35372119896348 1824719184.2 +61.725457644109106 1824722752.7 +59.44495481495558 1824726321.2 +57.35049984044021 1824729889.7 +55.324299790262906 1824733458.2 +48.64731320646469 1824737026.7 +85.69102456555828 1824791416.1 +77.4533915875837 1824794962.6 +71.88847858271487 1824798509.1 +67.8301288558386 1824802055.6 +64.67768341857766 1824805602.2 +62.10209846360724 1824809148.7 +59.90315432813499 1824812695.2 +57.97549381239291 1824816241.7 +56.3140353286704 1824819788.2 +55.1863854252869 1824823334.8 +85.77853288576121 1824877922.1 +77.65133869526518 1824881446.7 +72.13910429028033 1824884971.4 +68.11331172861213 1824888496.1 +64.99796856678105 1824892020.8 +62.47278965658372 1824895545.4 +60.359081286203484 1824899070.1 +58.581234388480745 1824902594.8 +57.27489077328061 1824906119.5 +57.432058534121474 1824909644.1 +85.86376865085323 1824964428.2 +77.84928580294668 1824967931.1 +72.38745744273491 1824971434.1 +68.39876715649658 1824974937.1 +65.31825371498445 1824978440 +62.84348084956019 1824981943 +60.80765410145045 1824985445.9 +59.181025338046915 1824988948.9 +58.20459356898261 1824992451.8 +58.67836940661611 1824995954.8 +85.9453273445345 1825050934.4 +78.03760621269575 1825054415.8 +72.6321335237787 1825057897.2 +68.67827295785933 1825061378.5 +65.63853886318786 1825064859.9 +63.21049497112589 1825068341.3 +61.248004735064846 1825071822.7 +59.76523996315898 1825075304.1 +59.09946664436565 1825078785.5 +60.29904854349799 1825082266.8 +86.02688603821578 1825137440.7 +78.22592662244482 1825140900.6 +72.87085997830084 1825144360.6 +68.95777875922211 1825147820.5 +65.94919731345884 1825151280.5 +63.57155946616992 1825154740.4 +61.684678297268476 1825158200.4 +60.333878263816956 1825161660.3 +59.96318707084049 1825165120.3 +61.83221936017692 1825168580.3 +86.10249510537537 1825223946.9 +78.41424703219388 1825227385.6 +73.10958643282298 1825230824.3 +69.22765786265244 1825234263 +66.2598557637298 1825237701.7 +63.926674334692294 1825241140.4 +62.11767478806134 1825244579.1 +60.89288986654248 1825248017.7 +60.795754848407114 1825251456.4 +63.29573073621792 1825254895.1 +86.17810417253497 1825310453.2 +78.59294074401053 1825313870.8 +73.34236326082345 1825317288.4 +69.50121403749353 1825320706 +66.56456458747911 1825324123.5 +64.2781121318039 1825327541.1 +62.538772025810886 1825330958.7 +61.43632514481391 1825334376.3 +61.59944253217645 1825337793.9 +64.68958267162098 1825341211.4 +86.25598579480548 1825396959.5 +78.76936190071626 1825400356.1 +73.57146301741315 1825403752.8 +69.7651435144022 1825407149.4 +66.86332378470672 1825410546.1 +64.62360030239383 1825413942.7 +62.95619219214966 1825417339.3 +61.976083351674596 1825420736 +62.37565463844835 1825424132.6 +66.02112930920768 1825427529.3 +86.3256452354434 1825483465.6 +78.94210598601121 1825486841.5 +73.80056277400284 1825490217.4 +70.0253959199001 1825493593.3 +67.16435553704527 1825496969.2 +64.96908847298376 1825500345.1 +63.361713105445084 1825503721 +62.49431560755949 1825507096.9 +63.11930957951219 1825510472.8 +67.28669357756716 1825513848.7 +86.39757723119224 1825569971.7 +79.11117299989543 1825573327 +74.01776327754921 1825576682.4 +70.2833757702871 1825580037.7 +67.45943766286213 1825583393 +65.30267739053036 1825586748.4 +63.763556947329754 1825590103.7 +63.002921165511964 1825593459 +63.83916601448935 1825596814.4 +68.49590217463194 1825600169.7 +86.4635596004194 1825656477.6 +79.27796745866871 1825659812.6 +74.23723633620648 1825663147.5 +70.53767854926333 1825666482.5 +67.74262053563567 1825669817.5 +65.6348617917771 1825673152.4 +64.15577409128198 1825676487.4 +63.49962747042109 1825679822.4 +64.52646528425846 1825683157.4 +69.65470472692363 1825686492.3 +86.53549159616826 1825742983.3 +79.44108484603126 1825746298.1 +74.45075976834208 1825749612.9 +70.79198132823956 1825752927.7 +68.03175303493086 1825756242.5 +65.95882401139127 1825759557.4 +64.54571868012331 1825762872.2 +63.98670707739778 1825766187 +65.19223860305179 1825769501.8 +70.7571516079206 1825772816.7 +86.59552433887374 1825829488.7 +79.59825260687212 1825832783.6 +74.66428320047767 1825836078.5 +71.03665740928338 1825839373.4 +68.31125883629362 1825842668.3 +66.28505878611634 1825845963.1 +64.92235949962145 1825849258 +64.46048291503129 1825852552.9 +65.8328088994586 1825855847.8 +71.8091924441445 1825859142.7 +86.6615067081009 1825915993.8 +79.75542036771299 1825919269 +74.87185700609162 1825922544.2 +71.27906093521626 1825925819.4 +68.58708756624564 1825929094.6 +66.59939430779805 1825932369.8 +65.29305069259793 1825935645 +64.9186824282107 1825938920.2 +66.44817617347887 1825942195.4 +72.80487760907366 1825945470.6 +86.72153945080642 1826002498.6 +79.90891105714309 1826005754.3 +75.07575374029479 1826009010 +71.51778738973839 1826012265.8 +68.85469411456506 1826015521.5 +66.91005275806903 1826018777.2 +65.66006481416363 1826022033 +65.36498268834676 1826025288.7 +67.03606787000169 1826028544.5 +73.74420710270812 1826031800.2 +86.78384474862281 1826089002.9 +80.05645212005153 1826092239.4 +75.27370084797627 1826095476 +71.75283677284976 1826098712.5 +69.12089614658464 1826101949 +67.20881195529667 1826105185.6 +66.01517968268601 1826108422.1 +65.8016562505504 1826111658.7 +67.60470617065967 1826114895.2 +74.6294534801587 1826118131.7 +86.84387749132831 1826175506.8 +80.20399318295996 1826178724.4 +75.46797088424702 1826181942 +71.98193652943948 1826185159.6 +69.3848256234933 1826188377.2 +67.50984370763518 1826191594.8 +66.36066785327594 1826194812.4 +66.22870311482161 1826198030 +68.150414004042 1826201247.5 +75.45607163120368 1826204465.1 +86.90023316262304 1826262010.1 +80.34558461934674 1826265209 +75.65401873888518 1826268408 +72.2050866595075 1826271606.9 +69.63912840246952 1826274805.8 +67.79897620693039 1826278004.8 +66.70615602386587 1826281203.7 +66.6401736546387 1826284402.6 +68.6686462599269 1826287601.6 +76.22492959465406 1826290800.5 +86.95658883391778 1826348512.9 +80.48349898432274 1826351693.4 +75.84233914863424 1826354874 +72.42228716305388 1826358054.5 +69.8874815549241 1826361235.1 +68.0881087062256 1826364415.7 +67.03606787000169 1826367596.2 +67.03606787000169 1826370776.8 +69.1713021913577 1826373957.3 +76.93515933169878 1826377137.9 +87.0129445052125 1826435015 +80.61914079418783 1826438177.4 +76.02103286045089 1826441339.9 +72.63581059518947 1826444502.4 +70.13583470737866 1826447664.9 +68.36761450758836 1826450827.4 +67.36230264472677 1826453989.8 +67.42828501395392 1826457152.3 +69.65470472692363 1826460314.8 +77.59498302397046 1826463477.3 +87.06335054998557 1826521516.3 +80.7474284612314 1826524661.1 +76.19972657226752 1826527805.8 +72.84933402732507 1826530950.5 +70.3745611619008 1826534095.2 +68.6374936110187 1826537239.9 +67.6766381664085 1826540384.6 +67.80492583345206 1826543529.3 +70.11063168499213 1826546674.1 +78.20072360005828 1826549818.8 +87.11375659475863 1826608016.9 +80.87344357316407 1826611144.2 +76.37247065756249 1826614271.5 +73.05323076152824 1826617398.7 +70.60961054501216 1826620526 +68.90737271444902 1826623653.3 +67.9813469901578 1826626780.6 +68.16966739990686 1826629907.8 +70.55325487371744 1826633035.1 +78.7656848293055 1826636162.4 +87.16416263953171 1826694516.6 +81.00173124020763 1826697626.8 +76.53926511633577 1826700737 +73.25117786920973 1826703847.2 +70.83871030160186 1826706957.3 +69.16535256483604 1826710067.5 +68.28237874249633 1826713177.7 +68.52110519701846 1826716287.8 +70.98030173798864 1826719398 +79.27796745866871 1826722508.2 +87.21089161289402 1826781015.4 +81.11811965420786 1826784108.8 +76.70605957510908 1826787202.3 +73.44912497689126 1826790295.7 +71.0618604316699 1826793389.1 +69.41965534381225 1826796482.5 +68.5751883132023 1826799575.9 +68.86064374108672 1826802669.3 +71.38214557987331 1826805762.8 +79.75174329630222 1826808856.2 +87.2553480311454 1826867513.2 +81.2345080682081 1826870590.2 +76.86549989106085 1826873667.3 +73.63744538664031 1826876744.3 +71.2753838638055 1826879821.3 +69.66433142485607 1826882898.3 +68.85469411456506 1826885975.3 +69.19055558722256 1826889052.4 +71.76841309730388 1826892129.4 +80.18841685850585 1826895206.4 +87.30207700450771 1826954009.9 +81.34721941079756 1826957070.9 +77.01671802538004 1826960131.9 +73.8198161698677 1826963192.9 +71.4889072959411 1826966253.9 +69.9030578793782 1826969314.9 +69.13052284451707 1826972375.9 +69.51084073542597 1826975437 +72.13910429028033 1826978498 +80.5939377718013 1826981559 +87.34285635134835 1827040505.4 +81.45765819827614 1827043550.8 +77.17020871481014 1827046596.2 +73.99850988168434 1827049641.6 +71.69053147503337 1827052686.9 +70.13583470737866 1827055732.3 +69.39445232142573 1827058777.7 +69.81554955917527 1827061823.1 +72.49421915880271 1827064868.5 +80.96462896477776 1827067913.9 +87.38731276959975 1827126999.7 +81.56441991434394 1827130029.9 +77.31180015119692 1827133060 +74.17720359350098 1827136090.2 +71.88847858271487 1827139120.3 +70.3589848374467 1827142150.5 +69.64875510040196 1827145180.6 +70.11063168499213 1827148210.8 +72.8300806314602 1827151241 +81.30644006395693 1827154271.1 +87.42441504502962 1827213492.7 +81.66750455900097 1827216508 +77.4533915875837 1827219523.4 +74.34399805227429 1827222538.7 +72.0827486189856 1827225554.1 +70.57845789610397 1827228569.4 +69.89710825285654 1827231584.8 +70.39608711287657 1827234600.1 +73.15036577966362 1827237615.5 +81.62077558563867 1827240630.8 +87.46519439187026 1827299984.2 +81.76236702202543 1827302985.2 +77.5913059525597 1827305986.1 +74.5071154396368 1827308987.1 +72.26511940221302 1827311988.1 +70.78603170171789 1827314989.1 +70.13583470737866 1827317990 +70.66964328771766 1827320991 +73.45875167482367 1827323992 +81.91585771145553 1827326992.9 +87.50002411218921 1827386474.3 +81.8595020401608 1827389461.3 +77.72327069101401 1827392448.3 +74.658333573956 1827395435.4 +72.4474901854404 1827398422.4 +70.98992843592107 1827401409.4 +70.36493446396837 1827404396.5 +70.92989569321557 1827407383.5 +73.75015672922979 1827410370.5 +82.1797871883642 1827413357.6 +87.53485383250818 1827472962.8 +81.9506874317745 1827475936.3 +77.84560873153592 1827478909.9 +74.81182426338611 1827481883.4 +72.6165571993246 1827484857 +71.18419847219181 1827487830.5 +70.58440752262564 1827490804.1 +71.17824884567014 1827493777.6 +74.02371290407088 1827496751.2 +82.43408996734044 1827499724.7 +87.57195610793804 1827559449.6 +82.03819575197743 1827562410.1 +77.96794677205783 1827565370.7 +74.95936532629455 1827568331.2 +72.78335165809791 1827571291.7 +71.37024632682997 1827574252.3 +70.79793095476123 1827577212.8 +71.41697530019226 1827580173.4 +74.28764238097955 1827583133.9 +82.66318972393013 1827586094.4 +87.60083620173535 1827645934.7 +82.1197544456587 1827648882.7 +78.08433518605806 1827651830.7 +75.09500713615964 1827654778.7 +72.94051941893876 1827657726.7 +71.54894003864659 1827660674.7 +70.9995551338535 1827663622.7 +71.64607505678197 1827666570.7 +74.5359955334341 1827669518.8 +82.87076352954406 1827672466.8 +87.63198885064354 1827732417.9 +82.19904058422907 1827735353.9 +78.19109690212585 1827738289.9 +75.22697187461398 1827741225.9 +73.09401010836888 1827744161.8 +71.72168412394157 1827747097.8 +71.19382517012424 1827750033.8 +71.86327556032833 1827752969.8 +74.77104491654548 1827755905.7 +83.06871063722556 1827758841.7 +87.66314149955174 1827818899.3 +82.27692220649956 1827821823.7 +78.29785861819366 1827824748.2 +75.35525954165755 1827827672.6 +73.24155117127731 1827830597.1 +71.8848015113041 1827833521.5 +71.37619595335164 1827836446 +72.06717229453149 1827839370.4 +74.9941950466135 1827842294.8 +83.25108142045296 1827845219.3 +87.69429414845995 1827905378.6 +82.3465816471375 1827908292.1 +78.39867070773978 1827911205.5 +75.47759758217946 1827914118.9 +73.3794655362533 1827917032.4 +72.04196927214497 1827919945.8 +71.54894003864659 1827922859.3 +72.26511940221302 1827925772.7 +75.20176885222745 1827928686.1 +83.4141988078155 1827931599.6 +87.71949717084648 1827991855.9 +82.41256401636467 1827994758.8 +78.48985609935349 1827997661.8 +75.58803636965801 1828000564.8 +73.51143027470765 1828003467.7 +72.18356070853173 1828006370.7 +71.7157344974199 1828009273.7 +72.4474901854404 1828012176.6 +75.39603888849818 1828015079.6 +83.57136656865637 1828017982.6 +87.744700193233 1828078331 +82.47854638559183 1828081224 +78.5810414909672 1828084117 +75.69479808572581 1828087010.1 +73.63149576011864 1828089903.1 +72.32742470002941 1828092796.1 +71.86922518685 1828095689.2 +72.62023427073537 1828098582.2 +75.57840967172558 1828101475.2 +83.70928093363237 1828104368.3 +87.76395358909788 1828164803.8 +82.54085168340823 1828167687.5 +78.66260018464845 1828170571.1 +75.79788273038284 1828173454.8 +73.75015672922979 1828176338.4 +72.45343981196207 1828179222.1 +72.01676624975843 1828182105.7 +72.78335165809791 1828184989.4 +75.75115375702055 1828187873.1 +83.8412456720867 1828190756.7 +87.7891566114844 1828251274.3 +82.59720735470297 1828254149.2 +78.74415887832973 1828257024 +75.89274519340732 1828259898.8 +73.85691844529758 1828262773.7 +72.57945492389474 1828265648.5 +72.15468061473443 1828268523.4 +72.936842347528 1828271398.2 +75.90832151786141 1828274273.1 +83.95763408608693 1828277147.9 +87.81068256246019 1828337742.4 +82.64761339947603 1828340609 +78.81609087407855 1828343475.6 +75.98025351361025 1828346342.2 +73.95773053484372 1828349208.9 +72.6921662664842 1828352075.5 +72.2806957266671 1828354942.1 +73.0724841573931 1828357808.7 +76.05586258076985 1828360675.3 +84.0703454286764 1828363541.9 +87.82625888691429 1828424208 +82.6980194442491 1828427067 +78.88575031471649 1828429925.9 +76.06548927870229 1828432784.9 +74.05486555297908 1828435643.9 +72.79892798255199 1828438502.8 +72.39708414066735 1828441361.8 +73.20077182443667 1828444220.8 +76.18782731922418 1828447079.8 +84.16748044681178 1828449938.7 +87.84551228277913 1828510671 +82.73879879108972 1828513523 +78.94805561253288 1828516374.9 +76.13742127445111 1828519226.8 +74.14010131807112 1828522078.7 +72.89606300068738 1828524930.6 +72.50384585673514 1828527782.5 +73.32310986495857 1828530634.5 +76.31016535974608 1828533486.4 +84.2527162119038 1828536338.3 +87.86108860723324 1828597131.4 +82.77957813793036 1828599976.9 +79.00441128382761 1828602822.4 +76.20935327019995 1828605667.8 +74.21798294034161 1828608513.3 +72.9812987657794 1828611358.8 +72.6009808748705 1828614204.3 +73.42987158102638 1828617049.7 +76.42287670233554 1828619895.2 +84.33427490558508 1828622740.7 +87.87666493168734 1828683589.1 +82.82035748477101 1828686428.7 +79.05481732860069 1828689268.4 +76.26938601290546 1828692108 +74.28764238097955 1828694947.7 +73.06285745946067 1828697787.3 +72.6921662664842 1828700627 +73.52473404405085 1828703466.6 +76.52368879188167 1828706306.2 +84.4062069013339 1828709145.9 +87.88629162961978 1828770044 +82.8515101336792 1828772878.4 +79.09927374685209 1828775712.9 +76.32574168420018 1828778547.3 +74.35362475020672 1828781381.7 +73.13478945520951 1828784216.2 +72.76777533364381 1828787050.6 +73.61224236425379 1828789885 +76.61119711208462 1828792719.5 +84.46623964403939 1828795553.9 +87.90186795407388 1828856496 +82.8803902274765 1828859325.9 +79.14005309369271 1828862155.7 +76.37614772897325 1828864985.6 +74.40998042150144 1828867815.4 +73.194822197915 1828870645.3 +72.83970732939264 1828873475.1 +73.68785143141338 1828876305 +76.69048325065498 1828879134.8 +84.51664568881247 1828881964.7 +87.91149465200631 1828942945.2 +82.90559324986303 1828945771.1 +79.17715536912259 1828948597 +76.41692707581387 1828951422.9 +74.45670939486375 1828954248.8 +73.25117786920973 1828957074.7 +72.89974007209814 1828959900.6 +73.75383380064055 1828962726.5 +76.75278854847139 1828965552.4 +84.56337466217477 1828968378.3 +87.91744427852798 1829029391.3 +82.9271192008388 1829032213.9 +79.20603546291989 1829035036.5 +76.45175679613284 1829037859.1 +74.49521618659348 1829040681.7 +73.29790684257205 1829043504.3 +72.94646904546045 1829046326.9 +73.81018947193527 1829049149.5 +76.80914421976611 1829051972 +84.6041540090154 1829054794.6 +87.92112134993874 1829115834.5 +82.9426955252929 1829118654.4 +79.22756141389566 1829121474.3 +76.47923237363028 1829124294.2 +74.52636883550169 1829127114.1 +73.332736562891 1829129934.1 +72.98724839230107 1829132754 +73.85096881877591 1829135573.9 +76.85360063801751 1829138393.8 +84.6330341028127 1829141213.8 +87.92707097646041 1829202274.5 +82.95232222322534 1829205092.4 +79.24681480976052 1829207910.3 +76.50443539601682 1829210728.2 +74.5515718578882 1829213546.1 +73.35793958527753 1829216364 +73.01840104120927 1829219181.9 +73.8821214676841 1829221999.8 +76.88475328692572 1829224817.7 +84.65456005378846 1829227635.6 +87.93302060298208 1829288711.4 +82.96194892115776 1829291528 +79.25871406280386 1829294344.5 +76.51773916536001 1829297161 +74.57309780886398 1829299977.6 +73.3794655362533 1829302794.1 +73.03765443707414 1829305610.6 +73.90732449007064 1829308427.2 +76.90995630931224 1829311243.7 +84.67013637824256 1829314060.2 +87.93669767439285 1829375145.2 +82.96789854767943 1829377961 +79.2683407607363 1829380776.8 +76.52368879188167 1829383592.6 +74.57677488027474 1829386408.4 +73.38909223418574 1829389224.3 +73.04728113500657 1829392040.1 +73.91695118800307 1829394855.9 +76.91958300724468 1829397671.7 +84.67381344965332 1829400487.5 +87.93669767439285 1829461575.7 +82.96789854767943 1829464391.5 +79.2683407607363 1829467207.2 +76.52368879188167 1829470023 +74.58272450679641 1829472838.7 +73.38909223418574 1829475654.5 +73.04728113500657 1829478470.2 +73.91695118800307 1829481286 +76.91958300724468 1829484101.7 +84.67381344965332 1829486917.5 +87.93302060298208 1829548003 +82.96789854767943 1829550819.3 +79.26239113421462 1829553635.7 +76.51773916536001 1829556452 +74.57309780886398 1829559268.4 +73.3794655362533 1829562084.7 +73.04360406359581 1829564901.1 +73.90732449007064 1829567717.4 +76.90995630931224 1829570533.8 +84.67013637824256 1829573350.1 +87.93302060298208 1829634427 +82.958271849747 1829637244.6 +79.25276443628219 1829640062.2 +76.50811246742758 1829642879.8 +74.55752148440988 1829645697.3 +73.3638892117992 1829648514.9 +73.02207811262004 1829651332.5 +73.88579853909486 1829654150.1 +76.89070291344738 1829656967.7 +84.65456005378846 1829659785.3 +87.92707097646041 1829720847.7 +82.94637259670367 1829723667.2 +79.23718811182809 1829726486.7 +76.48885907156271 1829729306.1 +74.5359955334341 1829732125.6 +73.33868618941267 1829734945.1 +72.99319801882274 1829737764.6 +73.85691844529758 1829740584.1 +76.85360063801751 1829743403.6 +84.62935703140194 1829746223 +87.92112134993874 1829807265.1 +82.93079627224957 1829810087.1 +79.21198508944155 1829812909.1 +76.45770642265451 1829815731.1 +74.5071154396368 1829818553.2 +73.30158391398281 1829821375.2 +72.95609574339288 1829824197.2 +73.81018947193527 1829827019.2 +76.81282129117687 1829829841.3 +84.59820438249373 1829832663.3 +87.91744427852798 1829893679.1 +82.9115428763847 1829896504.3 +79.18678206705502 1829899329.5 +76.4265537737463 1829902154.7 +74.46633609279618 1829904979.9 +73.2571274957314 1829907805.2 +72.90568969861981 1829910630.4 +73.75978342716222 1829913455.6 +76.75873817499306 1829916280.8 +84.56337466217477 1829919106 +87.90554502548464 1829980089.7 +82.89001692540893 1829982918.8 +79.15195234673607 1829985747.8 +76.38577442690568 1829988576.9 +74.41960711943388 1829991405.9 +73.20672145095834 1829994235 +72.84933402732507 1829997064 +73.69380105793505 1829999893.1 +76.69048325065498 1830002722.1 +84.51664568881247 1830005551.2 +87.89591832755221 1830066497 +82.86113683161163 1830069330.5 +79.1148500713062 1830072164 +76.34131800865428 1830074997.6 +74.36325144813914 1830077831.1 +73.14441615314195 1830080664.6 +72.77967458668715 1830083498.1 +73.62186906218622 1830086331.7 +76.61487418349539 1830089165.2 +84.46029001751774 1830091998.7 +87.88629162961978 1830152900.9 +82.82998418270341 1830155739.5 +79.0703936530548 1830158578.1 +76.28496233735954 1830161416.8 +74.30321870543365 1830164255.4 +73.0724841573931 1830167094 +72.70179296441663 1830169932.6 +73.53663329709417 1830172771.3 +76.52963841840334 1830175609.9 +84.40025727481223 1830178448.5 +87.87071530516567 1830239301.4 +82.79515446238447 1830242145.8 +79.01998760828172 1830244990.1 +76.22492959465406 1830247834.5 +74.23128670968481 1830250678.8 +72.99687509023352 1830253523.2 +72.6165571993246 1830256367.5 +73.43949827895881 1830259211.9 +76.4265537737463 1830262056.3 +84.3283252790634 1830264900.6 +87.85513898071157 1830325698.5 +82.75805218695459 1830328549.2 +78.963631936987 1830331399.9 +76.15894722542689 1830334250.6 +74.1556776425252 1830337101.4 +72.91163932514148 1830339952.1 +72.51942218118923 1830342802.8 +73.332736562891 1830345653.5 +76.31611498626775 1830348504.2 +84.24903914049304 1830351354.9 +87.83956265625748 1830412092.3 +82.7135957687032 1830414950 +78.90727626569225 1830417807.6 +76.08106560315638 1830420665.3 +74.07044187743318 1830423523 +72.8145043070061 1830426380.6 +72.41266046512145 1830429238.3 +73.21634814889077 1830432096 +76.19377694574585 1830434953.6 +84.16153082029011 1830437811.3 +87.82625888691429 1830498482.7 +82.6668667953409 1830501347.9 +78.83534426994342 1830504213.2 +75.99950690947512 1830507078.4 +73.97698393070858 1830509943.6 +72.7077425909383 1830512808.8 +72.29032242459954 1830515674.1 +73.08438341043643 1830518539.3 +76.05586258076985 1830521404.5 +84.06071873074397 1830524269.8 +87.80473293593852 1830584869.8 +82.61646075056782 1830587743.1 +78.7656848293055 1830590616.5 +75.91427114438308 1830593489.9 +73.87617184116243 1830596363.3 +72.59503124834883 1830599236.7 +72.16798438407763 1830602110.1 +72.94646904546045 1830604983.5 +75.91427114438308 1830607856.8 +83.9480073881545 1830610730.2 +87.78547954007364 1830671253.5 +82.5601050792731 1830674135.6 +78.68780320703499 1830677017.7 +75.82308575276937 1830679899.9 +73.76941012509464 1830682782 +72.47496576293784 1830685664.1 +72.03234257421254 1830688546.2 +72.79297835603035 1830691428.4 +75.75115375702055 1830694310.5 +83.83161897415427 1830697192.6 +87.7602765176871 1830757633.9 +82.5000723365676 1830760525.3 +78.60624451335373 1830763416.8 +75.72000110811234 1830766308.2 +73.65302171109441 1830769199.7 +72.34667809589426 1830772091.1 +71.8848015113041 1830774982.6 +72.6321335237787 1830777874 +75.58435929824725 1830780765.4 +83.69965423569994 1830783656.9 +87.73875056671133 1830844011 +82.4377670387512 1830846912.4 +78.51505912174002 1830849813.7 +75.61323939204455 1830852715 +73.5306836705725 1830855616.3 +72.2050866595075 1830858517.7 +71.731310821874 1830861419 +72.45938943848374 1830864320.3 +75.39603888849818 1830867221.6 +83.55579024420227 1830870122.9 +87.71354754432481 1830930384.9 +82.37178466952403 1830933296.7 +78.42387373012633 1830936208.4 +75.50280060456599 1830939120.2 +73.39871893211819 1830942032 +72.05754559659907 1830944943.7 +71.5645163631007 1830947855.5 +72.27474610014544 1830950767.2 +75.20176885222745 1830953679 +83.3986224833614 1830956590.7 +87.6823948954166 1831016755.6 +82.3021252288861 1831019678.3 +78.32306164058019 1831022601.1 +75.38046256404408 1831025523.8 +73.26080456714217 1831028446.5 +71.90405490716897 1831031369.2 +71.39177227780574 1831034292 +72.07679899246394 1831037214.7 +74.9941950466135 1831040137.4 +83.2318280245881 1831043060.2 +87.65719187303009 1831103123.1 +82.22651616172651 1831106057.3 +78.22224955103405 1831108991.5 +75.2544474521114 1831111925.8 +73.11921313075541 1831114860 +71.74321007491734 1831117794.2 +71.20345186805667 1831120728.5 +71.86922518685 1831123662.7 +74.77104491654548 1831126596.9 +83.0494572413607 1831129531.2 +87.62603922412188 1831189487.4 +82.148634539456 1831192433.7 +78.10953820844459 1831195379.9 +75.12248271365708 1831198326.2 +72.96572244132531 1831201272.4 +71.57046598962236 1831204218.7 +71.01145438689684 1831207164.9 +71.6557017547144 1831210111.2 +74.53231846202334 1831213057.4 +82.8515101336792 1831216003.7 +87.59120950380292 1831275848.6 +82.06339877436398 1831278807.4 +77.99682686585511 1831281766.2 +74.98456834868108 1831284725 +72.80855468048443 1831287683.7 +71.39177227780574 1831290642.5 +70.81123472410442 1831293601.3 +71.42660199812471 1831296560.1 +74.28396530956879 1831299518.8 +82.63203707502193 1831302477.6 +87.56005685489471 1831362206.8 +81.97589045416103 1831365178.6 +77.87448882533322 1831368150.4 +74.83702728577265 1831371122.2 +72.64176022171114 1831374094 +71.20345186805667 1831377065.7 +70.59771129196884 1831380037.5 +71.18419847219181 1831383009.3 +74.01776327754921 1831385981.1 +82.39926024702147 1831388952.9 +87.52522713457574 1831448561.9 +81.890654689069 1831451547.2 +77.74847371340054 1831454532.5 +74.6894862228642 1831457517.8 +72.46901613641617 1831460503.1 +71.00550476037517 1831463488.3 +70.3745611619008 1831466473.6 +70.93357276462633 1831469458.9 +73.73825747618645 1831472444.2 +82.14495746804523 1831475429.5 +87.49039741425678 1831534914.1 +81.79351967093363 1831537913.3 +77.62245860146788 1831540912.6 +74.53231846202334 1831543911.8 +72.29032242459954 1831546911 +70.801608026172 1831549910.3 +70.1454614053111 1831552909.5 +70.66964328771766 1831555908.8 +73.44544790548048 1831558908 +81.87507836461491 1831561907.3 +87.45329513882692 1831621263.3 +81.69638465279827 1831624276.9 +77.48454423649189 1831627290.6 +74.36920107466081 1831630304.3 +72.10200201485047 1831633317.9 +70.59403422055807 1831636331.6 +69.90673495078896 1831639345.2 +70.39608711287657 1831642358.9 +73.13478945520951 1831645372.6 +81.57404661227636 1831648386.2 +87.41478834709719 1831707609.6 +81.59557256325213 1831710638.1 +77.34662987151589 1831713666.6 +74.20240661588751 1831716695.1 +71.91000453369064 1831719723.7 +70.3745611619008 1831722752.2 +69.6583817983344 1831725780.7 +70.10695461358137 1831728809.2 +72.80855468048443 1831731837.7 +81.25376146407297 1831734866.2 +87.37400900025655 1831793953.1 +81.48881084718433 1831796996.9 +77.19908880860744 1831800040.7 +74.02966253059255 1831803084.5 +71.71205742600914 1831806128.3 +70.15141103183275 1831809172.1 +69.4004019479474 1831812215.9 +69.8118724877645 1831815259.6 +72.46901613641617 1831818303.4 +80.90459622207227 1831821347.2 +87.32728002689424 1831880293.8 +81.38204913111653 1831883353.3 +77.05154774569901 1831886412.8 +73.85096881877591 1831889472.3 +71.50816069180595 1831892531.7 +69.91268457731063 1831895591.2 +69.13419991592784 1831898650.7 +69.50121403749353 1831901710.2 +72.10795164137214 1831904769.7 +80.52200577605247 1831907829.2 +87.2865006800536 1831966631.8 +81.26933778852707 1831969707.4 +76.89437998485815 1831972782.9 +73.66264840902684 1831975858.5 +71.29463725967037 1831978934.1 +69.6739581227885 1831982009.7 +68.85469411456506 1831985085.2 +69.17497926276846 1831988160.8 +71.731310821874 1831991236.4 +80.11053523623535 1831994312 +87.23609463528055 1832052967.1 +81.15294937452683 1832056059.1 +76.73721222401728 1832059151.2 +73.47432799927778 1832062243.2 +71.077436756124 1832065335.3 +69.42560497033392 1832068427.3 +68.57151124179154 1832071519.4 +68.84506741663263 1832074611.5 +71.34136623303266 1832077703.5 +79.66423497609928 1832080795.6 +87.18936566191825 1832139299.8 +81.03061133400493 1832142408.7 +76.57041776524397 1832145517.6 +73.27638089159628 1832148626.5 +70.85201407094507 1832151735.4 +69.1713021913577 1832154844.3 +68.27642911597466 1832157953.2 +68.4995792460427 1832161062.1 +70.92989569321557 1832164171 +79.17715536912259 1832167279.9 +87.14490924366685 1832225629.9 +80.90827329348303 1832228756 +76.40135075135979 1832231882.1 +73.07843378391476 1832235008.2 +70.62518686946628 1832238134.3 +68.91104978585979 1832241260.4 +67.97766991874703 1832244386.5 +68.13851475099867 1832247512.7 +70.49689920242271 1832250638.8 +78.64702386019435 1832253764.9 +87.09450319889379 1832311957.5 +80.78225818155036 1832315101.1 +76.22860666606482 1832318244.8 +72.87085997830084 1832321388.5 +70.38646041494414 1832324532.1 +68.64344323754037 1832327675.8 +67.66701146847608 1832330819.5 +67.77377318454387 1832333963.1 +70.05059894228664 1832337106.8 +78.07470848812562 1832340250.5 +87.03814752759904 1832398282.6 +80.65029344309603 1832401444.2 +76.05218550935909 1832404605.7 +72.65733654616524 1832407767.3 +70.1454614053111 1832410928.8 +68.36761450758836 1832414090.4 +67.34672632027267 1832417252 +67.39118273852407 1832420413.5 +69.5827727311748 1832423575.1 +77.44971451617293 1832426736.6 +86.98774148282598 1832484605.4 +80.51237907812003 1832487785.1 +75.86754217102079 1832490964.9 +72.44381311402964 1832494144.7 +69.89710825285654 1832497324.4 +68.08443163481483 1832500504.2 +67.01681447413682 1832503684 +66.99528852316105 1832506863.7 +69.08974349767644 1832510043.5 +76.77204194433624 1832513223.3 +86.93138581153124 1832570925.7 +80.37673726825493 1832574124 +75.67922176127172 1832577322.3 +72.22066298396162 1832580520.6 +69.64280547388029 1832583718.9 +67.79302658040872 1832586917.2 +66.68095300147934 1832590115.5 +66.58976760986565 1832593313.8 +68.58113793972397 1832596512 +76.03660918490498 1832599710.3 +86.87503014023652 1832657243.8 +80.23287327675726 1832660460.9 +75.48722428011189 1832663678 +71.99524029878266 1832666895.2 +69.38850269490406 1832670112.3 +67.49794445459186 1832673329.4 +66.3354648308894 1832676546.5 +66.17234744352686 1832679763.6 +68.04732935938496 1832682980.7 +75.24254819906807 1832686197.8 +86.81499739753102 1832743559.7 +80.08533221384883 1832746795.9 +75.29522679895204 1832750032.1 +71.76246347078221 1832753268.3 +69.1245732179954 1832756504.5 +67.19918525736423 1832759740.7 +65.9840270337778 1832762976.9 +65.7416235078449 1832766213.1 +67.4942673831811 1832769449.4 +74.39440409704734 1832772685.6 +86.75269209971462 1832829873.4 +79.93779115094038 1832833129 +75.09500713615964 1832836384.5 +71.52968664278173 1832839640.1 +68.85469411456506 1832842895.7 +66.88852680709326 1832846151.3 +65.62296253873376 1832849406.9 +65.2990003191196 1832852662.4 +66.91372982947979 1832855918 +73.48622725232111 1832859173.6 +86.69265935700912 1832916184.9 +79.78657301662119 1832919460.2 +74.8874333305457 1832922735.4 +71.28501056173793 1832926010.6 +68.58113793972397 1832929285.8 +66.58014091193321 1832932561 +65.2522713457573 1832935836.2 +64.8408008059402 1832939111.5 +66.31026180850287 1832942386.7 +72.51347255466757 1832945661.9 +86.62667698778195 1833002494.4 +79.62940525578031 1833005789.5 +74.67985952493179 1833009084.6 +71.04033448069414 1833012379.7 +68.30163213836119 1833015674.8 +66.2598557637298 1833018969.9 +64.87790308137006 1833022265 +64.37297459482835 1833025560.2 +65.6793182100285 1833028855.3 +71.4889072959411 1833032150.4 +86.56069461855478 1833088801.9 +79.4662878684178 1833092117.1 +74.47001316420695 1833095432.4 +70.79198132823956 1833098747.6 +68.01844926558766 1833102062.8 +65.93362098900474 1833105378.1 +64.4916355639395 1833108693.3 +63.891844614373326 1833112008.5 +65.02912121568927 1833115323.7 +70.41166343733067 1833118639 +86.4947122493276 1833175107.4 +79.30317048105526 1833178443 +74.25281266066058 1833181778.6 +70.53767854926333 1833185114.2 +67.73299383770323 1833188449.8 +65.6037091428689 1833191785.3 +64.09941841998726 1833195120.9 +63.39881538087496 1833198456.5 +64.34777157244181 1833201792.1 +69.2780639074255 1833205127.7 +86.42278025357878 1833261411 +79.13637602228195 1833264767.2 +74.02966253059255 1833268123.3 +70.2833757702871 1833271479.5 +67.43791171188636 1833274835.7 +65.26417059880063 1833278191.8 +63.69757457810258 1833281548 +62.89020982292249 1833284904.1 +63.63754183539709 1833288260.3 +68.0881087062256 1833291616.4 +86.35084825782994 1833347712.8 +78.963631936987 1833351089.7 +73.8042398454136 1833354466.7 +70.01944629337844 1833357843.6 +67.1428295860695 1833361220.5 +64.92235949962145 1833364597.5 +63.292053664807156 1833367974.4 +62.37197756703759 1833371351.3 +62.89983652085492 1833374728.3 +66.83812076232019 1833378105.2 +86.28118881719202 1833434012.7 +78.78493822517035 1833437410.7 +73.57741264393482 1833440808.6 +69.75551681646976 1833444206.5 +66.83812076232019 1833447604.4 +64.57687132903152 1833451002.3 +62.87463349846839 1833454400.2 +61.83816898669859 1833457798.1 +62.13692818392621 1833461196.1 +65.53177714712005 1833464594 +86.2033071949215 1833520311 +78.60624451335373 1833523730 +73.34236326082345 1833527149.1 +69.48563771303942 1833530568.2 +66.5334119385709 1833533987.3 +64.22543353191992 1833537406.4 +62.453536260718856 1833540825.4 +61.294733708427145 1833544244.5 +61.33919012667854 1833547663.6 +64.16540078921442 1833551082.7 +86.12769812776192 1833606607.5 +78.42387373012633 1833610047.9 +73.10958643282298 1833613488.3 +69.21208153819833 1833616928.8 +66.22275348829994 1833620369.2 +63.86664159198679 1833623809.6 +62.02053976992599 1833627250 +60.73572210570161 1833630690.5 +60.516249047044354 1833634130.9 +62.7234153641492 1833637571.3 +86.04613943408064 1833692902.3 +78.24150294689892 1833696364.3 +72.87085997830084 1833699826.2 +68.93625280824634 1833703288.2 +65.9084179666182 1833706750.1 +63.50557709694276 1833710212.1 +61.583866207722345 1833713674 +60.16708380504365 1833717136 +59.65847824709118 1833720597.9 +61.20722538822421 1833724059.9 +85.96458074039937 1833779195.6 +78.04950546573909 1833782679.2 +72.62618389725704 1833786162.9 +68.65674700688356 1833789646.5 +65.59408244493645 1833793130.1 +63.138562975377056 1833796613.7 +61.14124301899706 1833800097.4 +59.582869179931585 1833803581 +58.76955479822981 1833807064.6 +59.61769890025055 1833810548.3 +85.885294601829 1833865487.3 +77.85523542946835 1833868992.8 +72.37783074480248 1833872498.2 +68.37356413411003 1833876003.7 +65.27379729673305 1833879509.2 +62.76787178240059 1833883014.6 +60.68899313233931 1833886520.1 +58.98675530177618 1833890025.6 +57.84352907393857 1833893531 +57.934714465552275 1833897036.5 +85.79778628162607 1833951777.5 +77.66323794830852 1833955305 +72.127205037237 1833958832.4 +68.08443163481483 1833962359.9 +64.94756252200798 1833965887.3 +62.391230962902455 1833969414.8 +60.23306617427082 1833972942.2 +58.377337654277575 1833976469.7 +56.88862325585005 1833979997.1 +56.16649426576197 1833983524.6 +85.71027796142315 1834038066.3 +77.45934121410535 1834041615.9 +71.86922518685 1834045165.4 +67.79302658040872 1834048715 +64.61765067587216 1834052264.6 +62.010913071993556 1834055814.1 +59.768917034569746 1834059363.7 +57.75234368232488 1834062913.3 +55.896615162331635 1834066462.8 +54.29746197642554 1834070012.4 +85.61909256980944 1834124353.7 +77.25544447990218 1834127925.5 +71.61492240787375 1834131497.3 +67.49794445459186 1834135069.1 +64.28773882973633 1834138640.9 +61.630595181084644 1834142212.8 +59.29741375204715 1834145784.6 +57.11772301243974 1834149356.4 +54.87204990360517 1834152928.2 +52.32534504243206 1834156500 +85.52790717819575 1834210639.7 +77.04787067428825 1834214233.9 +71.3509929309651 1834217828.1 +67.19918525736423 1834221422.3 +63.95187735707882 1834225016.5 +61.238378037132414 1834228610.7 +58.81996084300288 1834232204.8 +56.46752601810051 1834235799 +53.814059440859594 1834239393.2 +46.380114146654364 1834242987.4 +85.43304471517128 1834296924.4 +76.83434724215265 1834300541.1 +71.08706345405643 1834304157.8 +66.9004260601366 1834307774.4 +63.61601588442132 1834311391.1 +60.84616089318018 1834315007.8 +58.33655830743694 1834318624.5 +55.805429770717936 1834322241.2 +52.7175621863843 1834325857.9 +34.48370272857726 1834329474.6 +85.3359096970359 1834383207.8 +76.62082381001706 1834386847.1 +70.81718435062609 1834390486.4 +66.59939430779805 1834394125.7 +63.276477340353054 1834397765 +60.45026667781718 1834401404.3 +57.849478700460246 1834405043.6 +55.13002975399216 1834408682.8 +51.587639727889886 1834412322.1 +0.0 1834415961.4 +85.23877467890054 1834469490 +76.39767367994902 1834473152 +70.54730524719577 1834476814 +66.2887358575271 1834480476 +62.93098916976312 1834484138 +60.05437246245419 1834487800 +57.35049984044021 1834491462 +54.44500303933397 1834495124 +50.42516010418742 1834498786 +0.0 1834502448 +85.13201296283273 1834555771.1 +76.17820062129174 1834559455.9 +70.27374907235466 1834563140.7 +65.9840270337778 1834566825.5 +62.58550099917319 1834570510.3 +59.64885154915875 1834574195.1 +56.853793535531075 1834577879.9 +53.74212744511077 1834581564.7 +49.22557820505509 1834585249.5 +0.0 1834588934.3 +85.0312008732866 1834642051 +75.94910086470205 1834645758.7 +69.9942432709919 1834649466.4 +65.66969151209607 1834653174.1 +62.234063202061584 1834656881.8 +59.24700770727408 1834660589.5 +56.345187977578604 1834664297.2 +53.03189770806604 1834668004.9 +47.9911665856038 1834671712.6 +0.0 1834675420.3 +84.9244391572188 1834728329.8 +75.71632403670158 1834732060.5 +69.70878784310746 1834735791.1 +65.35535599041432 1834739521.8 +61.8848979600609 1834743252.5 +58.83553716745698 1834746983.2 +55.83658241962614 1834750713.9 +52.306091646567204 1834754444.6 +46.715975619311855 1834758175.3 +0.0 1834761906 +84.81172781462934 1834814607.5 +75.48127465359022 1834818361.3 +69.42560497033392 1834822115 +65.0387479136217 1834825868.8 +61.52751053642761 1834829622.5 +58.42406662763988 1834833376.3 +55.318350163741236 1834837130 +51.56838633202503 1834840883.8 +45.41330907552248 1834844637.6 +0.0 1834848391.3 +84.6953394006291 1834900884.3 +75.24254819906807 1834904661.2 +69.14014954244949 1834908438.1 +64.7184627654183 1834912215 +61.17239566790526 1834915991.9 +58.006646461301116 1834919768.8 +54.79416828133466 1834923545.7 +50.81510469302876 1834927322.6 +44.07213574000339 1834931099.5 +0.0 1834934876.3 +84.57895098662887 1834987160 +75.00014467313517 1834990960.2 +68.84506741663263 1834994760.3 +64.39817761721488 1834998560.4 +60.811331172861216 1835002360.5 +57.589226294962344 1835006160.6 +54.266309327517334 1835009960.7 +50.054468911210954 1835013760.8 +42.69613268416532 1835017560.9 +0.0 1835021361.1 +84.46029001751774 1835073434.9 +74.7495189655697 1835077258.3 +68.55593491733744 1835081081.7 +64.07421539760072 1835084905.1 +60.45621630433885 1835088728.5 +57.16812905721281 1835092551.9 +53.738450373700005 1835096375.3 +49.27598424982815 1835100198.6 +41.28897697941905 1835104022 +0.0 1835107845.4 +84.34022453210675 1835159708.8 +74.50116581311514 1835163555.6 +68.2571757201098 1835167402.3 +63.74798062287565 1835171249.1 +60.08920218277315 1835175095.8 +56.747031819463274 1835178942.5 +53.19869216683933 1835182789.3 +48.49382251703459 1835186636 +39.84104192783215 1835190482.8 +0.0 1835194329.5 +84.21193686506318 1835245981.9 +74.24686303413891 1835249852.1 +67.95614396777125 1835253722.2 +63.418068776739815 1835257592.4 +59.72813768772911 1835261462.5 +56.31998495519207 1835265332.6 +52.66120651508957 1835269202.8 +47.696084459786924 1835273072.9 +38.36563129874781 1835276943.1 +0.0 1835280813.2 +84.07997212660884 1835332254.2 +73.98293355723023 1835336147.8 +67.65143514402197 1835340041.4 +63.08815693060399 1835343935 +59.357446494752644 1835347828.6 +55.89293809092087 1835351722.2 +52.11182161029646 1835355615.8 +46.88871970460682 1835359509.4 +36.85171387793373 1835363403 +0.4485728152469742 1835367296.6 +83.9480073881545 1835418525.7 +73.71900408032158 1835422442.8 +67.34672632027267 1835426359.9 +62.75824508446816 1835430277 +58.99270492829785 1835434194.1 +55.46589122664967 1835438111.2 +51.56243670550336 1835442028.4 +46.06577862497262 1835445945.5 +35.30664380821146 1835449862.6 +0.46782621111183603 1835453779.7 +83.80641595176773 1835504796.5 +73.45507460341291 1835508737.1 +67.04201749652336 1835512677.8 +62.42238361181066 1835516618.5 +58.622013735321374 1835520559.1 +55.0328947358568 1835524499.8 +51.009374729299495 1835528440.4 +45.23688791881675 1835532381.1 +33.726744018170244 1835536321.8 +0.0 1835540262.4 +83.66255196027006 1835591066.5 +73.1792458734609 1835595030.8 +66.72768197484164 1835598995.1 +62.08652213915315 1835602959.3 +58.25132254234491 1835606923.6 +54.60217080017484 1835610887.8 +50.456312753095624 1835614852.1 +44.398370514728455 1835618816.3 +32.109741952699125 1835622780.6 +0.0 1835626744.8 +83.51728345247254 1835677335.9 +72.90568969861981 1835681323.8 +66.41107389804901 1835685311.7 +61.75066066649564 1835689299.6 +57.88063134936845 1835693287.5 +54.1654972379712 1835697275.4 +49.8973011503701 1835701263.3 +43.54427678618605 1835705251.2 +30.460182722019965 1835709239.1 +0.0 1835713226.9 +83.3697423895641 1835763604.7 +72.62023427073537 1835767616.2 +66.09673837636727 1835771627.8 +61.41112212242738 1835775639.4 +57.50766760128107 1835779650.9 +53.72882367576757 1835783662.5 +49.332339921122895 1835787674.1 +42.68650598623289 1835791685.6 +28.77719828732169 1835795697.2 +0.0 1835799708.7 +83.21030207361233 1835849872.8 +72.33705139796184 1835853908.1 +65.77645322816386 1835857943.4 +61.07158357835912 1835861978.6 +57.13329933689384 1835866013.9 +53.28987755845303 1835870049.2 +48.76370162046493 1835874084.4 +41.81683593323639 1835878119.7 +27.049757434372026 1835882155 +0.0 1835886190.2 +83.0494572413607 1835936140.4 +72.04791889866664 1835940199.4 +65.45616807996046 1835944258.4 +60.72609540776918 1835948317.4 +56.75665851739571 1835952376.4 +52.8532039962494 1835956435.4 +48.195063319806955 1835960494.4 +40.93753918230745 1835964553.4 +25.297113559035818 1835968612.4 +0.0 1835972671.4 +82.8803902274765 1836022407.5 +71.75283677284976 1836026490.2 +65.12993330523538 1836030573 +60.38428430859002 1836034655.8 +56.380017697897564 1836038738.5 +52.412853362635005 1836042821.3 +47.62047539262732 1836046904.1 +40.04861573344608 1836050986.8 +23.497740710337315 1836055069.6 +0.0 1836059152.4 +82.70764614218153 1836108674 +71.45180502051123 1836112780.6 +64.80002145909957 1836116887.1 +60.03879613800008 1836120993.7 +56.003376878399436 1836125100.2 +51.9702301739097 1836129206.8 +47.04588746544769 1836133313.3 +39.153742658063045 1836137419.9 +21.667215212730603 1836141526.4 +0.0 1836145633 +82.5312249854758 1836194940.1 +71.14709619676194 1836199070.5 +64.47010961296372 1836203200.9 +59.69330796741014 1836207331.2 +55.62900861401221 1836211461.6 +51.52760698518439 1836215591.9 +46.46534991174639 1836219722.3 +38.249242884747574 1836223852.6 +19.798182923394172 1836227983 +0.0 1836232113.4 +82.3465816471375 1836281205.8 +70.83871030160186 1836285360 +64.14019776682788 1836289514.2 +59.344142725409455 1836293668.3 +55.25236779451407 1836297822.5 +51.08498379645909 1836301976.7 +45.88708491315598 1836306130.9 +37.33511641349967 1836310285.1 +17.892048358627864 1836314439.3 +0.0 1836318593.5 +82.15458416597767 1836367471.1 +70.52210222480925 1836371649.1 +63.80433629417038 1836375827.1 +58.99638199970861 1836380005.1 +54.87204990360517 1836384183.2 +50.64236060773379 1836388361.2 +45.30881991456559 1836392539.2 +36.42098994225177 1836396717.3 +15.951084073542596 1836400895.3 +0.0 1836405073.3 +81.95663705829617 1836453735.9 +70.20181707660583 1836457937.8 +63.46479775010212 1836462139.7 +58.64721675770791 1836466341.6 +54.49540908410704 1836470543.5 +50.19606034759772 1836474745.4 +44.72233273434262 1836478947.3 +35.49496421796053 1836483149.1 +13.978967139549125 1836487351 +0.0 1836491552.9 +81.74679069757133 1836540000.5 +69.87785485699166 1836544226.3 +63.12893627744462 1836548452 +58.2957789605963 1836552677.8 +54.11509119319814 1836556903.5 +49.75343715887242 1836561129.3 +44.138118109230554 1836565355 +34.56526142225854 1836569580.8 +11.977970111758363 1836573806.5 +0.0 1836578032.3 +81.53326726543574 1836626264.8 +69.54794301085583 1836630514.4 +62.78344810685469 1836634764 +57.946613718595614 1836639013.7 +53.738450373700005 1836643263.3 +49.30713689873636 1836647512.9 +43.55022641270772 1836651762.6 +33.62960900003487 1836656012.2 +9.945820435059394 1836660261.8 +0.0 1836664511.5 +81.31011713536769 1836712528.7 +69.2157586096091 1836716802.3 +62.43795993626476 1836721075.8 +57.595175921484014 1836725349.3 +53.35585992768019 1836729622.8 +48.86451371001106 1836733896.3 +42.966011787595654 1836738169.9 +32.69027950640044 1836742443.4 +7.8921448073846525 1836746716.9 +0.0 1836750990.4 +81.07734030736724 1836798792.5 +68.87622006554082 1836803089.9 +62.09247176567482 1836807387.3 +57.24373812437241 1836811684.7 +52.9755420367713 1836815982.1 +48.421890521285746 1836820279.5 +42.37584753596192 1836824576.9 +31.745000386244328 1836828874.4 +5.82289285525581 1836833171.8 +0.0 1836837469.2 +80.83861385284509 1836885056 +68.5307318949509 1836889377.3 +61.74103396856321 1836893698.6 +56.88862325585004 1836898019.9 +52.59890121727316 1836902341.2 +47.9755902611497 1836906662.5 +41.78568328432819 1836910983.8 +30.799721266088227 1836915305.1 +3.749963831716207 1836919626.4 +0.0 1836923947.8 +80.58431107386886 1836971319.3 +68.17561702642853 1836975664.5 +61.391868726562514 1836980009.7 +56.537185458738435 1836984354.9 +52.21858332636427 1836988700.1 +47.532967072424384 1836993045.3 +41.191841961283686 1836997390.5 +29.848492519410456 1837001735.7 +1.6770348081766044 1837006081 +0.0 1837010426.2 +80.32038159696019 1837057582.5 +67.81822960279526 1837061951.6 +61.04043092945091 1837066320.7 +56.18207059021607 1837070689.8 +51.84194250686613 1837075058.9 +47.090343883699084 1837079428 +40.60167770964995 1837083797.1 +28.899536327843588 1837088166.2 +0.0 1837092535.3 +0.0 1837096904.4 +80.04087579559743 1837143845.6 +67.45943766286213 1837148238.6 +60.68531606092855 1837152631.6 +55.82695572169371 1837157024.6 +51.46162461595723 1837161417.5 +46.64999325008469 1837165810.5 +40.01378601312712 1837170203.5 +27.944630509755054 1837174596.5 +0.0 1837178989.5 +0.0 1837183382.5 +79.75174329630222 1837230108.6 +67.09242354129643 1837234525.5 +60.32792863729529 1837238942.3 +55.47184085317134 1837243359.2 +51.08498379645909 1837247776.1 +46.20737006135939 1837252193 +39.42362176149338 1837256609.8 +26.98745213655562 1837261026.7 +0.0 1837265443.6 +0.0 1837269860.5 +79.44476191744202 1837316371.5 +66.7157827217983 1837320812.3 +59.96913669736216 1837325253 +55.11445342953807 1837329693.8 +50.70834297696096 1837334134.5 +45.764746872634085 1837338575.3 +38.83345750985964 1837343016 +26.028869247056317 1837347456.8 +0.0 1837351897.5 +0.0 1837356338.3 +79.12674932434953 1837402634.4 +66.3354648308894 1837407099 +59.60807220231812 1837411563.6 +54.7593385610157 1837416028.3 +50.33397471257372 1837420492.9 +45.32212368390878 1837424957.5 +38.243293258225904 1837429422.1 +25.071690873856877 1837433886.8 +0.0 1837438351.4 +0.0 1837442816 +78.78493822517035 1837488897.3 +65.94919731345884 1837493385.8 +59.24105808075241 1837497874.3 +54.407900763904095 1837502362.7 +49.9573338930756 1837506851.2 +44.8817730502944 1837511339.7 +37.65540156170307 1837515828.2 +24.116785055768343 1837520316.7 +0.0 1837524805.2 +0.0 1837529293.6 +78.43350042805876 1837575160.2 +65.55698016950659 1837579672.5 +58.87631651429762 1837584184.9 +54.05278589538173 1837588697.2 +49.58069307357746 1837593209.5 +44.442826932979855 1837597721.9 +37.065237310069335 1837602234.2 +23.161879237679813 1837606746.5 +0.0 1837611258.9 +0.0 1837615771.2 +78.05913216367152 1837661423.2 +65.15740888273282 1837665959.4 +58.509302392731904 1837670495.5 +53.69767102685937 1837675031.7 +49.20632480919023 1837679567.8 +44.00615337077622 1837684104 +36.4750730584356 1837688640.2 +22.212923046112945 1837693176.3 +0.0 1837697712.5 +0.0 1837702248.7 +77.65728832178685 1837747686.3 +64.75556504084817 1837752246.3 +58.138611199755445 1837756806.2 +53.342556158337 1837761366.2 +48.83336106110286 1837765926.2 +43.56947980857258 1837770486.2 +35.89085843332353 1837775046.1 +21.261694299435174 1837779606.1 +0.0 1837784166.1 +0.0 1837788726.1 +77.2398681554481 1837833949.5 +64.34409450103105 1837838533.3 +57.77386963330065 1837843117 +52.985168734703734 1837847700.8 +48.46266986812638 1837852284.6 +43.13875587289062 1837856868.3 +35.30664380821146 1837861452.1 +20.310465552757403 1837866035.9 +0.0 1837870619.6 +0.0 1837875203.4 +76.79356789531202 1837920212.8 +63.926674334692294 1837924820.4 +57.40090588521328 1837929427.9 +52.63600349270303 1837934035.5 +48.091978675149925 1837938643 +42.70575938209775 1837943250.5 +34.72242918309939 1837947858.1 +19.37113605912297 1837952465.6 +0.0 1837957073.2 +0.0 1837961680.7 +76.31979205767851 1838006476.4 +63.49962747042109 1838011107.7 +57.02653762082605 1838015739 +52.27861606906976 1838020370.2 +47.72128748217345 1838025001.5 +42.275035446415785 1838029632.8 +34.14416418450901 1838034264.1 +18.425856938966866 1838038895.4 +0.0 1838043526.7 +0.0 1838048158 +75.81345905483694 1838092740.1 +63.068903534739135 1838097395.1 +56.649896801327905 1838102050.2 +51.92350120054739 1838106705.2 +47.35654591571866 1838111360.2 +41.84203895562292 1838116015.2 +33.5636266308077 1838120670.2 +17.496154143264864 1838125325.2 +0.0 1838129980.2 +0.0 1838134635.2 +75.27965047449794 1838179004.1 +62.629957417424585 1838183682.8 +56.27325598182977 1838188361.5 +51.5743359585467 1838193040.2 +46.98953179415296 1838197718.9 +41.414992091351714 1838202397.6 +32.9853616322173 1838207076.3 +16.566451347562868 1838211755 +0.0 1838216433.8 +0.0 1838221112.5 +74.70506254731832 1838265268.4 +62.18960678381019 1838269970.8 +55.896615162331635 1838274673.1 +51.2228981614351 1838279375.5 +46.624790227698156 1838284077.9 +40.993894853602185 1838288780.2 +32.41077370503766 1838293482.6 +15.640425623271627 1838298185 +0.0 1838302887.3 +0.0 1838307589.7 +74.09932197123048 1838351533 +61.737356897152445 1838356259 +55.51629727142273 1838360985 +50.87146036432349 1838365711 +46.26372573265412 1838370437 +40.56684798933098 1838375162.9 +31.842135404379697 1838379888.9 +14.722622080612968 1838384614.9 +0.0 1838389340.9 +0.0 1838394066.9 +73.44912497689126 1838437797.9 +61.273207757451374 1838442547.5 +55.13597938051383 1838447297.1 +50.52229512232279 1838452046.7 +45.90266123761008 1838456796.2 +40.1494278229922 1838461545.8 +31.271224548610824 1838466295.4 +13.812172680775827 1838471045 +0.0 1838475794.6 +0.0 1838480544.2 +72.75814863571138 1838524063.2 +60.811331172861216 1838528836.3 +54.75338893449403 1838533609.5 +50.17085732521119 1838538382.6 +45.54159674256605 1838543155.7 +39.72833058524268 1838547928.9 +30.70258624795286 1838552702 +12.907672907460363 1838557475.2 +0.0 1838562248.3 +0.0 1838567021.4 +72.0227158762801 1838610328.9 +60.333878263816956 1838615125.5 +54.373071043585135 1838619922.2 +49.81941952809959 1838624718.8 +45.18053224752202 1838629515.5 +39.31091041890391 1838634312.1 +30.139897573816558 1838639108.8 +12.009122760666566 1838643905.4 +0.0 1838648702.1 +0.0 1838653498.7 +71.24423121489731 1838696595 +59.85642535477268 1838701415.1 +53.99275315267623 1838706235.2 +49.473931357509656 1838711055.3 +44.82909445041042 1838715875.5 +38.899439879086806 1838720695.6 +29.58088597109103 1838725515.7 +11.123876383215956 1838730335.8 +0.0 1838735156 +0.0 1838739976.1 +70.41534050874144 1838782861.6 +59.36934574779598 1838787705.1 +53.60648563524566 1838792548.7 +49.128443186919725 1838797392.2 +44.47397958188805 1838802235.7 +38.4879693392697 1838807079.3 +29.025551439776255 1838811922.8 +10.244579632287024 1838816766.4 +0.0 1838821609.9 +0.0 1838826453.4 +69.54794301085583 1838869128.6 +58.87036688777595 1838873995.6 +53.220218117815094 1838878862.5 +48.782955016329794 1838883729.4 +44.124814339887365 1838888596.3 +38.08244842597428 1838893463.2 +28.472489463572387 1838898330.1 +9.371232507879757 1838903197 +0.0 1838908063.9 +0.0 1838912930.9 +68.6374936110187 1838955396.3 +58.371388027755906 1838960286.5 +52.83395060038453 1838965176.7 +48.43746684573985 1838970066.9 +43.77337654277576 1838974957.2 +37.67465495756794 1838979847.4 +27.923104558779283 1838984737.6 +8.511189152815682 1838989627.9 +0.0 1838994518.1 +0.0 1838999408.3 +67.68626486434093 1839041664.4 +57.85910539839268 1839046577.9 +52.447683082953965 1839051491.4 +48.09792830167159 1839056404.9 +43.42788837218582 1839061318.4 +37.27281111568326 1839066231.9 +27.37966928050786 1839071145.4 +7.66304505079495 1839076058.9 +0.0 1839080972.3 +0.0 1839085885.8 +66.7002063973442 1839127933.2 +57.340873142507775 1839132869.9 +52.0614155655234 1839137806.6 +47.75611720249241 1839142743.3 +43.08240020159589 1839147680 +36.873239828909504 1839152616.6 +26.836234002236424 1839157553.3 +6.820850575295886 1839162490 +0.0 1839167426.7 +0.0 1839172363.4 +65.68894490796093 1839214202.6 +56.81669126010121 1839219162.4 +51.67514804809283 1839224122.3 +47.41657865842416 1839229082.1 +42.74058910241671 1839234041.9 +36.481022684957274 1839239001.7 +26.30242542189742 1839243961.5 +5.986010242618345 1839248921.4 +0.0 1839253881.2 +0.0 1839258841 +64.65843002271279 1839300472.7 +56.28883230628387 1839305455.6 +51.28888053066226 1839310438.5 +47.08071718576665 1839315421.4 +42.401050558348444 1839320404.2 +36.08512846959427 1839325387.1 +25.768616841558412 1839330370 +5.169018789505815 1839335352.9 +0.0 1839340335.8 +0.0 1839345318.7 +63.60043955996722 1839386743.5 +55.745397028012434 1839391749.4 +50.90261301323169 1839396755.2 +46.74485571310915 1839401761.1 +42.06518908569094 1839406767 +35.69886095216371 1839411772.9 +25.240757887741083 1839416778.8 +4.3593814792148065 1839421784.6 +0.0 1839426790.5 +0.0 1839431796.4 +62.53509495440012 1839473015 +55.201961749741 1839478043.8 +50.51039586927945 1839483072.6 +46.411266795562554 1839488101.4 +41.72932761303345 1839493130.2 +35.31259343473313 1839498159 +24.72252563185618 1839503187.8 +3.5616434219671387 1839508216.6 +0.0 1839513245.4 +0.0 1839518274.2 +61.451901469268016 1839559287.3 +54.64662721842623 1839564338.9 +50.12412835184888 1839569390.5 +46.07908239431582 1839574442.2 +41.39941576689761 1839579493.8 +34.92632591730258 1839584545.4 +24.20429337597128 1839589597.1 +2.7758046177628124 1839594648.7 +0.0 1839599700.3 +0.0 1839604752 +60.34945458827106 1839645560.4 +54.083938544289936 1839650634.8 +49.73786083441832 1839655709.1 +45.74917054817999 1839660783.5 +41.07545354728345 1839665857.9 +34.549685097804435 1839670932.3 +23.689738191497142 1839676006.7 +1.997319956380006 1839681081.1 +0.0 1839686155.4 +0.0 1839691229.8 +59.231431382819984 1839731834.3 +53.51530024363196 1839736931.4 +49.35159331698775 1839742028.4 +45.41925870204415 1839747125.5 +40.74921877255838 1839752222.5 +34.1730442783063 1839757319.5 +23.183405188655584 1839762416.6 +1.234411619451301 1839767513.6 +0.0 1839772610.7 +0.0 1839777707.7 +58.09783185291481 1839818109.1 +52.940712316452334 1839823228.8 +48.96164872814643 1839828348.4 +45.09529648242999 1839833468 +40.42525655294421 1839838587.6 +33.80235308532984 1839843707.2 +22.678476702113873 1839848826.8 +0.4870796069766978 1839853946.4 +0.0 1839859066 +0.0 1839864185.6 +56.94497892714478 1839904384.9 +52.356497691340266 1839909527 +48.575381210715854 1839914669.1 +44.77501133422659 1839919811.1 +40.10497140474081 1839924953.2 +33.43761151887503 1839930095.3 +22.181770397204744 1839935237.4 +0.0 1839940379.4 +0.0 1839945521.5 +0.0 1839950663.6 +55.776549676920645 1839990661.6 +51.76633343970653 1839995826 +48.189113693285286 1840000990.5 +44.454726186023194 1840006154.9 +39.788363327948176 1840011319.4 +33.070597397309335 1840016483.8 +21.694690790228044 1840021648.2 +0.0 1840026812.7 +0.0 1840031977.1 +0.0 1840037141.6 +54.58659447572074 1840076939.3 +51.17249211666203 1840082126 +47.80879580237639 1840087312.7 +44.13444103781979 1840092499.4 +39.47997743278811 1840097686.1 +32.709532902265295 1840102872.8 +21.205338628140442 1840108059.4 +0.0 1840113246.1 +0.0 1840118432.8 +0.0 1840123619.5 +53.377385878655964 1840163218.1 +50.57270116709586 1840168426.9 +47.42252828494583 1840173635.7 +43.81783296102716 1840178844.5 +39.16931898251715 1840184053.4 +32.354418033742924 1840189262.2 +20.727885719096175 1840194471 +0.0 1840199679.8 +0.0 1840204888.6 +0.0 1840210097.5 +52.152600957137096 1840249497.9 +49.96328351959726 1840254728.7 +47.03993783892602 1840259959.6 +43.509447065867086 1840265190.4 +38.864610158767846 1840270421.2 +32.00892986315299 1840275652.1 +20.256382436573578 1840280882.9 +0.0 1840286113.7 +0.0 1840291344.6 +0.0 1840296575.4 +50.90261301323169 1840335778.8 +49.35159331698775 1840341031.6 +46.659619948017124 1840346284.3 +43.19878861559612 1840351537 +38.5635784064293 1840356789.7 +31.657492066041392 1840362042.4 +19.78855622546174 1840367295.1 +0.0 1840372547.9 +0.0 1840377800.6 +0.0 1840383053.3 +49.63109911835052 1840422061 +48.73254897155672 1840427335.4 +46.279302057108225 1840432609.9 +42.88813016532515 1840437884.3 +38.264819209201676 1840443158.8 +31.317953521973127 1840448433.3 +19.326679640871575 1840453707.7 +0.0 1840458982.2 +0.0 1840464256.7 +0.0 1840469531.1 +48.34033182760448 1840508344.3 +48.10755499960402 1840513640.3 +45.90266123761008 1840518936.4 +42.58937096809752 1840524232.5 +37.96973708338481 1840529528.5 +30.978414977904862 1840534824.6 +18.86848012769217 1840540120.7 +0.0 1840545416.7 +0.0 1840550712.8 +0.0 1840556008.9 +45.18648187404369 1840594628.8 +47.47661140112965 1840599946.3 +45.52602041811195 1840605263.9 +42.288339215758974 1840610581.4 +37.68060458408961 1840615898.9 +30.646230576658123 1840621216.4 +18.419907312445197 1840626534 +0.0 1840631851.5 +0.0 1840637169 +0.0 1840642486.5 +45.689137805474495 1840680914.7 +46.84794035776619 1840686253.5 +45.14937959861381 1840691592.3 +41.98958001853135 1840696931.1 +37.3914720847944 1840702270 +30.31631873052229 1840707608.8 +17.9795566788308 1840712947.6 +0.0 1840718286.4 +0.0 1840723625.3 +0.0 1840728964.1 +42.467032927575616 1840767201.9 +46.20737006135939 1840772561.8 +44.77501133422659 1840777921.8 +41.69449789271448 1840783281.7 +37.111966283431634 1840788641.7 +29.99603358231889 1840794001.7 +17.54288311662717 1840799361.6 +0.0 1840804721.6 +0.0 1840810081.6 +0.0 1840815441.5 +42.94448583661988 1840853490.4 +45.566799764952584 1840858871.3 +44.40799721266089 1840864252.3 +41.40536539341928 1840869633.2 +36.832460482068875 1840875014.1 +29.675748434115487 1840880395.1 +17.11583625235597 1840885776 +0.0 1840891156.9 +0.0 1840896537.8 +0.0 1840901918.8 +36.65376677025224 1840939780.4 +44.92622946854579 1840945182.1 +44.03730601968442 1840950583.8 +41.119909965534845 1840955985.5 +36.556631752116864 1840961387.3 +29.361412912433757 1840966789 +16.692466459495538 1840972190.7 +0.0 1840977592.4 +0.0 1840982994.1 +0.0 1840988395.9 +34.91669921937014 1841026071.8 +44.27603247420656 1841031494.2 +43.672564453229626 1841036916.5 +40.836727092761315 1841042338.8 +36.28675264868653 1841047761.1 +29.056704088684455 1841053183.4 +16.280995919678436 1841058605.8 +0.0 1841064028.1 +0.0 1841069450.4 +0.0 1841074872.7 +29.92637414168096 1841112364.8 +43.63178510638899 1841117807.5 +43.311499958185586 1841123250.2 +40.55722129139855 1841128693 +36.0191461003671 1841134135.7 +28.751995264935154 1841139578.4 +15.86952537986133 1841145021.1 +0.0 1841150463.9 +0.0 1841155906.6 +0.0 1841161349.3 +32.63987346162737 1841198659.3 +42.97931555693885 1841204122.2 +42.95043546314155 1841209585.2 +40.281392561446545 1841215048.1 +35.75889369486921 1841220511 +28.450963512596616 1841225974 +15.473631164498329 1841231436.9 +0.0 1841236899.8 +0.0 1841242362.7 +0.0 1841247825.7 +23.16782886420148 1841284955.4 +42.32911856259961 1841290438.4 +42.59304803950828 1841295921.3 +40.00783638660545 1841301404.2 +35.5009138444822 1841306887.1 +28.158153941890657 1841312370 +15.077736949135332 1841317852.9 +0.0 1841323335.9 +0.0 1841328818.8 +0.0 1841334301.7 +18.513365259169802 1841371253.2 +41.67892156826038 1841376755.9 +42.24388279750758 1841382258.6 +39.743906909696776 1841387761.3 +35.24661106550597 1841393264 +27.872698514006217 1841398766.6 +14.695146503115524 1841404269.3 +0.0 1841409772 +0.0 1841415274.7 +0.0 1841420777.4 +0.0 1841457552.7 +41.028724573921146 1841463074.9 +41.89244500039598 1841468597.2 +39.47997743278811 1841474119.4 +34.998257913051404 1841479641.6 +27.587243086121784 1841485163.8 +14.31482861220663 1841490686 +0.0 1841496208.3 +0.0 1841501730.5 +0.0 1841507252.7 +1.4383083536544714 1841543853.9 +40.384477206103575 1841549395.5 +41.54695682980604 1841554937 +39.21972502729021 1841560478.5 +34.7535818320076 1841566020 +27.31368691128069 1841571561.5 +13.944137419230161 1841577103.1 +0.0 1841582644.6 +0.0 1841588186.1 +0.0 1841593727.6 +0.0 1841630157 +39.73428021176435 1841635717.5 +41.20741828573778 1841641278.1 +38.96542224831397 1841646838.7 +34.51485537748547 1841652399.2 +27.040130736439593 1841657959.8 +13.58307292418613 1841663520.4 +0.0 1841669080.9 +0.0 1841674641.5 +0.0 1841680202.1 +0.0 1841716461.9 +39.08776028883588 1841722041.2 +40.871556813080275 1841727620.6 +38.717069095859415 1841733199.9 +34.2798059943741 1841738779.3 +26.776201259530918 1841744358.6 +13.22795805566376 1841749938 +0.0 1841755517.3 +0.0 1841761096.7 +0.0 1841766676 +0.0 1841802768.6 +38.44718999242907 1841808366.5 +40.53569534042277 1841813964.4 +38.46871594340484 1841819562.2 +34.05297879289531 1841825160.1 +26.51594885403302 1841830758 +12.87652025855216 1841836355.8 +0.0 1841841953.7 +0.0 1841847551.6 +0.0 1841853149.4 +0.0 1841889077.4 +37.812569322543936 1841894693.5 +40.21173312080861 1841900309.6 +38.22998948888271 1841905925.7 +33.82755610771637 1841911541.8 +26.261646075056788 1841917157.9 +12.540658785894658 1841922774 +0.0 1841928390.1 +0.0 1841934006.1 +0.0 1841939622.2 +0.0 1841975388.1 +37.177948652658806 1841981022.1 +39.885498346083544 1841986656.2 +37.994940105771335 1841992290.2 +33.61035560417 1841997924.3 +26.013292922602215 1842003558.3 +12.207069868348066 1842009192.3 +0.0 1842014826.4 +0.0 1842020460.4 +0.0 1842026094.4 +0.0 1842061700.9 +36.54700505418443 1842067352.6 +39.57116282440181 1842073004.2 +37.76216327777087 1842078655.9 +33.3968321720344 1842084307.6 +25.768616841558412 1842089959.3 +11.886784720144664 1842095610.9 +0.0 1842101262.6 +0.0 1842106914.3 +0.0 1842112566 +0.0 1842148015.8 +35.9279607087534 1842153684.8 +39.25455474760918 1842159353.8 +37.539013147702846 1842165022.8 +33.18698581130956 1842170691.8 +25.535840013557948 1842176360.8 +11.570176643352022 1842182029.8 +0.0 1842187698.8 +0.0 1842193367.8 +0.0 1842199036.8 +0.0 1842234332.8 +35.31259343473313 1842240018.8 +38.94984592385987 1842245704.8 +37.3135904625239 1842251390.8 +32.97941200569563 1842257076.8 +25.306740256968247 1842262762.8 +11.261790748191963 1842268448.8 +0.0 1842274134.8 +0.0 1842279820.8 +0.0 1842285506.8 +0.0 1842320652 +34.703175787234535 1842326354.7 +38.65108672663224 1842332057.3 +37.100067030388296 1842337760 +32.78146489801413 1842343462.7 +25.077640500378546 1842349165.4 +10.960758995853421 1842354868 +0.0 1842360570.7 +0.0 1842366273.4 +0.0 1842371976 +0.0 1842406973.5 +34.10338483766837 1842412692.5 +38.356004600815375 1842418411.5 +36.89249322477437 1842424130.4 +32.5894674168543 1842429849.4 +24.860439996832184 1842435568.4 +10.671626496558224 1842441287.4 +0.0 1842447006.4 +0.0 1842452725.4 +0.0 1842458444.4 +0.0 1842493297.3 +33.513220586034635 1842499032.2 +38.066872101520175 1842504767.1 +36.68491941916044 1842510502.1 +32.40114700710523 1842516237 +24.650593636107345 1842521972 +10.392120695195455 1842527706.9 +0.0 1842533441.9 +0.0 1842539176.8 +0.0 1842544911.8 +0.0 1842579623.4 +32.92900596092257 1842585373.9 +37.7873663001574 1842591124.4 +36.48697231147894 1842596875 +32.222453295288595 1842602625.5 +24.443019830493412 1842608376 +10.118564520354361 1842614126.6 +0.0 1842619877.1 +0.0 1842625627.6 +0.0 1842631378.2 +0.0 1842665951.9 +32.36036766026459 1842671717.6 +37.50786049879464 1842677483.4 +36.2927022752082 1842683249.1 +32.04375958347196 1842689014.8 +24.245072722811912 1842694780.6 +9.852362488334784 1842700546.3 +0.0 1842706312.1 +0.0 1842712077.8 +0.0 1842717843.5 +0.0 1842752282.9 +31.801356057539063 1842758063.4 +37.24393102188597 1842763844 +36.10438186545913 1842769624.5 +31.871015498176995 1842775405.1 +24.05080268654118 1842781185.6 +9.600332264469461 1842786966.2 +0.0 1842792746.7 +0.0 1842798527.3 +0.0 1842804307.8 +0.0 1842838616.3 +31.251971152745963 1842844411.3 +36.980001544977306 1842850206.2 +35.922011082231734 1842856001.2 +31.704221039403695 1842861796.1 +23.868431903313777 1842867591.1 +9.349706556903984 1842873386.1 +0.0 1842879181 +0.0 1842884976 +0.0 1842890770.9 +0.0 1842924952.3 +30.718162572406957 1842930761.2 +36.725698766001074 1842936570.2 +35.74926699693678 1842942379.1 +31.547053278562828 1842948188.1 +23.68606112008638 1842953997 +9.110980102381852 1842959806 +0.0 1842965614.9 +0.0 1842971423.9 +0.0 1842977232.8 +0.0 1843011290.9 +30.199930316522057 1843017113.4 +36.481022684957274 1843022935.9 +35.57652291164181 1843028758.4 +31.393562589132728 1843034580.9 +23.513317034791413 1843040403.4 +8.881880345792151 1843046225.9 +0.0 1843052048.5 +0.0 1843057871 +0.0 1843063693.5 +0.0 1843097632.1 +29.69132475856959 1843103467.7 +36.24229623043514 1843109303.3 +35.413405524279256 1843115139 +31.246021526224293 1843120974.6 +23.35019964742888 1843126810.2 +8.658730215724116 1843132645.9 +0.0 1843138481.5 +0.0 1843144317.2 +0.0 1843150152.8 +0.0 1843183975.9 +29.19829552507122 1843189824.3 +36.01319647384543 1843195672.6 +35.2562377634384 1843201520.9 +31.104430089837525 1843207369.2 +23.187082260066344 1843213217.5 +8.451156410110187 1843219065.8 +0.0 1843224914.1 +0.0 1843230762.4 +0.0 1843236610.7 +0.0 1843270322.5 +28.72084261602695 1843276183.1 +35.79004634377741 1843282043.6 +35.10274707400829 1843287904.1 +30.966515724861523 1843293764.6 +23.035864125747146 1843299625.1 +8.247259675907015 1843305485.6 +0.0 1843311346.1 +0.0 1843317206.7 +0.0 1843323067.2 +0.0 1843356671.9 +28.25896603143679 1843362544.1 +35.57652291164181 1843368416.4 +34.95747856621077 1843374288.6 +30.834550986407194 1843380160.9 +22.88832306283871 1843386033.1 +8.05526219474719 1843391905.4 +0.0 1843397777.6 +0.0 1843403649.9 +0.0 1843409522.1 +0.0 1843443024 +27.81634284271148 1843448907.5 +35.372626177438626 1843454791 +34.81956420123477 1843460674.5 +30.708535874474528 1843466558 +22.75040869786271 1843472441.5 +7.87061885640888 1843478325 +0.0 1843484208.5 +0.0 1843490092 +0.0 1843495975.5 +0.0 1843529379 +27.38929597844029 1843535273.2 +35.174679069757126 1843541167.5 +34.68759946278043 1843547061.8 +30.592147460474298 1843552956 +22.618443959408374 1843558850.3 +7.694197699703152 1843564744.5 +0.0 1843570638.8 +0.0 1843576533 +0.0 1843582427.3 +0.0 1843615736.8 +26.97782543862319 1843621641.3 +34.992308286529735 1843627545.8 +34.55931179573687 1843633450.3 +30.479436117884827 1843639354.8 +22.49242884747571 1843645259.4 +7.531080312340617 1843651163.9 +0.0 1843657068.4 +0.0 1843662972.9 +0.0 1843668877.4 +0.0 1843702097.5 +26.59155792119262 1843708011.8 +34.8136145747131 1843713926 +34.442923381736634 1843719840.3 +30.372674401817026 1843725754.5 +22.373767878364575 1843731668.8 +7.3739125514997514 1843737583 +0.0 1843743497.2 +0.0 1843749411.5 +0.0 1843755325.7 +0.0 1843788461.2 +26.220866728216148 1843794384.7 +34.64087048941813 1843800308.1 +34.33248459425808 1843806231.6 +30.271862312270898 1843812155 +22.26332909088601 1843818078.5 +7.226371488591317 1843824001.9 +0.0 1843829925.4 +0.0 1843835848.8 +0.0 1843841772.3 +0.0 1843874827.8 +25.871701486215454 1843880759.9 +34.48370272857726 1843886692.1 +34.225722878190275 1843892624.2 +30.180676920657195 1843898556.3 +22.156567374818213 1843904488.5 +7.0884571236153135 1843910420.6 +0.0 1843916352.7 +0.0 1843922284.9 +0.0 1843928217 +0.0 1843961197.4 +25.53951708496871 1843967137.7 +34.33616166566883 1843973077.9 +34.12858786005491 1843979018.2 +30.093168600454256 1843984958.5 +22.059432356682844 1843990898.7 +6.962442011682651 1843996839 +0.0 1844002779.2 +0.0 1844008719.5 +0.0 1844014659.8 +0.0 1844047570 +25.23113118980865 1844053517.9 +34.198247300692834 1844059465.7 +34.03145284191954 1844065413.5 +30.01160990677299 1844071361.4 +21.971924036479905 1844077309.2 +6.840103971160748 1844083257.1 +0.0 1844089204.9 +0.0 1844095152.8 +0.0 1844101100.6 +0.0 1844133945.6 +24.939726135402545 1844139900.5 +34.066282562238506 1844145855.4 +33.949894148238265 1844151810.2 +29.936000839613392 1844157765.1 +21.886688271387875 1844163720 +6.733342255092948 1844169674.8 +0.0 1844175629.7 +0.0 1844181584.6 +0.0 1844187539.4 +0.0 1844220324.3 +24.67579665849388 1844226285.6 +33.949894148238265 1844232247 +33.868335454557005 1844238208.3 +29.870018470386228 1844244169.6 +21.811079204228275 1844250130.9 +6.632530165546818 1844256092.2 +0.0 1844262053.6 +0.0 1844268014.9 +0.0 1844273976.2 +0.0 1844306706 +24.433393132560983 1844312673.2 +33.84313243217047 1844318640.4 +33.79867601391908 1844324607.6 +29.80403610115906 1844330574.8 +21.74509683500111 1844336542 +6.541344773933119 1844342509.2 +0.0 1844348476.4 +0.0 1844354443.6 +0.0 1844360410.8 +0.0 1844393090.8 +24.207970447382042 1844399063.3 +33.74232034262434 1844405035.8 +33.73637071610267 1844411008.3 +29.747680429864324 1844416980.8 +21.682791537184706 1844422953.3 +6.463463151662613 1844428925.8 +0.0 1844434898.3 +0.0 1844440870.8 +0.0 1844446843.4 +0.0 1844479478.7 +24.015972966222215 1844485455.9 +33.6548120224214 1844491433.1 +33.68001504480794 1844497410.4 +29.69727438509126 1844503387.6 +21.62643586588997 1844509364.8 +6.393803711024686 1844515342 +0.0 1844521319.2 +0.0 1844527296.4 +0.0 1844533273.7 +0.0 1844565869.7 +23.837279254405576 1844571851 +33.5792029552618 1844577832.3 +33.62960900003487 1844583813.7 +29.656495038250625 1844589795 +21.581979447638577 1844595776.4 +6.33149841320828 1844601757.7 +0.0 1844607739 +0.0 1844613720.4 +0.0 1844619701.7 +0.0 1844652263.7 +23.689738191497142 1844658248.6 +33.513220586034635 1844664233.4 +33.58882965319423 1844670218.3 +29.62166531793166 1844676203.2 +21.541200100797944 1844682188 +6.281092368435216 1844688172.9 +0.0 1844694157.8 +0.0 1844700142.6 +0.0 1844706127.5 +0.0 1844738660.8 +23.563723079564483 1844744648.6 +33.456864914739896 1844750636.4 +33.55399993287527 1844756624.2 +29.590512669023457 1844762612 +21.506370380478977 1844768599.8 +6.2343633950729105 1844774587.6 +0.0 1844780575.4 +0.0 1844786563.2 +0.0 1844792551 +0.0 1844825061 +23.45696136349668 1844831051.1 +33.4124084964885 1844837041.3 +33.52284728396707 1844843031.4 +29.565309646636923 1844849021.5 +21.481167358092442 1844855011.6 +6.205483301275618 1844861001.7 +0.0 1844866991.9 +0.0 1844872982 +0.0 1844878972.1 +0.0 1844911464.3 +23.381352296337084 1844917456.1 +33.381255847580306 1844923447.9 +33.5035938881022 1844929439.8 +29.549733322182824 1844935431.6 +21.465591033638344 1844941423.5 +6.180280278889084 1844947415.3 +0.0 1844953407.2 +0.0 1844959399 +0.0 1844965390.8 +0.0 1844997870.6 +23.32499662504235 1845003863.5 +33.35605282519377 1845009856.5 +33.4880175636481 1845015849.4 +29.54010662425039 1845021842.4 +21.453691780595 1845027835.3 +6.1683810258457425 1845033828.3 +0.0 1845039821.3 +0.0 1845045814.2 +0.0 1845051807.2 +0.0 1845084279.9 +23.299793602655814 1845090273.4 +33.34642612726134 1845096266.8 +33.48206793712643 1845102260.3 +29.534156997728722 1845108253.8 +21.450014709184238 1845114247.2 +6.164703954434982 1845120240.7 +0.0 1845126234.1 +0.0 1845132227.6 +0.0 1845138221 +0.0 1845170692.3 +23.29384397613415 1845176685.6 +33.34642612726134 1845182679 +33.48206793712643 1845188672.3 +29.534156997728722 1845194665.7 +21.453691780595 1845200659.1 +6.174330652367414 1845206652.4 +0.0 1845212645.8 +0.0 1845218639.1 +0.0 1845224632.5 +0.0 1845257107.6 +23.315369927109916 1845263100.3 +33.35605282519377 1845269092.9 +33.49396719016977 1845275085.6 +29.543783695661155 1845281078.2 +21.465591033638344 1845287070.8 +6.189906976821515 1845293063.5 +0.0 1845299056.1 +0.0 1845305048.8 +0.0 1845311041.4 +0.0 1845343525.9 +23.35982634536131 1845349517.3 +33.37530622105863 1845355508.6 +33.507270959512965 1845361499.9 +29.559360020115253 1845367491.2 +21.481167358092442 1845373482.6 +6.215109999208048 1845379473.9 +0.0 1845385465.2 +0.0 1845391456.6 +0.0 1845397447.9 +0.0 1845429947.2 +23.431758341110147 1845435936.6 +33.4124084964885 1845441926 +33.52879691048874 1845447915.4 +29.58088597109103 1845453904.8 +21.506370380478977 1845459894.2 +6.2499397195270125 1845465883.6 +0.0 1845471873 +0.0 1845477862.4 +0.0 1845483851.8 +0.0 1845516371.3 +23.52294373272385 1845522358.2 +33.45318784332913 1845528345.1 +33.559949559396934 1845534332 +29.60608899347756 1845540318.8 +21.541200100797944 1845546305.7 +6.296668692889316 1845552292.6 +0.0 1845558279.5 +0.0 1845564266.4 +0.0 1845570253.2 +0.0 1845602798.3 +23.639332146724072 1845608782.1 +33.507270959512965 1845614765.8 +33.5947792797159 1845620749.6 +29.640918713796523 1845626733.3 +21.581979447638577 1845632717.1 +6.347074737662382 1845638700.9 +0.0 1845644684.6 +0.0 1845650668.4 +0.0 1845656652.1 +0.0 1845689228.1 +23.78319613822175 1845695208.2 +33.57325332874013 1845701188.2 +33.64150825307821 1845707168.2 +29.681698060637157 1845713148.3 +21.62643586588997 1845719128.3 +6.413057106889548 1845725108.4 +0.0 1845731088.4 +0.0 1845737068.4 +0.0 1845743048.5 +0.0 1845775660.7 +23.949990596995047 1845781636.5 +33.64518532448897 1845787612.2 +33.69191429785127 1845793587.9 +29.728427033999463 1845799563.6 +21.682791537184706 1845805539.4 +6.488666174049144 1845811515.1 +0.0 1845817490.8 +0.0 1845823466.5 +0.0 1845829442.3 +0.0 1845862096.1 +24.141988078154878 1845868066.9 +33.732693644691906 1845874037.7 +33.751947040556765 1845880008.5 +29.78251015018329 1845885979.4 +21.74509683500111 1845891950.2 +6.570224867730412 1845897921 +0.0 1845903891.9 +0.0 1845909862.7 +0.0 1845915833.5 +0.0 1845948534.1 +24.351834438879713 1845954499.4 +33.82755610771637 1845960464.8 +33.81425233837318 1845966430.1 +29.844815447999693 1845972395.5 +21.811079204228275 1845978360.8 +6.661410259344111 1845984326.2 +0.0 1845990291.5 +0.0 1845996256.9 +0.0 1846002222.2 +0.0 1846034974.7 +24.590560893401847 1846040934 +33.94026745030583 1846046893.3 +33.88986140553277 1846052852.6 +29.91079781722686 1846058811.9 +21.886688271387875 1846064771.2 +6.764494904001151 1846070730.5 +0.0 1846076689.8 +0.0 1846082649.1 +0.0 1846088608.4 +0.0 1846121417.9 +24.848540743788845 1846127370.6 +34.05297879289531 1846133323.3 +33.96547047269237 1846139276 +29.9827298129757 1846145228.7 +21.96824696506914 1846151181.3 +6.874933691479712 1846157134 +0.0 1846163086.7 +0.0 1846169039.4 +0.0 1846174992.1 +0.0 1846207863.6 +25.128046545151612 1846213809.2 +34.18494353134964 1846219754.7 +34.05297879289531 1846225700.2 +30.058338880135295 1846231645.7 +22.05943235668284 1846237591.2 +6.9972717320016145 1846243536.7 +0.0 1846249482.2 +0.0 1846255427.7 +0.0 1846261373.2 +0.0 1846294311.8 +25.429078297490147 1846300249.6 +34.32058534121474 1846306187.4 +34.14784125591977 1846312125.2 +30.14357464522732 1846318063 +22.156567374818213 1846324000.7 +7.125559399045186 1846329938.5 +0.0 1846335876.3 +0.0 1846341814.1 +0.0 1846347751.9 +0.0 1846380762.4 +25.75304051710431 1846386691.9 +34.46812640412316 1846392621.4 +34.24497627405514 1846398550.9 +30.23476003684102 1846404480.5 +22.25737946436434 1846410410 +7.267150835431951 1846416339.5 +0.0 1846422269 +0.0 1846428198.5 +0.0 1846434128 +0.0 1846467215.3 +26.09485161628348 1846473136 +34.625294164964025 1846479056.7 +34.351737990122935 1846484977.4 +30.331895054976393 1846490898.2 +22.37009080695381 1846496818.9 +7.414691898340385 1846502739.6 +0.0 1846508660.3 +0.0 1846514581 +0.0 1846520501.7 +0.0 1846553670.5 +26.45959318273828 1846559581.9 +34.794361178848234 1846565493.3 +34.46812640412316 1846571404.6 +30.43497969963343 1846577316 +22.486479220954042 1846583227.4 +7.571859659181251 1846589138.8 +0.0 1846595050.2 +0.0 1846600961.5 +0.0 1846606872.9 +0.0 1846640127.9 +26.842183628758093 1846646029.4 +34.9671052641432 1846651931 +34.5845148181234 1846657832.5 +30.54174141570123 1846663734 +22.60881726147594 1846669635.6 +7.738654117954548 1846675537.1 +0.0 1846681438.6 +0.0 1846687340.2 +0.0 1846693241.7 +0.0 1846726587.4 +27.247704542053523 1846732478.6 +35.15542567389227 1846738369.8 +34.71280248516697 1846744261 +30.658129829701462 1846750152.2 +22.740781999930277 1846756043.4 +7.911398203249514 1846761934.5 +0.0 1846767825.7 +0.0 1846773716.9 +0.0 1846779608.1 +0.0 1846813049 +27.66512470839229 1846818929.4 +35.34742315505209 1846824809.7 +34.84476722362131 1846830690 +30.78046787022336 1846836570.4 +22.87869636490628 1846842450.7 +8.096041541587823 1846848331.1 +0.0 1846854211.4 +0.0 1846860091.8 +0.0 1846865972.1 +0.0 1846899512.6 +28.101798270595918 1846905381.6 +35.55131988925527 1846911250.6 +34.986358660008065 1846917119.7 +30.906482982156028 1846922988.7 +23.020287801293044 1846928857.7 +8.28803902274765 1846934726.7 +0.0 1846940595.7 +0.0 1846946464.7 +0.0 1846952333.8 +0.0 1846985978.1 +28.557725228664417 1846991835.4 +35.76484332139088 1846997692.6 +35.13389972291649 1847003549.8 +31.03844772061036 1847009407 +23.171505935612245 1847015264.2 +8.49193575695082 1847021121.4 +0.0 1847026978.7 +0.0 1847032835.9 +0.0 1847038693.1 +0.0 1847072445.5 +29.031501066297924 1847078290.5 +35.982043824937236 1847084135.4 +35.287390412346596 1847089980.4 +31.176362085586362 1847095825.3 +23.33094625156402 1847101670.3 +8.705459189086422 1847107515.3 +0.0 1847113360.2 +0.0 1847119205.2 +0.0 1847125050.1 +0.0 1847158914.7 +29.51490360186386 1847164746.9 +36.21114358152693 1847170579.2 +35.44455817318747 1847176411.4 +31.323903148494797 1847182243.7 +23.491791083815645 1847188075.9 +8.922659692632783 1847193908.2 +0.0 1847199740.4 +0.0 1847205572.7 +0.0 1847211404.9 +0.0 1847245385.6 +30.01755953329466 1847251204.7 +36.44987003604907 1847257023.8 +35.60767556055 1847262842.9 +31.471444211403234 1847268662 +23.66085809769985 1847274481.1 +9.148082377811726 1847280300.2 +0.0 1847286119.3 +0.0 1847291938.3 +0.0 1847297757.4 +0.0 1847331858.2 +30.535791789179562 1847337663.7 +36.69454611709287 1847343469.2 +35.78041964584498 1847349274.7 +31.628611972244094 1847355080.2 +23.837279254405576 1847360885.7 +9.386808832333859 1847366691.2 +0.0 1847372496.8 +0.0 1847378302.3 +0.0 1847384107.8 +0.0 1847418332.3 +31.063650742996895 1847424123.8 +36.9488488960691 1847429915.3 +35.95316373113994 1847435706.8 +31.79172935960663 1847441498.4 +24.021922592743884 1847447289.9 +9.629212358266752 1847453081.4 +0.0 1847458872.9 +0.0 1847464664.4 +0.0 1847470456 +0.0 1847504807.9 +31.603408949857563 1847510585.1 +37.2068287464561 1847516362.2 +36.135534514367336 1847522139.3 +31.95852381837993 1847527916.4 +24.207970447382042 1847533693.5 +9.883515137242986 1847539470.7 +0.0 1847545247.8 +0.0 1847551024.9 +0.0 1847556802 +0.0 1847591285 +32.15647092606143 1847597047.4 +37.473030778475675 1847602809.7 +36.323854924116404 1847608572 +32.131267903674896 1847614334.3 +24.40819011017445 1847620096.7 +10.147444614151654 1847625859 +0.0 1847631621.3 +0.0 1847637383.6 +0.0 1847643146 +0.0 1847677763.5 +32.7251092267194 1847683510.7 +37.74658695331677 1847689257.8 +36.515852405276235 1847695005 +32.30401198896986 1847700752.1 +24.60613721785595 1847706499.3 +10.41732371758199 1847712246.4 +0.0 1847717993.6 +0.0 1847723740.7 +0.0 1847729487.9 +0.0 1847764243.3 +33.29969715389903 1847769974.9 +38.02609275467954 1847775706.5 +36.713799512957735 1847781438.1 +32.48638277219727 1847787169.7 +24.81371102346988 1847792901.3 +10.690879892423085 1847798632.9 +0.0 1847804364.5 +0.0 1847810096.2 +0.0 1847815827.8 +0.0 1847850724.3 +33.88986140553277 1847856440 +38.31522525397474 1847862155.7 +36.9176962471609 1847867871.4 +32.680652808468004 1847873587.2 +25.02723445560548 1847879302.9 +10.982284946829196 1847885018.6 +0.0 1847890734.3 +0.0 1847896450 +0.0 1847902165.7 +0.0 1847937206.6 +34.48370272857726 1847942906 +38.60435775326994 1847948605.5 +37.1312196792965 1847954304.9 +32.87265028962783 1847960004.4 +25.250384585673515 1847965703.8 +11.271417446124392 1847971403.3 +0.0 1847977102.7 +0.0 1847982802.2 +0.0 1847988501.6 +0.0 1848023689.9 +35.08349367814343 1848029372.8 +38.905389505608476 1848035055.6 +37.3447431114321 1848040738.5 +33.070597397309335 1848046421.4 +25.473534715741547 1848052104.2 +11.576126269873692 1848057787.1 +0.0 1848063470 +0.0 1848069152.8 +0.0 1848074835.7 +0.0 1848110174.3 +35.69886095216371 1848115840.2 +39.21009832935778 1848121506.2 +37.564216170089374 1848127172.2 +33.274494131512505 1848132838.1 +25.702634472331244 1848138504.1 +11.886784720144664 1848144170 +0.0 1848149836 +0.0 1848155501.9 +0.0 1848161167.9 +0.0 1848196659.7 +36.31422822618397 1848202308.4 +39.52075677962875 1848207957.1 +37.791043371568165 1848213605.9 +33.48206793712643 1848219254.6 +25.94136092685338 1848224903.3 +12.201120241826395 1848230552.1 +0.0 1848236200.8 +0.0 1848241849.6 +0.0 1848247498.3 +0.0 1848283146 +36.93922219813667 1848288777.2 +39.83509230131048 1848294408.4 +38.02014312815787 1848300039.6 +33.69559136926204 1848305670.8 +26.18603700789718 1848311302 +12.527355016551466 1848316933.3 +0.0 1848322564.5 +0.0 1848328195.7 +0.0 1848333826.9 +0.0 1848369633.2 +37.56789324150014 1848375246.6 +40.15905452092464 1848380860 +38.25519251126924 1848386473.4 +33.915064427919305 1848392086.8 +26.43439016035175 1848397700.2 +12.860943934098058 1848403313.6 +0.0 1848408927 +0.0 1848414540.4 +0.0 1848420153.8 +0.0 1848456121.2 +38.20251391138527 1848461716.5 +40.485289295649714 1848467311.8 +38.49391896579137 1848472907.1 +34.13821455798734 1848478502.4 +26.68869293932799 1848484097.7 +13.202755033277233 1848489693 +0.0 1848495288.3 +0.0 1848500883.6 +0.0 1848506478.9 +0.0 1848542610 +38.843084207792074 1848548187 +40.81520114178554 1848553763.9 +38.73632249172427 1848559340.8 +34.36731431457704 1848564917.8 +26.948945344825894 1848570494.7 +13.551920275277922 1848576071.6 +0.0 1848581648.5 +0.0 1848587225.5 +0.0 1848592802.4 +0.0 1848629099.6 +39.483654504198874 1848634657.9 +41.15106261444305 1848640216.2 +38.98694819928974 1848645774.5 +34.6000911425775 1848651332.8 +27.212874821734562 1848656891.1 +13.903358072389526 1848662449.4 +0.0 1848668007.7 +0.0 1848673566 +0.0 1848679124.3 +0.0 1848715589.7 +40.13017442712734 1848721129.2 +41.48692408710055 1848726668.6 +39.24125097826598 1848732208 +34.83881759709964 1848737747.4 +27.480481370053983 1848743286.9 +14.270372193955234 1848748826.3 +0.0 1848754365.7 +0.0 1848759905.1 +0.0 1848765444.6 +0.0 1848802080.5 +40.774421794944914 1848807600.9 +41.832412257690486 1848813121.2 +39.49328120213131 1848818641.5 +35.083493678143434 1848824161.8 +27.759987171416757 1848829682.1 +14.635113760410029 1848835202.4 +0.0 1848840722.7 +0.0 1848846243 +0.0 1848851763.3 +13.124873411006725 1848888571.9 +41.424618789284146 1848894072.9 +42.17790042828042 1848899573.8 +39.75948323415088 1848905074.8 +35.32816975918723 1848910575.8 +28.039492972779517 1848916076.7 +15.015431651318925 1848921577.7 +0.0 1848927078.6 +0.0 1848932579.6 +0.0 1848938080.5 +26.358781093192157 1848975063.8 +42.071138712212615 1848980545.2 +42.52706567028112 1848986026.6 +40.02341271105954 1848991508 +35.57652291164181 1848996989.4 +28.324948400663953 1849002470.8 +15.398022097338734 1849007952.2 +0.0 1849013433.5 +0.0 1849018914.9 +0.0 1849024396.3 +26.541151876419555 1849061556.2 +42.721335706551855 1849067017.8 +42.87850346739272 1849072479.4 +40.29329181448988 1849077941 +35.834502762028805 1849083402.6 +28.614080899959152 1849088864.2 +15.787966686180061 1849094325.8 +0.0 1849099787.5 +0.0 1849105249.1 +0.0 1849110710.7 +30.139897573816558 1849148049.1 +43.36558307436942 1849153490.7 +43.23956796243675 1849158932.3 +40.56684798933098 1849164373.9 +36.094755167526706 1849169815.5 +28.91511265229769 1849175257.1 +16.18613345665397 1849180698.8 +0.0 1849186140.4 +0.0 1849191582 +0.0 1849197023.6 +34.788411552326565 1849234542.3 +44.01210299729789 1849239963.7 +43.594682830959115 1849245385.2 +40.84040416417208 1849250806.6 +36.358684644435364 1849256228 +29.213871849525322 1849261649.5 +16.5916543699494 1849267070.9 +0.0 1849272492.4 +0.0 1849277913.8 +0.0 1849283335.2 +36.2927022752082 1849321035.9 +44.65635036511545 1849326437 +43.96169695252482 1849331838.1 +41.119909965534845 1849337239.1 +36.622614121344036 1849342640.2 +29.518580673274624 1849348041.3 +17.0031249097665 1849353442.3 +0.0 1849358843.4 +0.0 1849364244.4 +0.0 1849369645.5 +42.20905307718862 1849407529.9 +45.30287028804392 1849412910.4 +44.32276144756886 1849418290.9 +41.40536539341928 1849423671.4 +36.89844285129604 1849429051.9 +29.829239123545594 1849434432.5 +17.420545076105267 1849439813 +0.0 1849445193.5 +0.0 1849450574 +0.0 1849455954.5 +41.15106261444304 1849494024.1 +45.93749095792905 1849499383.9 +44.693452640545324 1849504743.7 +41.69449789271448 1849510103.5 +37.17199902613714 1849515463.3 +30.14357464522732 1849520823.1 +17.8416423138548 1849526182.9 +0.0 1849531542.7 +0.0 1849536902.5 +0.0 1849542262.3 +44.96700881538642 1849580518.6 +46.57806125433586 1849585857.5 +45.06414383352178 1849591196.5 +41.98363039200968 1849596535.4 +37.4515048274999 1849601874.3 +30.463859793430725 1849607213.2 +18.274638804647672 1849612552.1 +0.0 1849617891.1 +0.0 1849623230 +0.0 1849628568.9 +46.30818215090552 1849667013.4 +47.20900485281023 1849672331.3 +45.43483502649825 1849677649.1 +42.27871251782654 1849682967 +37.73696025538434 1849688284.9 +30.790094568155794 1849693602.8 +18.711312366851303 1849698920.7 +0.0 1849704238.5 +0.0 1849709556.4 +0.0 1849714874.3 +47.62415246403808 1849753508.3 +47.83399882476292 1849758805 +45.80552621947472 1849764101.7 +42.57379464364342 1849769398.4 +38.02609275467954 1849774695.1 +31.120006414291627 1849779991.8 +19.1516630004657 1849785288.5 +0.0 1849790585.2 +0.0 1849795881.9 +0.0 1849801178.6 +47.36984968506185 1849840003.5 +48.45899279671562 1849845278.9 +46.18216703897286 1849850554.2 +42.87850346739272 1849855829.6 +38.31522525397474 1849861105 +31.449918260427463 1849866380.3 +19.603912887123435 1849871655.7 +0.0 1849876931.1 +0.0 1849882206.4 +0.0 1849887481.8 +50.19606034759772 1849926498.8 +49.078037142146655 1849931752.7 +46.55880785847099 1849937006.6 +43.17953521973126 1849942260.5 +38.61030737979161 1849947514.4 +31.78577973308496 1849952768.3 +20.056162773781168 1849958022.2 +0.0 1849963276.1 +0.0 1849968530 +0.0 1849973783.9 \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/app/Main.hs b/SolArduino-core/haskell/solarduino-haskell/app/Main.hs new file mode 100644 index 0000000..662015e --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/app/Main.hs @@ -0,0 +1,23 @@ +module Main where + +import Criterion.Main +import Data.Astro.Time.JulianDate +import Data.Time.Calendar + +import AngleFunctions +import PowerFunctions +import SunPosition +import TimeConverters + +--main :: IO () +--main = print (directPower 10 0.5) +-- | Benchmark functions using Criterion. +main = defaultMain [ + bgroup "bechmarking..." [ -- would usually be function name here + -- whnf wants two arguments: a function of one argument and the argument +-- bench "2018 7 30 10 29 0" $ whnf (toLocalTime 2018 7 30 10 29) 0 +-- bench "2018 8 11 22 0 0" $ whnf (bestAngle (toUniversalTime 2018 8 11 3 0 0) (toUniversalTime 2018 8 11 22 0 0)) 100 -- 5 ms +-- , bench "2018 8 11 22 0 0" $ whnf (bestAngle (toUniversalTime 2018 8 11 3 0 0) (toUniversalTime 2018 8 11 22 0 0)) 1000 -- 60 ms + bench "writing angles to file" $ whnf (writeBestAnglesToFile "angles.times" (fromGregorian 2018 8 15) (fromGregorian 2018 9 1) 1000) 10 + ] + ] diff --git a/SolArduino-core/haskell/solarduino-haskell/cabal.config b/SolArduino-core/haskell/solarduino-haskell/cabal.config new file mode 100644 index 0000000..d5508f5 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/cabal.config @@ -0,0 +1,2356 @@ +-- NOTE: Due to revisions, this file may not work. See: +-- https://github.com/fpco/stackage-server/issues/232 + +-- Stackage snapshot from: http://www.stackage.org/snapshot/lts-12.1 +-- Please place this file next to your .cabal file as cabal.config +-- To only use tested packages, uncomment the following line: +-- remote-repo: stackage-lts-12.1:http://www.stackage.org/lts-12.1 +constraints: abstract-deque ==0.3, + abstract-deque-tests ==0.3, + abstract-par ==0.3.3, + accuerr ==0.2.0.2, + ace ==0.6, + action-permutations ==0.0.0.1, + active ==0.2.0.13, + ad ==4.3.5, + adjunctions ==4.4, + adler32 ==0.1.2.0, + aern2-mp ==0.1.2.0, + aern2-real ==0.1.1.0, + aeson ==1.3.1.1, + aeson-attoparsec ==0.0.0, + aeson-better-errors ==0.9.1.0, + aeson-casing ==0.1.0.5, + aeson-compat ==0.3.8, + aeson-diff ==1.1.0.5, + aeson-extra ==0.4.1.1, + aeson-generic-compat ==0.0.1.2, + aeson-iproute ==0.2, + aeson-picker ==0.1.0.4, + aeson-pretty ==0.8.7, + aeson-qq ==0.8.2, + aeson-typescript ==0.1.0.6, + aeson-utils ==0.3.0.2, + aeson-yak ==0.1.1.3, + Agda ==2.5.4, + al ==0.1.4.2, + alarmclock ==0.5.0.2, + alerts ==0.1.0.0, + alex ==3.2.4, + alg ==0.2.5.0, + algebra ==4.3.1, + Allure ==0.8.3.0, + almost-fix ==0.0.2, + alsa-core ==0.5.0.1, + alsa-pcm ==0.6.1, + alsa-seq ==0.6.0.7, + alternative-vector ==0.0.0, + alternators ==1.0.0.0, + ALUT ==2.4.0.2, + amazonka ==1.6.0, + amazonka-apigateway ==1.6.0, + amazonka-application-autoscaling ==1.6.0, + amazonka-appstream ==1.6.0, + amazonka-autoscaling ==1.6.0, + amazonka-budgets ==1.6.0, + amazonka-certificatemanager ==1.6.0, + amazonka-cloudformation ==1.6.0, + amazonka-cloudfront ==1.6.0, + amazonka-cloudhsm ==1.6.0, + amazonka-cloudsearch ==1.6.0, + amazonka-cloudsearch-domains ==1.6.0, + amazonka-cloudtrail ==1.6.0, + amazonka-cloudwatch ==1.6.0, + amazonka-cloudwatch-events ==1.6.0, + amazonka-cloudwatch-logs ==1.6.0, + amazonka-codebuild ==1.6.0, + amazonka-codecommit ==1.6.0, + amazonka-codedeploy ==1.6.0, + amazonka-codepipeline ==1.6.0, + amazonka-cognito-identity ==1.6.0, + amazonka-cognito-idp ==1.6.0, + amazonka-cognito-sync ==1.6.0, + amazonka-config ==1.6.0, + amazonka-core ==1.6.0, + amazonka-datapipeline ==1.6.0, + amazonka-devicefarm ==1.6.0, + amazonka-directconnect ==1.6.0, + amazonka-discovery ==1.6.0, + amazonka-dms ==1.6.0, + amazonka-ds ==1.6.0, + amazonka-dynamodb ==1.6.0, + amazonka-dynamodb-streams ==1.6.0, + amazonka-ec2 ==1.6.0, + amazonka-ecr ==1.6.0, + amazonka-ecs ==1.6.0, + amazonka-efs ==1.6.0, + amazonka-elasticache ==1.6.0, + amazonka-elasticbeanstalk ==1.6.0, + amazonka-elasticsearch ==1.6.0, + amazonka-elastictranscoder ==1.6.0, + amazonka-elb ==1.6.0, + amazonka-elbv2 ==1.6.0, + amazonka-emr ==1.6.0, + amazonka-gamelift ==1.6.0, + amazonka-glacier ==1.6.0, + amazonka-health ==1.6.0, + amazonka-iam ==1.6.0, + amazonka-importexport ==1.6.0, + amazonka-inspector ==1.6.0, + amazonka-iot ==1.6.0, + amazonka-iot-dataplane ==1.6.0, + amazonka-kinesis ==1.6.0, + amazonka-kinesis-analytics ==1.6.0, + amazonka-kinesis-firehose ==1.6.0, + amazonka-kms ==1.6.0, + amazonka-lambda ==1.6.0, + amazonka-lightsail ==1.6.0, + amazonka-marketplace-analytics ==1.6.0, + amazonka-marketplace-metering ==1.6.0, + amazonka-ml ==1.6.0, + amazonka-opsworks ==1.6.0, + amazonka-opsworks-cm ==1.6.0, + amazonka-pinpoint ==1.6.0, + amazonka-polly ==1.6.0, + amazonka-rds ==1.6.0, + amazonka-redshift ==1.6.0, + amazonka-rekognition ==1.6.0, + amazonka-route53 ==1.6.0, + amazonka-route53-domains ==1.6.0, + amazonka-s3 ==1.6.0, + amazonka-sdb ==1.6.0, + amazonka-servicecatalog ==1.6.0, + amazonka-ses ==1.6.0, + amazonka-shield ==1.6.0, + amazonka-sms ==1.6.0, + amazonka-snowball ==1.6.0, + amazonka-sns ==1.6.0, + amazonka-sqs ==1.6.0, + amazonka-ssm ==1.6.0, + amazonka-stepfunctions ==1.6.0, + amazonka-storagegateway ==1.6.0, + amazonka-sts ==1.6.0, + amazonka-support ==1.6.0, + amazonka-swf ==1.6.0, + amazonka-test ==1.6.0, + amazonka-waf ==1.6.0, + amazonka-workspaces ==1.6.0, + amazonka-xray ==1.6.0, + amqp ==0.18.1, + annotated-wl-pprint ==0.7.0, + ansi-terminal ==0.8.0.4, + ansi-wl-pprint ==0.6.8.2, + ANum ==0.2.0.2, + api-field-json-th ==0.1.0.2, + appar ==0.1.4, + apply-refact ==0.5.0.0, + apportionment ==0.0.0.2, + approximate ==0.3.1, + app-settings ==0.2.0.11, + arithmoi ==0.7.0.0, + array installed, + array-memoize ==0.6.0, + arrow-extras ==0.1.0.1, + arrow-list ==0.7, + ascii-progress ==0.3.3.0, + asn1-encoding ==0.9.5, + asn1-parse ==0.9.4, + asn1-types ==0.3.2, + assert-failure ==0.1.2.2, + astro ==0.4.2.1, + async ==2.2.1, + async-extra ==0.2.0.0, + async-refresh ==0.3.0.0, + async-refresh-tokens ==0.4.0.0, + async-timer ==0.2.0.0, + atom-basic ==0.2.5, + atom-conduit ==0.5.0.1, + atomic-primops ==0.8.2, + atomic-write ==0.2.0.5, + attoparsec ==0.13.2.2, + attoparsec-base64 ==0.0.0, + attoparsec-binary ==0.2, + attoparsec-expr ==0.1.1.2, + attoparsec-ip ==0.0.1, + attoparsec-iso8601 ==1.0.0.0, + attoparsec-path ==0.0.0.1, + attoparsec-uri ==0.0.4, + audacity ==0.0.2, + authenticate ==1.3.4, + authenticate-oauth ==1.6, + auto ==0.4.3.1, + autoexporter ==1.1.10, + auto-update ==0.1.4, + avro ==0.3.2.0, + avwx ==0.3.0.2, + backprop ==0.2.5.0, + bank-holidays-england ==0.1.0.7, + barrier ==0.1.1, + base installed, + base16-bytestring ==0.1.1.6, + base32string ==0.9.1, + base58string ==0.10.0, + base64-bytestring ==1.0.0.1, + base64-bytestring-type ==1, + base64-string ==0.2, + base-compat ==0.10.4, + base-compat-batteries ==0.10.1, + basement ==0.0.8, + base-orphans ==0.7, + base-prelude ==1.3, + base-unicode-symbols ==0.2.2.4, + basic-prelude ==0.7.0, + bbdb ==0.8, + bcrypt ==0.0.11, + beam-core ==0.7.2.2, + beam-migrate ==0.3.2.1, + bench ==1.0.11, + bencode ==0.6.0.0, + between ==0.11.0.0, + bibtex ==0.1.0.6, + bifunctors ==5.5.3, + bimap ==0.3.3, + bimap-server ==0.1.0.1, + binary installed, + binary-bits ==0.5, + binary-conduit ==1.3, + binary-ext ==2.0.4, + binary-ieee754 ==0.1.0.0, + binary-list ==1.1.1.2, + binary-orphans ==0.1.8.0, + binary-parser ==0.5.5, + binary-parsers ==0.2.3.0, + binary-search ==1.0.0.3, + binary-shared ==0.8.3, + binary-tagged ==0.1.5, + bindings-DSL ==1.0.25, + bindings-GLFW ==3.2.1.1, + bindings-libzip ==1.0.1, + bindings-uname ==0.1, + BiobaseNewick ==0.0.0.2, + bitarray ==0.0.1.1, + bitcoin-api ==0.12.1, + bitcoin-api-extra ==0.9.1, + bitcoin-block ==0.13.1, + bitcoin-script ==0.11.1, + bitcoin-tx ==0.13.1, + bitcoin-types ==0.9.2, + bits ==0.5.1, + bitset-word8 ==0.1.1.0, + bits-extra ==0.0.1.3, + bit-stream ==0.1.0.2, + bitx-bitcoin ==0.12.0.0, + blake2 ==0.2.0, + blank-canvas ==0.6.3, + blas-carray ==0.0.1.1, + blas-ffi ==0.0.1.1, + blas-hs ==0.1.1.0, + blaze-bootstrap ==0.1.0.1, + blaze-builder ==0.4.1.0, + blaze-colonnade ==1.2.2, + blaze-html ==0.9.1.1, + blaze-markup ==0.8.2.1, + blaze-svg ==0.3.6.1, + blaze-textual ==0.2.1.0, + bmp ==1.2.6.3, + bno055-haskell ==0.1.0, + boltzmann-samplers ==0.1.1.0, + Boolean ==0.2.4, + boolean-like ==0.1.1.0, + boolsimplifier ==0.1.8, + bordacount ==0.1.0.0, + boring ==0.1, + both ==0.1.1.0, + bound ==2.0.1, + BoundedChan ==1.0.3.0, + boundingboxes ==0.2.3, + bower-json ==1.0.0.1, + boxes ==0.1.5, + brick ==0.37.2, + brittany ==0.11.0.0, + broadcast-chan ==0.1.1, + bsb-http-chunked ==0.0.0.2, + bson ==0.3.2.6, + bson-lens ==0.1.1, + btrfs ==0.1.2.3, + buffer-builder ==0.2.4.6, + buffer-pipe ==0.0, + butcher ==1.3.1.1, + butter ==0.1.0.6, + bv ==0.5, + bv-little ==0.1.1, + byteable ==0.1.1, + bytedump ==1.0, + byteorder ==1.0.4, + bytes ==0.15.5, + byteset ==0.1.1.0, + bytestring installed, + bytestring-builder ==0.10.8.1.0, + bytestring-conversion ==0.3.1, + bytestring-lexing ==0.5.0.2, + bytestring-strict-builder ==0.4.5.1, + bytestring-tree-builder ==0.2.7.2, + bzlib ==0.5.0.5, + bzlib-conduit ==0.3.0.1, + c2hs ==0.28.5, + Cabal ==2.2.0.1, + cabal2nix ==2.9.3, + cabal2spec ==2.1.1, + cabal-doctest ==1.0.6, + cabal-install ==2.2.0.0, + cabal-rpm ==0.12.4, + cache ==0.1.1.0, + cachix ==0.1.0.2, + cachix-api ==0.1.0.1, + cairo ==0.13.5.0, + calendar-recycling ==0.0, + call-stack ==0.1.0, + capataz ==0.2.0.0, + carray ==0.1.6.8, + cased ==0.1.0.0, + case-insensitive ==1.2.0.11, + cases ==0.1.3.2, + casing ==0.1.4.0, + cassava ==0.5.1.0, + cassava-conduit ==0.5.0, + cassava-records ==0.1.0.4, + cast ==0.1.0.2, + category ==0.2.0.1, + cereal ==0.5.5.0, + cereal-conduit ==0.8.0, + cereal-text ==0.1.0.2, + cereal-time ==0.1.0.0, + cereal-vector ==0.2.0.1, + cfenv ==0.1.0.0, + chan ==0.0.3, + ChannelT ==0.0.0.7, + charset ==0.3.7.1, + charsetdetect-ae ==1.1.0.4, + chart-unit ==0.7.0.0, + chaselev-deque ==0.5.0.5, + ChasingBottoms ==1.3.1.4, + chatwork ==0.1.3.4, + cheapskate ==0.1.1, + cheapskate-highlight ==0.1.0.0, + cheapskate-lucid ==0.1.0.0, + check-email ==1.0.2, + checkers ==0.4.10, + checksum ==0.0, + choice ==0.2.2, + chronologique ==0.3.1.1, + chunked-data ==0.3.1, + cipher-aes ==0.2.11, + cipher-aes128 ==0.7.0.3, + cipher-blowfish ==0.0.3, + cipher-camellia ==0.0.2, + cipher-des ==0.0.6, + cipher-rc4 ==0.1.4, + circle-packing ==0.1.0.6, + cisco-spark-api ==0.1.0.3, + clang-compilation-database ==0.1.0.1, + clash-ghc ==0.99.2, + clash-lib ==0.99.2, + clash-prelude ==0.99.2, + classyplate ==0.3.1.0, + classy-prelude ==1.4.0, + classy-prelude-conduit ==1.4.0, + classy-prelude-yesod ==1.4.0, + clay ==0.13.1, + clientsession ==0.9.1.2, + Clipboard ==2.3.2.0, + clock ==0.7.2, + clock-extras ==0.1.0.2, + closed ==0.2.0, + clr-host ==0.2.0.1, + clr-marshal ==0.2.0.0, + clumpiness ==0.17.0.0, + ClustalParser ==1.2.3, + cmark-gfm ==0.1.4, + cmdargs ==0.10.20, + code-builder ==0.1.3, + codec ==0.2.1, + codec-beam ==0.2.0, + codec-rpm ==0.2.2, + code-page ==0.1.3, + codo-notation ==0.5.2, + coercible-utils ==0.0.0, + colonnade ==1.2.0.1, + colorful-monoids ==0.2.1.1, + colorize-haskell ==1.0.1, + colour ==2.3.4, + combinatorial ==0.1, + comfort-graph ==0.0.3, + commutative ==0.0.1.4, + comonad ==5.0.4, + compactmap ==0.1.4.2.1, + compensated ==0.7.2, + compiler-warnings ==0.1.0, + componentm ==0.0.0.2, + componentm-devel ==0.0.0.2, + composable-associations ==0.1.0.0, + composable-associations-aeson ==0.1.0.0, + composition ==1.0.2.1, + composition-extra ==2.0.0, + composition-prelude ==1.5.0.8, + compressed ==3.11, + concise ==0.1.0.1, + concurrency ==1.6.0.0, + concurrent-extra ==0.7.0.12, + concurrent-output ==1.10.6, + concurrent-split ==0.0.1, + concurrent-supply ==0.1.8, + cond ==0.4.1.1, + conduit ==1.3.0.3, + conduit-algorithms ==0.0.8.1, + conduit-combinators ==1.3.0, + conduit-connection ==0.1.0.4, + conduit-extra ==1.3.0, + conduit-iconv ==0.1.1.3, + conduit-parse ==0.2.1.0, + conduit-throttle ==0.3.1.0, + config-ini ==0.2.2.0, + configuration-tools ==0.3.1, + configurator ==0.3.0.0, + configurator-export ==0.1.0.1, + connection ==0.2.8, + connection-pool ==0.2.2, + console-style ==0.0.2.1, + constraint ==0.1.1.1, + constraints ==0.10.1, + consul-haskell ==0.4.2, + containers installed, + containers-unicode-symbols ==0.3.1.1, + contravariant ==1.4.1, + contravariant-extras ==0.3.4, + control-bool ==0.2.1, + control-monad-free ==0.6.1, + control-monad-omega ==0.3.1, + convertible ==1.1.1.0, + cookie ==0.4.4, + countable ==1.0, + country ==0.1.6, + courier ==0.1.1.5, + cpio-conduit ==0.7.0, + cpphs ==1.20.8, + cprng-aes ==0.6.1, + cpu ==0.1.2, + cpuinfo ==0.1.0.1, + cql ==4.0.1, + cql-io ==1.0.1, + credential-store ==0.1.2, + criterion ==1.4.1.0, + criterion-measurement ==0.1.0.0, + cron ==0.6.1, + crypto-api ==0.13.3, + crypto-api-tests ==0.3, + cryptocipher ==0.6.2, + crypto-cipher-tests ==0.0.11, + crypto-cipher-types ==0.0.9, + cryptocompare ==0.1.1, + crypto-enigma ==0.0.2.12, + cryptohash ==0.11.9, + cryptohash-cryptoapi ==0.1.4, + cryptohash-md5 ==0.11.100.1, + cryptohash-sha1 ==0.11.100.1, + cryptohash-sha256 ==0.11.101.0, + cryptohash-sha512 ==0.11.100.1, + cryptonite ==0.25, + cryptonite-conduit ==0.2.2, + cryptonite-openssl ==0.7, + crypto-numbers ==0.2.7, + crypto-pubkey ==0.2.8, + crypto-pubkey-types ==0.4.3, + crypto-random ==0.0.9, + crypto-random-api ==0.2.0, + crypt-sha512 ==0, + csg ==0.1.0.4, + csp ==1.4.0, + css-syntax ==0.0.7, + css-text ==0.1.3.0, + csv ==0.1.2, + ctrie ==0.2, + cubicbezier ==0.6.0.5, + cubicspline ==0.1.2, + cue-sheet ==1.0.1, + curl ==1.3.8, + curl-runnings ==0.6.0, + currencies ==0.2.0.0, + currency ==0.2.0.0, + cutter ==0.0, + cyclotomic ==0.5.1, + czipwith ==1.0.1.0, + darcs ==2.14.1, + data-accessor ==0.2.2.7, + data-accessor-mtl ==0.2.0.4, + data-accessor-template ==0.2.1.15, + data-accessor-transformers ==0.2.1.7, + data-binary-ieee754 ==0.4.4, + data-bword ==0.1.0.1, + data-checked ==0.3, + data-clist ==0.1.2.1, + data-default ==0.7.1.1, + data-default-class ==0.1.2.0, + data-default-instances-containers ==0.0.1, + data-default-instances-dlist ==0.0.1, + data-default-instances-old-locale ==0.0.1, + data-diverse ==4.6.0.0, + data-diverse-lens ==4.3.0.0, + datadog ==0.2.2.0, + data-dword ==0.3.1.2, + data-endian ==0.1.1, + data-fix ==0.2.0, + data-has ==0.3.0.0, + data-hash ==0.2.0.1, + data-inttrie ==0.1.4, + data-lens-light ==0.1.2.2, + data-memocombinators ==0.5.1, + data-msgpack ==0.0.11, + data-msgpack-types ==0.0.1, + data-or ==1.0.0.5, + data-ordlist ==0.4.7.0, + data-ref ==0.0.1.1, + data-reify ==0.6.1, + data-serializer ==0.3.4, + datasets ==0.2.5, + data-textual ==0.3.0.2, + data-tree-print ==0.1.0.1, + dataurl ==0.1.0.0, + DAV ==1.3.2, + dawg-ord ==0.5.1.0, + dbcleaner ==0.1.3, + dbus ==1.0.1, + debian-build ==0.10.1.1, + debug ==0.1.1, + debug-trace-var ==0.2.0, + Decimal ==0.5.1, + declarative ==0.5.2, + deepseq installed, + deepseq-generics ==0.2.0.0, + dejafu ==1.11.0.3, + dependent-map ==0.2.4.0, + dependent-sum ==0.4, + dependent-sum-template ==0.0.0.6, + deque ==0.2.1, + deriving-compat ==0.5.1, + derulo ==1.0.3, + detour-via-sci ==1.0.0, + df1 ==0.1.1, + dhall ==1.15.1, + dhall-bash ==1.0.14, + dhall-json ==1.2.1, + dhall-text ==1.0.11, + di ==1.0.1, + diagrams ==1.4, + diagrams-builder ==0.8.0.3, + diagrams-cairo ==1.4.1, + diagrams-canvas ==1.4.1, + diagrams-contrib ==1.4.3, + diagrams-core ==1.4.1.1, + diagrams-gtk ==1.4, + diagrams-html5 ==1.4.1, + diagrams-lib ==1.4.2.3, + diagrams-postscript ==1.4.1, + diagrams-rasterific ==1.4.1, + diagrams-solve ==0.1.1, + diagrams-svg ==1.4.2, + di-core ==1.0, + dictionary-sharing ==0.1.0.0, + di-df1 ==1.0.2, + Diff ==0.3.4, + digest ==0.0.1.2, + digits ==0.3.1, + di-handle ==1.0, + dimensional ==1.1, + di-monad ==1.0.2, + directory installed, + directory-tree ==0.12.1, + direct-sqlite ==2.3.23, + discount ==0.1.1, + discrimination ==0.3, + disk-free-space ==0.1.0.1, + distributed-closure ==0.4.0, + distributed-static ==0.3.8, + distribution-nixpkgs ==1.1.1, + distributive ==0.5.3, + dlist ==0.8.0.4, + dlist-instances ==0.1.1.1, + dlist-nonempty ==0.1.1, + dns ==3.0.4, + docker ==0.6.0.0, + dockerfile ==0.1.0.1, + docopt ==0.7.0.5, + doctemplates ==0.2.2.1, + doctest ==0.16.0, + doctest-discover ==0.1.0.9, + doctest-driver-gen ==0.2.0.3, + do-list ==1.0.1, + dom-parser ==3.1.0, + dotenv ==0.5.2.5, + dotnet-timespan ==0.0.1.0, + double-conversion ==2.0.2.0, + download ==0.3.2.6, + drawille ==0.1.2.0, + DRBG ==0.5.5, + drifter ==0.2.3, + drifter-postgresql ==0.2.1, + dsp ==0.2.4, + dual-tree ==0.2.2, + dublincore-xml-conduit ==0.1.0.2, + dunai ==0.4.0.0, + dvorak ==0.1.0.0, + dynamic-state ==0.3.1, + dyre ==0.8.12, + Earley ==0.12.1.0, + easy-file ==0.2.2, + easytest ==0.2, + Ebnf2ps ==1.0.15, + echo ==0.1.3, + ed25519 ==0.0.5.0, + EdisonAPI ==1.3.1, + EdisonCore ==1.3.2.1, + edit-distance ==0.2.2.1, + edit-distance-vector ==1.0.0.4, + editor-open ==0.6.0.0, + either ==5.0.1, + either-unwrap ==1.1, + ekg ==0.4.0.15, + ekg-core ==0.1.1.4, + ekg-json ==0.1.0.6, + ekg-statsd ==0.2.3.0, + ekg-wai ==0.1.0.3, + elerea ==2.9.0, + elf ==0.29, + eliminators ==0.4.1, + elm-core-sources ==1.0.0, + elm-export ==0.6.0.1, + email-validate ==2.3.2.6, + enclosed-exceptions ==1.0.3, + entropy ==0.4.1.1, + enummapset ==0.5.2.2, + enumset ==0.0.4.1, + enum-subset-generate ==0.1.0.0, + envelope ==0.2.2.0, + envy ==1.5.0.0, + epub-metadata ==4.5, + eq ==4.2, + equal-files ==0.0.5.3, + equivalence ==0.3.2, + erf ==2.0.0.0, + errors ==2.3.0, + errors-ext ==0.4.1, + error-util ==0.0.1.2, + ersatz ==0.4.3, + etc ==0.4.0.3, + event ==0.1.4, + eventful-core ==0.2.0, + eventful-memory ==0.2.0, + eventful-sql-common ==0.2.0, + eventful-sqlite ==0.2.0, + eventful-test-helpers ==0.2.0, + event-list ==0.1.2, + eventstore ==1.1.5, + every ==0.0.1, + exact-combinatorics ==0.2.0.8, + exact-pi ==0.4.1.3, + exceptional ==0.3.0.0, + exception-hierarchy ==0.1.0.1, + exception-mtl ==0.4.0.1, + exceptions ==0.10.0, + exception-transformers ==0.4.0.7, + executable-hash ==0.2.0.4, + executable-path ==0.0.3.1, + exinst ==0.6, + exomizer ==1.0.0, + expiring-cache-map ==0.0.6.1, + explicit-exception ==0.1.9.2, + exp-pairs ==0.1.6.0, + extensible ==0.4.9, + extensible-exceptions ==0.1.1.4, + extra ==1.6.9, + extractable-singleton ==0.0.1, + extrapolate ==0.3.1, + facts ==0.0.1.0, + fail ==4.9.0.0, + farmhash ==0.1.0.5, + fast-digits ==0.2.1.0, + fast-logger ==2.4.11, + fast-math ==1.0.2, + fay ==0.24.0.1, + fay-base ==0.21.1.0, + fay-dom ==0.5.0.1, + fb ==1.2.1, + fclabels ==2.0.3.3, + feature-flags ==0.1.0.1, + fedora-haskell-tools ==0.5.1, + feed ==1.0.0.0, + FenwickTree ==0.1.2.1, + fft ==0.1.8.6, + fgl ==5.6.0.0, + filecache ==0.4.0, + file-embed ==0.0.10.1, + file-embed-lzma ==0, + filelock ==0.1.1.2, + filemanip ==0.3.6.3, + file-modules ==0.1.2.4, + filepath installed, + fileplow ==0.1.0.0, + filter-logger ==0.6.0.0, + filtrable ==0.1.1.0, + fin ==0.0.1, + Fin ==0.2.3.0, + FindBin ==0.0.5, + find-clumpiness ==0.2.3.1, + fingertree ==0.1.4.1, + finite-typelits ==0.1.4.2, + first-class-patterns ==0.3.2.4, + fixed ==0.2.1.1, + fixed-length ==0.2, + fixed-vector ==1.1.0.0, + fixed-vector-hetero ==0.5.0.0, + flac ==0.1.2, + flac-picture ==0.1.1, + flat-mcmc ==1.5.0, + flay ==0.4, + flexible-defaults ==0.0.2, + floatshow ==0.2.4, + flow ==1.0.14, + fmlist ==0.9.2, + fn ==0.3.0.2, + focus ==0.1.5.2, + fold-debounce ==0.2.0.7, + fold-debounce-conduit ==0.2.0.1, + foldl ==1.4.2, + folds ==0.7.4, + FontyFruity ==0.5.3.3, + force-layout ==0.4.0.6, + foreign-store ==0.2, + ForestStructures ==0.0.0.2, + forkable-monad ==0.2.0.3, + forma ==1.1.0, + format-numbers ==0.1.0.0, + formatting ==6.3.6, + foundation ==0.0.21, + free ==5.0.2, + freenect ==1.2.1, + freer-simple ==1.1.0.0, + freetype2 ==0.1.2, + free-vl ==0.1.4, + friday ==0.2.3.1, + friday-juicypixels ==0.1.2.4, + friendly-time ==0.4.1, + frisby ==0.2.2, + from-sum ==0.2.1.0, + frontmatter ==0.1.0.2, + fsnotify ==0.3.0.1, + fsnotify-conduit ==0.1.1.1, + funcmp ==1.9, + functor-classes-compat ==1, + fuzzcheck ==0.1.1, + fuzzy-dates ==0.1.1.1, + fuzzyset ==0.1.0.6, + gauge ==0.2.3, + gc ==0.0.2, + gd ==3000.7.3, + gdax ==0.6.0.0, + gdp ==0.0.0.2, + general-games ==1.1.1, + generic-aeson ==0.2.0.9, + generic-arbitrary ==0.1.0, + generic-deriving ==1.12.2, + generic-lens ==1.0.0.1, + GenericPretty ==1.2.2, + generic-random ==1.2.0.0, + generics-eot ==0.4, + generics-sop ==0.3.2.0, + generics-sop-lens ==0.1.2.1, + generic-xmlpickler ==0.1.0.5, + geniplate-mirror ==0.7.6, + genvalidity ==0.5.1.0, + genvalidity-aeson ==0.2.0.2, + genvalidity-bytestring ==0.2.0.2, + genvalidity-containers ==0.5.0.0, + genvalidity-hspec ==0.6.1.1, + genvalidity-hspec-aeson ==0.3.0.0, + genvalidity-hspec-binary ==0.2.0.2, + genvalidity-hspec-cereal ==0.2.0.2, + genvalidity-hspec-hashable ==0.2.0.2, + genvalidity-path ==0.3.0.2, + genvalidity-property ==0.2.1.0, + genvalidity-scientific ==0.2.0.1, + genvalidity-text ==0.5.0.2, + genvalidity-time ==0.2.1.0, + genvalidity-unordered-containers ==0.2.0.3, + genvalidity-uuid ==0.1.0.2, + genvalidity-vector ==0.2.0.2, + geodetics ==0.0.6, + getopt-generics ==0.13.0.2, + ghc installed, + ghc-boot installed, + ghc-boot-th installed, + ghc-core ==0.5.6, + ghc-exactprint ==0.5.6.1, + ghci installed, + ghcid ==0.7, + ghcjs-base-stub ==0.2.0.0, + ghcjs-codemirror ==0.0.0.2, + ghc-parser ==0.2.0.2, + ghc-paths ==0.1.0.9, + ghc-prim installed, + ghc-prof ==1.4.1.3, + ghc-syntax-highlighter ==0.0.2.0, + ghc-tcplugins-extra ==0.3, + ghc-typelits-extra ==0.2.6, + ghc-typelits-knownnat ==0.5.1, + ghc-typelits-natnormalise ==0.6.2, + ghost-buster ==0.1.1.0, + gi-atk ==2.0.15, + gi-cairo ==1.0.17, + gi-gdk ==3.0.16, + gi-gdkpixbuf ==2.0.16, + gi-gio ==2.0.18, + gi-glib ==2.0.17, + gi-gobject ==2.0.16, + gi-gtk ==3.0.23, + gi-gtk-hs ==0.3.6.1, + gi-gtksource ==3.0.16, + gi-javascriptcore ==4.0.15, + gio ==0.13.5.0, + gi-pango ==1.0.16, + giphy-api ==0.6.0.1, + github ==0.19, + github-release ==1.2.2, + github-types ==0.2.1, + github-webhooks ==0.10.0, + gitrev ==1.3.1, + git-vogue ==0.3.0.2, + gl ==0.8.0, + glabrous ==0.3.6, + glaze ==0.3.0.1, + glazier ==1.0.0.0, + GLFW-b ==3.2.1.0, + glib ==0.13.6.0, + Glob ==0.9.2, + gloss ==1.12.0.0, + gloss-raster ==1.12.0.0, + gloss-rendering ==1.12.0.0, + GLURaw ==2.0.0.4, + GLUT ==2.7.0.13, + gnuplot ==0.5.5.2, + goggles ==0.3.2, + google-oauth2-jwt ==0.3.0, + gpolyline ==0.1.0.1, + graph-core ==0.3.0.0, + graphs ==0.7.1, + graphviz ==2999.20.0.2, + graph-wrapper ==0.2.5.1, + gravatar ==0.8.0, + graylog ==0.1.0.1, + greskell ==0.2.0.2, + greskell-core ==0.1.2.1, + greskell-websocket ==0.1.0.0, + groom ==0.1.2.1, + groups ==0.4.1.0, + gtk ==0.14.10, + gtk2hs-buildtools ==0.13.4.0, + gtk3 ==0.14.9, + gym-http-api ==0.1.0.1, + h2c ==1.0.0, + hackage-db ==2.0.1, + hackage-security ==0.5.3.0, + haddock-library ==1.5.0.1, + hailgun ==0.4.1.8, + hakyll ==4.12.3.0, + half ==0.3, + hamilton ==0.1.0.3, + hamtsolo ==1.0.3, + HandsomeSoup ==0.4.2, + handwriting ==0.1.0.3, + hapistrano ==0.3.5.8, + happstack-server ==7.5.1.1, + happy ==1.19.9, + hasbolt ==0.1.3.0, + hashable ==1.2.7.0, + hashids ==1.0.2.4, + hashmap ==1.3.3, + hashtables ==1.2.3.1, + haskeline ==0.7.4.3, + haskell-gi ==0.21.3, + haskell-gi-base ==0.21.1, + haskell-gi-overloading ==1.0, + haskell-lexer ==1.0.1, + haskell-lsp ==0.2.2.0, + haskell-lsp-types ==0.2.2.0, + HaskellNet ==0.5.1, + HaskellNet-SSL ==0.3.4.0, + haskell-spacegoo ==0.2.0.1, + haskell-src ==1.0.3.0, + haskell-src-exts ==1.20.2, + haskell-src-exts-simple ==1.20.0.0, + haskell-src-exts-util ==0.2.3, + haskell-src-meta ==0.8.0.3, + haskell-tools-ast ==1.1.0.2, + haskell-tools-backend-ghc ==1.1.0.2, + haskell-tools-builtin-refactorings ==1.1.0.2, + haskell-tools-debug ==1.1.0.2, + haskell-tools-demo ==1.1.0.2, + haskell-tools-prettyprint ==1.1.0.2, + haskell-tools-refactor ==1.1.0.2, + haskell-tools-rewrite ==1.1.0.2, + haskey ==0.3.0.2, + haskey-btree ==0.3.0.0, + haskey-mtl ==0.3.1.0, + haskintex ==0.8.0.0, + hasql ==1.3.0.2, + hasql-optparse-applicative ==0.3.0.3, + hasql-pool ==0.5, + hasql-transaction ==0.7, + hasty-hamiltonian ==1.3.2, + HaTeX ==3.19.0.0, + haxl ==2.0.1.0, + hbeanstalk ==0.2.4, + HCodecs ==0.5.1, + hdaemonize ==0.5.5, + HDBC ==2.4.0.2, + HDBC-mysql ==0.7.1.0, + HDBC-session ==0.1.2.0, + heap ==1.0.4, + heaps ==0.3.6, + hebrew-time ==0.1.1, + hedgehog ==0.6, + hedgehog-corpus ==0.1.0, + hedis ==0.10.2, + here ==1.2.13, + heredoc ==0.2.0.0, + heterocephalus ==1.0.5.2, + hex ==0.1.2, + hexml ==0.3.3, + hexml-lens ==0.2.1, + hexpat ==0.20.13, + hexstring ==0.11.1, + hfsevents ==0.1.6, + hidapi ==0.1.4, + hidden-char ==0.1.0.2, + hierarchical-clustering ==0.4.6, + hierarchy ==1.0.2, + higher-leveldb ==0.5.0.1, + highlighting-kate ==0.6.4, + hinotify ==0.3.10, + hint ==0.8.0, + histogram-fill ==0.9.0.0, + hjsmin ==0.2.0.2, + hledger ==1.10, + hledger-api ==1.10, + hledger-interest ==1.5.2, + hledger-lib ==1.10, + hledger-ui ==1.10.1, + hledger-web ==1.10, + hlibgit2 ==0.18.0.16, + hlibsass ==0.1.7.0, + hlint ==2.1.8, + hmatrix ==0.19.0.0, + hmatrix-backprop ==0.1.2.3, + hmatrix-gsl ==0.19.0.1, + hmatrix-gsl-stats ==0.4.1.7, + hmatrix-morpheus ==0.1.1.2, + hmatrix-special ==0.19.0.0, + hmatrix-vector-sized ==0.1.1.0, + hmpfr ==0.4.4, + Hoed ==0.5.1, + hoogle ==5.0.17.3, + hoopl ==3.10.2.2, + hOpenPGP ==2.7.1, + hopenpgp-tools ==0.21.1, + hopenssl ==2.2.1, + hopfli ==0.2.2.1, + hostname ==1.0, + hostname-validate ==1.0.0, + hourglass ==0.2.11, + hourglass-orphans ==0.1.0.0, + hp2pretty ==0.8.0.2, + hpack ==0.28.2, + hpc installed, + HPDF ==1.4.10, + hpqtypes ==1.5.3.0, + hprotoc ==2.4.11, + hquantlib ==0.0.4.0, + hreader ==1.1.0, + hreader-lens ==0.1.3.0, + hruby ==0.3.5.4, + hsass ==0.7.0, + hs-bibutils ==6.6.0.0, + hscolour ==1.24.4, + hsdns ==1.7.1, + hsebaysdk ==0.4.0.0, + hsemail ==2, + hset ==2.2.0, + HSet ==0.0.1, + hsexif ==0.6.1.5, + hs-functors ==0.1.2.0, + hs-GeoIP ==0.3, + hsini ==0.5.1.2, + hsinstall ==1.6, + HSlippyMap ==3.0.1, + hslogger ==1.2.10, + hslua ==0.9.5.2, + hslua-aeson ==0.3.0.2, + hslua-module-text ==0.1.2.1, + HsOpenSSL ==0.11.4.14, + HsOpenSSL-x509-system ==0.1.0.3, + hsp ==0.10.0, + hspec ==2.5.4, + hspec-attoparsec ==0.1.0.2, + hspec-checkers ==0.1.0.2, + hspec-contrib ==0.5.0, + hspec-core ==2.5.4, + hspec-discover ==2.5.4, + hspec-expectations ==0.8.2, + hspec-expectations-lifted ==0.10.0, + hspec-expectations-pretty-diff ==0.7.2.4, + hspec-golden-aeson ==0.7.0.0, + hspec-megaparsec ==1.0.0, + hspec-meta ==2.4.6, + hspec-pg-transact ==0.1.0.2, + hspec-smallcheck ==0.5.2, + hspec-wai ==0.9.0, + hspec-wai-json ==0.9.0, + hstatsd ==0.1, + HStringTemplate ==0.8.7, + HSvm ==0.1.0.3.22, + hsx-jmacro ==7.3.8.1, + hsyslog ==5.0.1, + hsyslog-udp ==0.2.3, + htaglib ==1.2.0, + HTF ==0.13.2.4, + html ==1.0.1.2, + html-conduit ==1.3.1, + html-email-validate ==0.2.0.0, + html-entities ==1.1.4.2, + html-entity-map ==0.1.0.0, + htoml ==1.0.0.3, + HTTP ==4000.3.12, + http2 ==1.6.3, + http-api-data ==0.3.8.1, + http-client ==0.5.13.1, + http-client-openssl ==0.2.2.0, + http-client-tls ==0.3.5.3, + http-common ==0.8.2.0, + http-conduit ==2.3.2, + http-date ==0.0.7, + httpd-shed ==0.4.0.3, + http-link-header ==1.0.3, + http-media ==0.7.1.2, + http-reverse-proxy ==0.6.0, + http-streams ==0.8.6.1, + http-types ==0.12.1, + human-readable-duration ==0.2.0.3, + HUnit ==1.6.0.0, + HUnit-approx ==1.1.1.1, + hunit-dejafu ==1.2.0.6, + hvect ==0.4.0.0, + hw-balancedparens ==0.2.0.1, + hw-bits ==0.7.0.2, + hw-conduit ==0.2.0.3, + hw-diagnostics ==0.0.0.5, + hweblib ==0.6.3, + hw-excess ==0.2.0.2, + hw-fingertree-strict ==0.1.1.1, + hw-hedgehog ==0.1.0.1, + hw-hspec-hedgehog ==0.1.0.5, + hw-int ==0.0.0.3, + hw-ip ==0.1.0.0, + hw-json ==0.6.0.0, + hw-mquery ==0.1.0.1, + hworker ==0.1.0.1, + hw-parser ==0.0.0.3, + hw-prim ==0.6.2.0, + hw-rankselect ==0.10.0.3, + hw-rankselect-base ==0.3.2.0, + hw-string-parse ==0.0.0.4, + hw-succinct ==0.1.0.1, + hw-xml ==0.1.0.3, + hxt ==9.3.1.16, + hxt-charproperties ==9.2.0.1, + hxt-css ==0.1.0.3, + hxt-curl ==9.1.1.1, + hxt-expat ==9.1.1, + hxt-http ==9.1.5.2, + hxt-pickle-utils ==0.1.0.3, + hxt-regex-xmlschema ==9.2.0.3, + hxt-tagsoup ==9.1.4, + hxt-unicode ==9.0.2.4, + hybrid-vectors ==0.2.2, + hyperloglog ==0.4.2, + hyphenation ==0.7.1, + iconv ==0.4.1.3, + identicon ==0.2.2, + ieee754 ==0.8.0, + if ==0.1.0.0, + iff ==0.0.6, + ihaskell ==0.9.0.3, + ihs ==0.1.0.2, + ilist ==0.3.1.0, + imagesize-conduit ==1.1, + Imlib ==0.1.2, + immortal ==0.3, + include-file ==0.1.0.3, + incremental-parser ==0.3.1.1, + indentation-core ==0.0.0.1, + indentation-parsec ==0.0.0.1, + indents ==0.5.0.0, + indexed-list-literals ==0.2.1.1, + inflections ==0.4.0.3, + influxdb ==1.6.0.6, + ini ==0.3.6, + inliterate ==0.1.0, + insert-ordered-containers ==0.2.1.0, + inspection-testing ==0.2.0.1, + instance-control ==0.1.2.0, + integer-gmp installed, + integer-logarithms ==1.0.2.1, + integration ==0.2.1, + intern ==0.9.2, + interpolate ==0.2.0, + interpolatedstring-perl6 ==1.0.0, + interpolation ==0.1.0.2, + IntervalMap ==0.6.0.0, + intervals ==0.8.1, + intro ==0.3.1.0, + invariant ==0.5.1, + invertible ==0.2.0.5, + invertible-grammar ==0.1.1, + io-choice ==0.0.6, + io-machine ==0.2.0.0, + io-manager ==0.1.0.2, + io-memoize ==1.1.1.0, + io-region ==0.1.1, + io-storage ==0.3, + io-streams ==1.5.0.1, + io-streams-haproxy ==1.0.0.2, + ip ==1.3.0, + ip6addr ==1.0.0, + iproute ==1.7.5, + IPv6Addr ==1.1.0, + ipython-kernel ==0.9.0.2, + irc ==0.6.1.0, + irc-client ==1.1.0.4, + irc-conduit ==0.3.0.1, + irc-ctcp ==0.1.3.0, + irc-dcc ==2.0.1, + islink ==0.1.0.0, + iso3166-country-codes ==0.20140203.8, + iso639 ==0.1.0.3, + iso8601-time ==0.1.5, + iterable ==3.0, + ixset-typed ==0.4, + ix-shapable ==0.1.0, + jack ==0.7.1.3, + jailbreak-cabal ==1.3.3, + jmacro ==0.6.15, + jmacro-rpc ==0.3.3, + jmacro-rpc-snap ==0.3, + jose ==0.7.0.0, + jose-jwt ==0.7.8, + js-flot ==0.8.3, + js-jquery ==3.3.1, + json ==0.9.2, + json-autotype ==2.0.0, + json-feed ==1.0.3, + json-rpc-client ==0.2.5.0, + json-rpc-generic ==0.2.1.4, + json-rpc-server ==0.2.6.0, + json-schema ==0.7.4.2, + JuicyPixels ==3.2.9.5, + JuicyPixels-blp ==0.1.0.1, + JuicyPixels-extra ==0.3.0, + JuicyPixels-scale-dct ==0.1.2, + justified-containers ==0.3.0.0, + jwt ==0.7.2, + kan-extensions ==5.2, + kanji ==3.4.0, + kansas-comet ==0.4, + kawhi ==0.3.0, + kdt ==0.2.4, + keycode ==0.2.2, + keys ==3.12.1, + kleene ==0, + kmeans ==0.1.3, + koofr-client ==1.0.0.3, + kraken ==0.1.0, + l10n ==0.1.0.1, + labels ==0.3.3, + lackey ==1.0.5, + lambdabot-core ==5.1.0.2, + lambdabot-irc-plugins ==5.1.0.1, + LambdaHack ==0.8.3.0, + lame ==0.1.1, + language-c ==0.8.1, + language-c-quote ==0.12.2, + language-docker ==6.0.4, + language-ecmascript ==0.19, + language-haskell-extract ==0.2.4, + language-java ==0.2.9, + language-javascript ==0.6.0.11, + language-nix ==2.1.0.1, + language-puppet ==1.3.19.1, + lapack-carray ==0.0.2, + lapack-ffi ==0.0.2, + lapack-ffi-tools ==0.1.0.1, + large-hashable ==0.1.0.4, + largeword ==1.2.5, + latex ==0.1.0.3, + lattices ==1.7.1.1, + lawful ==0.1.0.0, + lazyio ==0.1.0.4, + lca ==0.3.1, + leancheck ==0.7.0, + leapseconds-announced ==2017.1.0.1, + learn-physics ==0.6.2, + lens ==4.16.1, + lens-action ==0.2.3, + lens-aeson ==1.0.2, + lens-datetime ==0.3, + lens-family ==1.2.2, + lens-family-core ==1.2.2, + lens-family-th ==0.5.0.2, + lens-labels ==0.2.0.1, + lens-misc ==0.0.2.0, + lens-properties ==4.11.1, + lens-regex ==0.1.0, + lens-simple ==0.1.0.9, + lenz ==0.3.0.0, + leveldb-haskell ==0.6.5, + libffi ==0.1, + libgit ==0.3.1, + libgraph ==1.14, + libmpd ==0.9.0.8, + libxml-sax ==0.7.5, + LibZip ==1.0.1, + lifted-async ==0.10.0.2, + lifted-base ==0.2.3.12, + lift-generics ==0.1.2, + line ==4.0.1, + linear ==1.20.8, + linked-list-with-iterator ==0.1.1.0, + linux-file-extents ==0.2.0.0, + linux-namespaces ==0.1.3.0, + List ==0.6.2, + ListLike ==4.6, + listsafe ==0.1.0.1, + list-t ==1.0.1, + llvm-hs ==6.3.0, + llvm-hs-pretty ==0.5.0.0, + llvm-hs-pure ==6.2.1, + lmdb ==0.2.5, + load-env ==0.2.0.1, + locators ==0.2.4.4, + loch-th ==0.2.2, + lockfree-queue ==0.2.3.1, + log-base ==0.7.4.0, + log-domain ==0.12, + logfloat ==0.13.3.3, + logger-thread ==0.1.0.2, + logging-effect ==1.3.2, + logging-facade ==0.3.0, + logging-facade-syslog ==1, + logict ==0.6.0.2, + log-postgres ==0.7.0.2, + loop ==0.3.0, + lrucache ==1.2.0.0, + lrucaching ==0.3.3, + lucid ==2.9.10, + lucid-extras ==0.1.0.1, + lxd-client-config ==0.1.0.1, + lz4 ==0.2.3.1, + lzma ==0.0.0.3, + lzma-conduit ==1.2.1, + machines ==0.6.4, + machines-binary ==0.3.0.3, + machines-directory ==0.2.1.0, + machines-io ==0.2.0.13, + magicbane ==0.3.0, + mainland-pretty ==0.7, + main-tester ==0.1.0.0, + makefile ==1.1.0.0, + managed ==1.0.6, + mapquest-api ==0.3.1, + markdown ==0.1.17.1, + markdown-unlit ==0.5.0, + markov-chain ==0.0.3.4, + marvin-interpolate ==1.1.2, + massiv ==0.2.0.0, + massiv-io ==0.1.4.0, + mathexpr ==0.3.0.0, + math-functions ==0.2.1.0, + matrices ==0.4.5, + matrix ==0.3.6.1, + matrix-market-attoparsec ==0.1.0.8, + maximal-cliques ==0.1.1, + mbox ==0.3.4, + mbox-utility ==0.0.1, + mbtiles ==0.6.0.0, + mbug ==1.3, + mcmc-types ==1.0.3, + median-stream ==0.7.0.0, + med-module ==0.1.1, + megaparsec ==6.5.0, + mega-sdist ==0.3.3.1, + memory ==0.14.16, + MemoTrie ==0.6.9, + mercury-api ==0.1.0.1, + mersenne-random-pure64 ==0.2.2.0, + messagepack ==0.5.4, + messagepack-rpc ==0.5.1, + metrics ==0.4.1.1, + mfsolve ==0.3.2.0, + microformats2-parser ==1.0.1.9, + microlens ==0.4.9.1, + microlens-aeson ==2.3.0, + microlens-contra ==0.1.0.1, + microlens-ghc ==0.4.9, + microlens-mtl ==0.1.11.1, + microlens-platform ==0.3.10, + microlens-th ==0.4.2.1, + microspec ==0.1.0.0, + microstache ==1.0.1.1, + midi ==0.2.2.2, + mighty-metropolis ==1.2.0, + milena ==0.5.2.2, + mime-mail ==0.4.14, + mime-mail-ses ==0.4.1, + mime-types ==0.1.0.8, + minimorph ==0.1.6.1, + minio-hs ==1.2.0, + minisat-solver ==0.1, + miniutter ==0.4.7.0, + mintty ==0.1.2, + miso ==0.21.1.0, + missing-foreign ==0.1.1, + MissingH ==1.4.0.1, + mixed-types-num ==0.3.1.4, + mltool ==0.2.0.1, + mmap ==0.5.9, + mmark ==0.0.5.6, + mmark-cli ==0.0.3.0, + mmark-ext ==0.2.1.0, + mmorph ==1.1.2, + mnist-idx ==0.1.2.8, + mockery ==0.3.5, + modern-uri ==0.2.1.0, + moesocks ==1.0.0.44, + monad-control ==1.0.2.3, + monad-control-aligned ==0.0.1.1, + monad-coroutine ==0.9.0.4, + monad-extras ==0.6.0, + monadic-arrays ==0.2.2, + monad-journal ==0.8.1, + monad-logger ==0.3.28.5, + monad-logger-json ==0.1.0.0, + monad-logger-prefix ==0.1.10, + monad-logger-syslog ==0.1.4.0, + monad-loops ==0.4.3, + monad-memo ==0.4.1, + monad-metrics ==0.2.1.2, + monad-par ==0.3.4.8, + monad-parallel ==0.7.2.3, + monad-par-extras ==0.3.3, + monad-peel ==0.2.1.2, + monad-products ==4.0.1, + MonadPrompt ==1.0.0.5, + MonadRandom ==0.5.1.1, + monad-recorder ==0.1.1, + monad-skeleton ==0.1.5, + monad-st ==0.2.4.1, + monads-tf ==0.1.0.3, + monad-time ==0.3.1.0, + monad-unlift ==0.2.0, + monad-unlift-ref ==0.2.1, + mongoDB ==2.4.0.0, + monoidal-containers ==0.3.1.0, + monoid-extras ==0.5, + monoid-subclasses ==0.4.6, + monoid-transformer ==0.0.4, + mono-traversable ==1.0.8.1, + mono-traversable-instances ==0.1.0.0, + morte ==1.6.20, + mountpoints ==1.0.2, + mstate ==0.2.7, + mtl ==2.2.2, + mtl-compat ==0.2.1.3, + mtl-prelude ==2.0.3.1, + multiarg ==0.30.0.10, + multimap ==1.2.1, + multipart ==0.1.2, + multistate ==0.8.0.0, + murmur-hash ==0.1.0.9, + MusicBrainz ==0.4, + mustache ==2.3.0, + mutable-containers ==0.3.4, + mwc-probability ==2.0.4, + mwc-probability-transition ==0.4, + mwc-random ==0.13.6.0, + mysql ==0.1.5, + mysql-haskell ==0.8.3.0, + mysql-haskell-nem ==0.1.0.0, + mysql-haskell-openssl ==0.8.3.0, + mysql-simple ==0.4.5, + nagios-check ==0.3.2, + named ==0.1.0.0, + names-th ==0.3.0.0, + nano-erl ==0.1.0.1, + nanospec ==0.2.2, + nats ==1.1.2, + natural-induction ==0.2.0.0, + natural-sort ==0.1.2, + natural-transformation ==0.4, + ndjson-conduit ==0.1.0.5, + neat-interpolation ==0.3.2.2, + netlib-carray ==0.0.1.1, + netlib-ffi ==0.1, + netpbm ==1.0.2, + nettle ==0.3.0, + netwire ==5.0.3, + netwire-input ==0.0.7, + netwire-input-glfw ==0.0.10, + network ==2.6.3.6, + network-anonymous-i2p ==0.10.0, + network-anonymous-tor ==0.11.0, + network-attoparsec ==0.12.2, + network-conduit-tls ==1.3.2, + network-house ==0.1.0.2, + network-info ==0.2.0.10, + network-ip ==0.3.0.2, + network-multicast ==0.2.0, + Network-NineP ==0.4.3, + network-simple ==0.4.1, + network-simple-tls ==0.3, + network-transport ==0.5.2, + network-transport-composed ==0.2.1, + network-transport-inmemory ==0.5.2, + network-transport-tests ==0.2.4.2, + network-uri ==2.6.1.0, + newtype ==0.2, + newtype-generics ==0.5.3, + next-ref ==0.1.0.2, + nicify-lib ==1.0.1, + NineP ==0.0.2.1, + nix-paths ==1.0.1, + NoHoed ==0.1.1, + nonce ==1.0.7, + nondeterminism ==1.4, + non-empty ==0.3, + non-empty-sequence ==0.2.0.2, + non-negative ==0.1.2, + nsis ==0.3.2, + numbers ==3000.2.0.2, + numeric-extras ==0.1, + numeric-prelude ==0.4.3, + numhask ==0.2.3.1, + numhask-prelude ==0.1.0.1, + numhask-range ==0.2.3.1, + numhask-test ==0.1.0.0, + NumInstances ==1.4, + numtype-dk ==0.5.0.1, + nvim-hs ==1.0.0.2, + nvim-hs-contrib ==1.0.0.0, + oauthenticated ==0.2.1.0, + objective ==1.1.2, + ObjectName ==1.1.0.1, + o-clock ==1.0.0, + odbc ==0.2.0, + oeis ==0.3.9, + ofx ==0.4.2.0, + old-locale ==1.0.0.7, + old-time ==1.1.0.3, + om-elm ==1.0.0.3, + once ==0.2, + one-liner ==1.0, + one-liner-instances ==0.1.2.1, + OneTuple ==0.2.2, + online ==0.3.0.0, + Only ==0.1, + oo-prototypes ==0.1.0.0, + OpenAL ==1.7.0.4, + open-browser ==0.2.1.0, + openexr-write ==0.1.0.1, + OpenGL ==3.0.2.1, + OpenGLRaw ==3.3.0.1, + openpgp-asciiarmor ==0.1.1, + opensource ==0.1.0.0, + openssl-streams ==1.2.1.3, + open-witness ==0.4.0.1, + operational ==0.2.3.5, + operational-class ==0.3.0.0, + opml-conduit ==0.6.0.4, + optional-args ==1.0.2, + options ==1.2.1.1, + optparse-applicative ==0.14.2.0, + optparse-generic ==1.3.0, + optparse-simple ==0.1.0, + optparse-text ==0.1.1.0, + overhang ==1.0.0, + packcheck ==0.3.1, + packdeps ==0.4.5, + pager ==0.1.1.0, + pagination ==0.2.1, + palette ==0.3.0.1, + pandoc ==2.2.1, + pandoc-citeproc ==0.14.3.1, + pandoc-types ==1.17.5.1, + pango ==0.13.5.0, + papillon ==0.1.0.6, + parallel ==3.2.2.0, + parallel-io ==0.3.3, + parseargs ==0.2.0.8, + parsec ==3.1.13.0, + parsec-numeric ==0.1.0.0, + ParsecTools ==0.0.2.0, + parser-combinators ==1.0.0, + parsers ==0.12.9, + partial-handler ==1.0.3, + partial-isomorphisms ==0.2.2.1, + partial-order ==0.1.2.1, + path ==0.6.1, + path-extra ==0.2.0, + path-io ==1.3.3, + path-pieces ==0.2.1, + pathtype ==0.8.1, + pathwalk ==0.3.1.2, + pattern-arrows ==0.0.2, + pcf-font ==0.2.2.0, + pcf-font-embed ==0.1.2.0, + pcg-random ==0.1.3.5, + pcre-heavy ==1.0.0.2, + pcre-light ==0.4.0.4, + pcre-utils ==0.1.8.1.1, + pdfinfo ==1.5.4, + peano ==0.1.0.1, + pem ==0.2.4, + perf ==0.4.1.0, + perfect-hash-generator ==0.2.0.6, + persistable-record ==0.6.0.4, + persistable-types-HDBC-pg ==0.0.3.5, + persistent ==2.8.2, + persistent-iproute ==0.2.3, + persistent-mysql ==2.8.1, + persistent-mysql-haskell ==0.4.1, + persistent-postgresql ==2.8.2.0, + persistent-refs ==0.4, + persistent-sqlite ==2.8.1.2, + persistent-template ==2.5.4, + pgp-wordlist ==0.1.0.2, + pg-transact ==0.1.0.1, + phantom-state ==0.2.1.2, + picosat ==0.1.4, + pid1 ==0.1.2.0, + pinboard ==0.9.12.10, + pipes ==4.3.9, + pipes-aeson ==0.4.1.8, + pipes-attoparsec ==0.5.1.5, + pipes-binary ==0.4.2, + pipes-bytestring ==2.1.6, + pipes-category ==0.3.0.0, + pipes-concurrency ==2.0.11, + pipes-csv ==1.4.3, + pipes-extras ==1.0.15, + pipes-fastx ==0.3.0.0, + pipes-fluid ==0.6.0.1, + pipes-group ==1.0.12, + pipes-http ==1.0.5, + pipes-misc ==0.5.0.0, + pipes-network ==0.6.5, + pipes-network-tls ==0.3, + pipes-parse ==3.0.8, + pipes-random ==1.0.0.4, + pipes-safe ==2.2.9, + pipes-wai ==3.2.0, + pkcs10 ==0.2.0.0, + placeholders ==0.1, + plot-light ==0.4.3, + plotlyhs ==0.2, + pointed ==5.0.1, + pointedlist ==0.6.1, + pointless-fun ==1.1.0.6, + poll ==0.0.0.1, + poly-arity ==0.1.0, + polynomials-bernstein ==1.1.2, + polyparse ==1.12, + pooled-io ==0.0.2.1, + portable-lines ==0.1, + postgresql-binary ==0.12.1.1, + postgresql-libpq ==0.9.4.1, + postgresql-schema ==0.1.14, + postgresql-simple ==0.5.4.0, + postgresql-simple-migration ==0.1.12.0, + postgresql-simple-queue ==1.0.1, + postgresql-simple-url ==0.2.1.0, + postgresql-transactional ==1.1.1, + postgresql-typed ==0.5.3.0, + post-mess-age ==0.2.1.0, + pptable ==0.3.0.0, + pqueue ==1.4.1.1, + prefix-units ==0.2.0, + prelude-compat ==0.0.0.1, + prelude-extras ==0.4.0.3, + prelude-safeenum ==0.1.1.2, + present ==4.1.0, + pretty installed, + prettyclass ==1.0.0.0, + pretty-class ==1.0.1.1, + pretty-hex ==1.0, + prettyprinter ==1.2.1, + prettyprinter-ansi-terminal ==1.1.1.2, + prettyprinter-compat-annotated-wl-pprint ==1, + prettyprinter-compat-ansi-wl-pprint ==1.0.1, + prettyprinter-compat-wl-pprint ==1.0.0.1, + prettyprinter-convert-ansi-wl-pprint ==1.1, + pretty-show ==1.7, + pretty-simple ==2.1.0.1, + pretty-types ==0.2.3.1, + primes ==0.2.1.0, + primitive ==0.6.3.0, + prim-uniq ==0.1.0.1, + probability ==0.2.5.1, + process installed, + process-extras ==0.7.4, + product-isomorphic ==0.0.3.2, + product-profunctors ==0.10.0.0, + profiterole ==0.1, + profunctors ==5.2.2, + projectroot ==0.2.0.1, + project-template ==0.2.0.1, + prometheus-client ==0.3.0, + promises ==0.3, + prompt ==0.1.1.2, + protobuf ==0.2.1.2, + protobuf-simple ==0.1.0.5, + protocol-buffers ==2.4.11, + protocol-buffers-descriptor ==2.4.11, + protocol-radius ==0.0.1.0, + protocol-radius-test ==0.0.1.0, + proto-lens ==0.3.1.0, + proto-lens-arbitrary ==0.1.2.1, + proto-lens-combinators ==0.1.0.10, + proto-lens-optparse ==0.1.1.1, + proto-lens-protobuf-types ==0.3.0.1, + proto-lens-protoc ==0.3.1.0, + protolude ==0.2.2, + proxied ==0.3, + psql-helpers ==0.1.0.0, + psqueues ==0.2.7.0, + publicsuffix ==0.20180513, + pureMD5 ==2.1.3, + purescript-bridge ==0.13.0.0, + pure-zlib ==0.6.4, + pushbullet-types ==0.4.1.0, + qm-interpolated-string ==0.3.0.0, + qnap-decrypt ==0.3.2, + QuasiText ==0.1.2.6, + quickbench ==1.0, + QuickCheck ==2.11.3, + quickcheck-arbitrary-adt ==0.3.1.0, + quickcheck-assertions ==0.3.0, + quickcheck-instances ==0.3.18, + quickcheck-io ==0.2.0, + quickcheck-simple ==0.1.0.4, + quickcheck-special ==0.1.0.6, + quickcheck-text ==0.1.2.1, + quickcheck-unicode ==1.0.1.0, + quicklz ==1.5.0.11, + rainbow ==0.30.0.2, + rainbox ==0.20.0.0, + rakuten ==0.1.1.4, + ramus ==0.1.2, + random ==1.1, + random-bytestring ==0.1.3.1, + random-fu ==0.2.7.0, + random-shuffle ==0.0.4, + random-source ==0.3.0.6, + random-tree ==0.6.0.5, + range-set-list ==0.1.3, + rank1dynamic ==0.4.0, + rank2classes ==1.1.0.1, + Rasterific ==0.7.3, + rasterific-svg ==0.3.3.1, + ratel ==1.0.5, + ratel-wai ==1.0.3, + ratio-int ==0.1.2, + rattletrap ==4.1.2, + rawfilepath ==0.2.4, + rawstring-qm ==0.2.3.0, + raw-strings-qq ==1.1, + rcu ==0.2.2, + rdf ==0.1.0.2, + rdtsc ==1.3.0.1, + re2 ==0.2, + readable ==0.3.1, + read-editor ==0.1.0.2, + read-env-var ==1.0.0.0, + rebase ==1.2.4, + record-dot-preprocessor ==0.1.1, + recursion-schemes ==5.0.3, + reducers ==3.12.3, + refact ==0.3.0.2, + references ==0.3.3.1, + ref-fd ==0.4.0.1, + refined ==0.2.3.0, + reflection ==2.1.4, + RefSerialize ==0.4.0, + regex-applicative ==0.3.3, + regex-applicative-text ==0.1.0.1, + regex-base ==0.93.2, + regex-compat ==0.95.1, + regex-compat-tdfa ==0.95.1.4, + regex-pcre ==0.94.4, + regex-pcre-builtin ==0.94.4.8.8.35, + regex-pcre-text ==0.94.0.1, + regex-posix ==0.95.2, + regex-tdfa ==1.2.3.1, + regex-tdfa-text ==1.0.0.3, + reinterpret-cast ==0.1.0, + relational-query ==0.12.0.1, + relational-query-HDBC ==0.7.0.1, + relational-record ==0.2.2.0, + relational-schemas ==0.1.6.2, + renderable ==0.2.0.1, + repa ==3.4.1.3, + repline ==0.1.7.0, + req ==1.1.0, + req-conduit ==1.0.0, + require ==0.2.1, + req-url-extra ==0.1.0.0, + resolv ==0.1.1.1, + resource-pool ==0.2.3.2, + resourcet ==1.2.1, + rest-stringmap ==0.2.0.7, + result ==0.2.6.0, + rethinkdb-client-driver ==0.0.25, + retry ==0.7.6.2, + rev-state ==0.1.2, + rfc5051 ==0.1.0.3, + rhine ==0.4.0.1, + riak ==1.1.2.5, + riak-protobuf ==0.23.0.0, + rio ==0.1.4.0, + rio-orphans ==0.1.1.0, + rng-utils ==0.3.0, + roles ==0.2.0.0, + rot13 ==0.2.0.1, + RSA ==2.3.0, + rss-conduit ==0.4.2.1, + rts installed, + runmemo ==1.0.0.1, + rvar ==0.2.0.3, + s3-signer ==0.5.0.0, + safe ==0.3.17, + safecopy ==0.9.4.1, + safe-exceptions ==0.1.7.0, + safe-exceptions-checked ==0.1.0, + safe-foldable ==0.1.0.0, + safeio ==0.0.5.0, + safe-money ==0.6, + SafeSemaphore ==0.10.1, + saltine ==0.1.0.1, + salve ==1.0.4, + sample-frame ==0.0.3, + sample-frame-np ==0.0.4.1, + sampling ==0.3.3, + sandi ==0.4.2, + sandman ==0.2.0.1, + say ==0.1.0.0, + sbp ==2.3.16, + scalendar ==1.2.0, + SCalendar ==1.1.0, + scalpel ==0.5.1, + scalpel-core ==0.5.1, + scanner ==0.2, + scientific ==0.3.6.2, + scotty ==0.11.2, + scrypt ==0.5.0, + sdl2 ==2.4.1.0, + sdl2-gfx ==0.2, + sdl2-image ==2.0.0, + sdl2-mixer ==1.1.0, + sdl2-ttf ==2.1.0, + search-algorithms ==0.3.0, + securemem ==0.1.10, + SegmentTree ==0.3, + selda ==0.2.0.0, + selda-postgresql ==0.1.7.2, + selda-sqlite ==0.1.6.0, + semigroupoid-extras ==5, + semigroupoids ==5.2.2, + semigroups ==0.18.5, + semiring-simple ==1.0.0.1, + semver ==0.3.3.1, + sendfile ==0.7.9, + seqalign ==0.2.0.4, + serf ==0.1.1.0, + servant ==0.14.1, + servant-auth ==0.3.2.0, + servant-auth-client ==0.3.3.0, + servant-auth-docs ==0.2.10.0, + servant-auth-server ==0.4.0.0, + servant-auth-swagger ==0.2.10.0, + servant-blaze ==0.8, + servant-cassava ==0.10, + servant-checked-exceptions ==2.0.0.0, + servant-checked-exceptions-core ==2.0.0.0, + servant-client ==0.14, + servant-client-core ==0.14.1, + servant-dhall ==0.1.0.1, + servant-docs ==0.11.2, + servant-elm ==0.5.0.0, + servant-exceptions ==0.1.1, + servant-foreign ==0.11.1, + servant-github-webhook ==0.4.1.0, + servant-js ==0.9.3.2, + servant-JuicyPixels ==0.3.0.4, + servant-lucid ==0.8.1, + servant-mock ==0.8.4, + servant-pandoc ==0.5.0.0, + servant-ruby ==0.8.0.1, + servant-server ==0.14.1, + servant-static-th ==0.2.2.0, + servant-streaming ==0.3.0.0, + servant-streaming-client ==0.3.0.0, + servant-streaming-server ==0.3.0.0, + servant-swagger ==1.1.5, + servant-swagger-ui ==0.3.0.3.13.2, + servant-swagger-ui-core ==0.3.1, + servant-tracing ==0.1.0.2, + servant-websockets ==1.1.0, + servant-yaml ==0.1.0.0, + serverless-haskell ==0.6.2, + serversession ==1.0.1, + serversession-frontend-wai ==1.0, + servius ==1.2.1.0, + ses-html ==0.4.0.0, + set-cover ==0.0.9, + setenv ==0.1.1.3, + setlocale ==1.0.0.6, + sexp-grammar ==2.0.1, + SHA ==1.6.4.4, + shake ==0.16.4, + shake-language-c ==0.12.0, + shakespeare ==2.0.15, + ShellCheck ==0.5.0, + shell-conduit ==4.7.0, + shell-escape ==0.2.0, + shelltestrunner ==1.9, + shelly ==1.8.1, + shortcut-links ==0.4.2.0, + should-not-typecheck ==2.1.0, + show-combinators ==0.1.0.0, + show-prettyprint ==0.2.2, + siggy-chardust ==1.0.0, + signal ==0.1.0.4, + silently ==1.2.5, + simple-reflect ==0.3.3, + simple-sendfile ==0.2.27, + simplest-sqlite ==0.1.0.0, + simple-vec3 ==0.4.0.7, + since ==0.0.0, + singleton-bool ==0.1.4, + singleton-nats ==0.4.1, + singletons ==2.4.1, + siphash ==1.0.3, + size-based ==0.1.1.0, + skein ==1.0.9.4, + skylighting ==0.7.2, + skylighting-core ==0.7.2, + slack-web ==0.2.0.6, + slave-thread ==1.0.2, + smallcheck ==1.1.5, + smoothie ==0.4.2.9, + smtp-mail ==0.1.4.6, + snap-blaze ==0.2.1.5, + snap-core ==1.0.3.2, + snappy ==0.2.0.2, + snap-server ==1.1.0.0, + snowflake ==0.1.1.1, + soap ==0.2.3.6, + soap-openssl ==0.1.0.2, + soap-tls ==0.1.1.4, + socket-activation ==0.1.0.2, + socks ==0.5.6, + sort ==1.0.0.0, + sorted-list ==0.2.1.0, + sourcemap ==0.1.6, + sox ==0.2.3, + soxlib ==0.0.3, + sparse-linear-algebra ==0.3.1, + special-values ==0.1.0.0, + speculate ==0.3.2, + speculation ==1.5.0.3, + speedy-slice ==0.3.0, + sphinx ==0.6.0.2, + Spintax ==0.3.3, + splice ==0.6.1.1, + split ==0.2.3.3, + splitmix ==0.0.1, + spoon ==0.3.1, + spreadsheet ==0.1.3.7, + sqlite-simple ==0.4.16.0, + sqlite-simple-errors ==0.6.1.0, + sql-words ==0.1.6.2, + squeal-postgresql ==0.3.1.0, + srcloc ==0.5.1.2, + stache ==1.2.1, + stack ==1.7.1, + starter ==0.3.0, + state-codes ==0.1.3, + stateref ==0.3, + statestack ==0.2.0.5, + StateVar ==1.1.1.0, + static-canvas ==0.2.0.3, + static-text ==0.2.0.1, + statistics ==0.14.0.2, + stb-image-redux ==0.2.1.2, + step-function ==0.2, + stm ==2.4.5.0, + stm-chans ==3.0.0.4, + stm-conduit ==4.0.0, + stm-containers ==0.2.16, + stm-delay ==0.1.1.1, + stm-extras ==0.1.0.3, + STMonadTrans ==0.4.3, + stm-split ==0.0.2, + stm-stats ==0.2.0.0, + stopwatch ==0.1.0.5, + storable-complex ==0.2.2, + storable-endian ==0.2.6, + storable-record ==0.0.4, + storable-tuple ==0.0.3.3, + storablevector ==0.2.13, + store ==0.5.0, + store-core ==0.4.4, + Strafunski-StrategyLib ==5.0.1.0, + stratosphere ==0.24.3, + streaming ==0.2.1.0, + streaming-attoparsec ==1.0.0, + streaming-bytestring ==0.1.6, + streaming-commons ==0.2.1.0, + streaming-wai ==0.1.1, + streamly ==0.3.0, + streamproc ==1.6.2, + streams ==3.3, + strict ==0.3.2, + strict-base-types ==0.6.1, + strict-concurrency ==0.2.4.2, + stringbuilder ==0.5.1, + string-class ==0.1.7.0, + string-combinators ==0.6.0.5, + string-conv ==0.1.2, + string-conversions ==0.4.0.1, + string-qq ==0.0.2, + stringsearch ==0.3.6.6, + string-transform ==1.1.0, + strive ==5.0.6, + structs ==0.1.1, + stylish-haskell ==0.9.2.0, + summoner ==1.0.4, + sum-type-boilerplate ==0.1.1, + sundown ==0.6, + superbuffer ==0.3.1.1, + svg-builder ==0.1.1, + SVGFonts ==1.7, + svg-tree ==0.6.2.2, + swagger ==0.3.0, + swagger2 ==2.2.2, + swish ==0.9.2.1, + syb ==0.7, + symbol ==0.2.4, + symengine ==0.1.2.0, + sysinfo ==0.1.1, + system-argv0 ==0.1.1, + system-fileio ==0.3.16.3, + system-filepath ==0.4.14, + tabular ==0.2.2.7, + tagchup ==0.4.1, + tagged ==0.8.5, + tagged-binary ==0.2.0.1, + tagged-identity ==0.1.2, + tagged-transformer ==0.8.1, + tagshare ==0.0, + tagsoup ==0.14.6, + tagstream-conduit ==0.5.5.3, + tao ==1.0.0, + tao-example ==1.0.0, + tar ==0.5.1.0, + tar-conduit ==0.2.3.1, + tardis ==0.4.1.0, + tasty ==1.1.0.2, + tasty-ant-xml ==1.1.4, + tasty-dejafu ==1.2.0.7, + tasty-discover ==4.2.1, + tasty-expected-failure ==0.11.1.1, + tasty-golden ==2.3.2, + tasty-hedgehog ==0.2.0.0, + tasty-hspec ==1.1.5, + tasty-hunit ==0.10.0.1, + tasty-kat ==0.0.3, + tasty-program ==1.0.5, + tasty-quickcheck ==0.10, + tasty-silver ==3.1.11, + tasty-smallcheck ==0.8.1, + tasty-stats ==0.2.0.4, + tasty-th ==0.1.7, + TCache ==0.12.1, + tce-conf ==1.3, + tcp-streams ==1.0.1.0, + tcp-streams-openssl ==1.0.1.0, + tdigest ==0.2.1, + teardown ==0.5.0.0, + telegram-bot-simple ==0.2.0, + template-haskell installed, + temporary ==1.3, + temporary-rc ==1.2.0.3, + tensorflow-test ==0.1.0.0, + terminal-size ==0.3.2.1, + terminfo installed, + test-framework ==0.8.2.0, + test-framework-hunit ==0.3.0.2, + test-framework-quickcheck2 ==0.3.0.4, + test-framework-smallcheck ==0.2, + test-framework-th ==0.2.4, + testing-feat ==1.1.0.0, + testing-type-modifiers ==0.1.0.1, + texmath ==0.11.0.1, + text ==1.2.3.0, + text-binary ==0.2.1.1, + text-builder ==0.5.1.1, + text-conversions ==0.3.0, + text-icu ==0.7.0.1, + text-latin1 ==0.3.1, + text-ldap ==0.1.1.12, + textlocal ==0.1.0.5, + text-manipulate ==0.2.0.1, + text-metrics ==0.3.0, + text-postgresql ==0.0.3.1, + text-printer ==0.5, + text-short ==0.1.2, + text-show ==3.7.4, + text-show-instances ==3.6.5, + text-zipper ==0.10.1, + tfp ==1.0.0.2, + tf-random ==0.5, + th-abstraction ==0.2.8.0, + th-data-compat ==0.0.2.6, + th-desugar ==1.8, + these ==0.7.4, + th-expand-syns ==0.4.4.0, + th-extras ==0.0.0.4, + th-lift ==0.7.10, + th-lift-instances ==0.1.11, + th-nowq ==0.1.0.2, + th-orphans ==0.13.6, + th-printf ==0.5.1, + thread-hierarchy ==0.3.0.0, + thread-local-storage ==0.2, + threads ==0.5.1.6, + threads-extras ==0.1.0.2, + threepenny-gui ==0.8.2.4, + th-reify-compat ==0.0.1.4, + th-reify-many ==0.1.8, + throttle-io-stream ==0.2.0.1, + through-text ==0.1.0.0, + throwable-exceptions ==0.1.0.9, + th-strict-compat ==0.1.0.1, + th-utilities ==0.2.0.1, + tibetan-utils ==0.1.1.5, + tile ==0.3.0.0, + time installed, + time-compat ==0.1.0.3, + timeit ==2.0, + timelens ==0.2.0.2, + time-lens ==0.4.0.2, + time-locale-compat ==0.1.1.4, + time-locale-vietnamese ==1.0.0.0, + time-parsers ==0.1.2.0, + timerep ==2.0.0.2, + timezone-olson ==0.1.9, + timezone-series ==0.1.9, + tintin ==1.9.1, + tinylog ==0.14.1, + titlecase ==1.0.1, + tls ==1.4.1, + tls-debug ==0.4.5, + tls-session-manager ==0.0.0.2, + tmapchan ==0.0.3, + tmapmvar ==0.0.4, + tmp-postgres ==0.1.1.1, + tomland ==0.3, + tostring ==0.2.1.1, + transaction ==0.1.1.3, + transformers installed, + transformers-base ==0.4.5.2, + transformers-bifunctors ==0.1, + transformers-compat ==0.6.2, + transformers-fix ==1.0, + transformers-lift ==0.2.0.1, + traverse-with-class ==1.0.0.0, + tree-diff ==0.0.1, + tree-fun ==0.8.1.0, + trifecta ==2, + triplesec ==0.1.2.0, + tsv2csv ==0.1.0.2, + ttrie ==0.1.2.1, + tuple ==0.3.0.2, + tuples-homogenous-h98 ==0.1.1.0, + tuple-sop ==0.3.1.0, + tuple-th ==0.2.5, + turtle ==1.5.10, + typed-process ==0.2.2.0, + type-fun ==0.1.1, + type-hint ==0.1, + type-level-integers ==0.0.1, + type-level-kv-list ==1.1.0, + type-level-numbers ==0.1.1.1, + typelits-witnesses ==0.3.0.2, + typenums ==0.1.1.1, + type-of-html ==1.4.0.1, + type-of-html-static ==0.1.0.2, + type-operators ==0.1.0.4, + type-spec ==0.3.0.1, + typography-geometry ==1.0.0.1, + tz ==0.1.3.1, + tzdata ==0.1.20180122.0, + uglymemo ==0.1.0.1, + unbounded-delays ==0.1.1.0, + unbound-generics ==0.3.3, + unboxed-ref ==0.4.0.0, + uncertain ==0.3.1.0, + unconstrained ==0.1.0.2, + unfoldable ==0.9.6, + unfoldable-restricted ==0.0.3, + unicode ==0.0.1, + unicode-show ==0.1.0.2, + unicode-transforms ==0.3.4, + unification-fd ==0.10.0.1, + union ==0.1.1.2, + union-find ==0.2, + uniplate ==1.6.12, + uniprot-kb ==0.1.2.0, + uniq-deep ==1.1.0.0, + unique ==0, + unit-constraint ==0.0.0, + universe ==1.0, + universe-base ==1.0.2.1, + universe-instances-base ==1.0, + universe-instances-extended ==1.0.0.1, + universe-instances-trans ==1.0.0.1, + universe-reverse-instances ==1.0, + universum ==1.2.0, + unix installed, + unix-bytestring ==0.3.7.3, + unix-compat ==0.5.0.1, + unix-time ==0.3.8, + unliftio ==0.2.7.0, + unliftio-core ==0.1.1.0, + unlit ==0.4.0.0, + unordered-containers ==0.2.9.0, + unordered-intmap ==0.1.1, + unsafe ==0.0, + uri-bytestring ==0.3.2.0, + uri-encode ==1.5.0.5, + uri-templater ==0.3.1.0, + urlpath ==9.0.0, + users ==0.5.0.0, + users-postgresql-simple ==0.5.0.2, + users-test ==0.5.0.1, + utf8-light ==0.4.2, + utf8-string ==1.0.1.1, + util ==0.1.10.1, + utility-ht ==0.0.14, + uuid ==1.3.13, + uuid-types ==1.0.3, + validation ==1, + validity ==0.7.0.0, + validity-aeson ==0.2.0.2, + validity-bytestring ==0.3.0.2, + validity-containers ==0.3.1.0, + validity-path ==0.3.0.1, + validity-scientific ==0.2.0.1, + validity-text ==0.3.0.1, + validity-time ==0.2.0.1, + validity-unordered-containers ==0.2.0.1, + validity-uuid ==0.1.0.1, + validity-vector ==0.2.0.1, + valor ==0.1.0.0, + vault ==0.3.1.1, + vec ==0.1, + vector ==0.12.0.1, + vector-algorithms ==0.7.0.1, + vector-binary-instances ==0.2.4, + vector-buffer ==0.4.1, + vector-builder ==0.3.4.1, + vector-bytes-instances ==0.1.1, + vector-instances ==3.4, + vector-mmap ==0.0.3, + vector-sized ==1.0.4.0, + vector-space ==0.13, + vector-split ==1.0.0.2, + vector-th-unbox ==0.2.1.6, + vectortiles ==1.4.0, + verbosity ==0.2.3.0, + versions ==3.4.0.1, + ViennaRNAParser ==1.3.3, + viewprof ==0.0.0.19, + vinyl ==0.8.1.1, + vivid ==0.3.0.2, + vivid-osc ==0.3.0.0, + vivid-supercollider ==0.3.0.0, + void ==0.7.2, + vty ==5.21, + wai ==3.2.1.2, + wai-app-static ==3.1.6.2, + wai-cli ==0.1.1, + wai-conduit ==3.0.0.4, + wai-cors ==0.2.6, + wai-eventsource ==3.0.0, + wai-extra ==3.0.23.0, + wai-handler-launch ==3.0.2.4, + wai-logger ==2.3.2, + wai-middleware-caching ==0.1.0.2, + wai-middleware-caching-lru ==0.1.0.0, + wai-middleware-consul ==0.1.0.2, + wai-middleware-crowd ==0.1.4.2, + wai-middleware-metrics ==0.2.4, + wai-middleware-static ==0.8.2, + wai-middleware-travisci ==0.1.0, + wai-predicates ==0.10.0, + wai-session ==0.3.3, + wai-session-postgresql ==0.2.1.2, + wai-slack-middleware ==0.2.0, + wai-transformers ==0.1.0, + wai-websockets ==3.0.1.2, + warp ==3.2.23, + warp-tls ==3.2.4.3, + warp-tls-uid ==0.2.0.5, + wave ==0.1.5, + wcwidth ==0.0.2, + web3 ==0.7.3.0, + webdriver ==0.8.5, + webex-teams-api ==0.2.0.0, + webex-teams-conduit ==0.2.0.0, + webex-teams-pipes ==0.2.0.0, + web-plugins ==0.2.9, + web-routes ==0.27.14.2, + web-routes-hsp ==0.24.6.1, + web-routes-wai ==0.24.3.1, + webrtc-vad ==0.1.0.3, + websockets ==0.12.5.1, + websockets-snap ==0.10.3.0, + weeder ==1.0.6, + weigh ==0.0.12, + wide-word ==0.1.0.6, + wikicfp-scraper ==0.1.0.9, + wild-bind ==0.1.2.1, + wild-bind-x11 ==0.2.0.4, + Win32-notify ==0.3.0.3, + wire-streams ==0.1.1.0, + withdependencies ==0.2.4.2, + witherable ==0.2, + with-location ==0.1.0, + witness ==0.4, + wizards ==1.0.2, + wl-pprint-annotated ==0.1.0.0, + wl-pprint-console ==0.1.0.1, + wl-pprint-extras ==3.5.0.5, + wl-pprint-terminfo ==3.7.1.4, + wl-pprint-text ==1.2.0.0, + word24 ==2.0.1, + word8 ==0.1.3, + word-trie ==0.3.0, + word-wrap ==0.4.1, + world-peace ==0.1.0.0, + wrap ==0.0.0, + wreq ==0.5.2.1, + wreq-stringless ==0.5.9.1, + writer-cps-full ==0.1.0.0, + writer-cps-lens ==0.1.0.1, + writer-cps-morph ==0.1.0.2, + writer-cps-mtl ==0.1.1.4, + writer-cps-transformers ==0.1.1.3, + ws ==0.0.4, + wuss ==1.1.10, + X11 ==1.9, + X11-xft ==0.3.1, + x11-xim ==0.0.9.0, + x509 ==1.7.3, + x509-store ==1.6.6, + x509-system ==1.6.6, + x509-validation ==1.6.10, + Xauth ==0.1, + xdg-basedir ==0.2.2, + xeno ==0.3.4, + xenstore ==0.1.1, + xhtml ==3000.2.2.1, + xls ==0.1.1, + xlsx ==0.7.2, + xml ==1.3.14, + xml-basic ==0.1.3, + xmlbf ==0.4.1, + xmlbf-xeno ==0.1.1, + xml-conduit ==1.8.0, + xml-conduit-parse ==0.3.1.2, + xml-conduit-writer ==0.1.1.2, + xmlgen ==0.6.2.2, + xml-hamlet ==0.5.0, + xml-html-qq ==0.1.0.1, + xml-indexed-cursor ==0.1.1.0, + xml-isogen ==0.3.0, + xml-lens ==0.1.6.3, + xml-picklers ==0.3.6, + xml-to-json ==2.0.1, + xml-to-json-fast ==2.0.0, + xml-types ==0.3.6, + xss-sanitize ==0.3.6, + xxhash-ffi ==0.2.0.0, + yaml ==0.8.32, + yeshql ==4.1.0.0, + yeshql-core ==4.1.0.0, + yeshql-hdbc ==4.1.0.0, + yesod ==1.6.0, + yesod-alerts ==0.1.2.0, + yesod-auth ==1.6.4.1, + yesod-auth-fb ==1.9.0, + yesod-auth-hashdb ==1.7, + yesod-bin ==1.6.0.3, + yesod-core ==1.6.6, + yesod-csp ==0.2.4.0, + yesod-eventsource ==1.6.0, + yesod-fb ==0.5.0, + yesod-form ==1.6.2, + yesod-form-bootstrap4 ==1.0.2, + yesod-gitrepo ==0.3.0, + yesod-gitrev ==0.2.0.0, + yesod-newsfeed ==1.6.1.0, + yesod-paginator ==1.1.0.0, + yesod-persistent ==1.6.0, + yesod-recaptcha2 ==0.2.4, + yesod-sitemap ==1.6.0, + yesod-static ==1.6.0, + yesod-test ==1.6.5, + yesod-text-markdown ==0.1.10, + yesod-websockets ==0.3.0, + yes-precure5-command ==5.5.3, + yi-language ==0.17.1, + yi-rope ==0.11, + yjtools ==0.9.18, + yoga ==0.0.0.2, + youtube ==0.2.1.1, + zero ==0.1.4, + zeromq4-haskell ==0.7.0, + zeromq4-patterns ==0.3.1.0, + zim-parser ==0.2.1.0, + zip ==1.1.0, + zip-archive ==0.3.3, + zippers ==0.2.5, + zip-stream ==0.1.1, + zlib ==0.6.2, + zlib-bindings ==0.1.1.5, + zlib-lens ==0.1.2.1, + zot ==0.0.3, + zstd ==0.1.0.0, + ztail ==1.2.0.2 diff --git a/SolArduino-core/haskell/solarduino-haskell/solarduino-haskell.cabal b/SolArduino-core/haskell/solarduino-haskell/solarduino-haskell.cabal new file mode 100644 index 0000000..eaec1a9 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/solarduino-haskell.cabal @@ -0,0 +1,62 @@ +name: solarduino-haskell +version: 0.1.0.0 +-- synopsis: +-- description: +homepage: https://github.com/PHPirates/solarduino-haskell#readme +license: ISC +license-file: LICENSE +author: Thomas Schouten +maintainer: k3l1n6i2y5k7d1e3@deltadak.slack.com +copyright: MIT +category: Math +build-type: Simple +extra-source-files: README.md +cabal-version: >=1.10 + +library + hs-source-dirs: src + exposed-modules: PowerFunctions + , SunPosition + , AngleFunctions + , TimeConverters + , SummerTime + build-depends: base >= 4.7 && < 5 + , astro + , golden-haskell + , time + , tuple + , criterion + , list-extras + , directory + default-language: Haskell2010 + +executable solarduino-haskell + hs-source-dirs: app + main-is: Main.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base + , solarduino-haskell + , criterion + , astro + , time + default-language: Haskell2010 + +test-suite solarduino-haskell-test + type: exitcode-stdio-1.0 + hs-source-dirs: test + main-is: CoreTest.hs + build-depends: base + , solarduino-haskell + , tasty-hunit + , tasty + , astro + , golden-haskell + , time + , tuple + , directory + ghc-options: -threaded -rtsopts -with-rtsopts=-N + default-language: Haskell2010 + +source-repository head + type: git + location: https://github.com/PHPirates/solarduino-haskell diff --git a/SolArduino-core/haskell/solarduino-haskell/src/AngleFunctions.hs b/SolArduino-core/haskell/solarduino-haskell/src/AngleFunctions.hs new file mode 100644 index 0000000..003d2b6 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/src/AngleFunctions.hs @@ -0,0 +1,115 @@ +module AngleFunctions (bestAngle, bestAnglesDay, bestAnglesMoreDays, writeBestAnglesToFile) where + +import GoldenSection +import PowerFunctions +import SunPosition + +import Data.Astro.Time.JulianDate +import Data.Astro.Types +import Data.List +import Data.List.Extras.Argmax +import Data.Maybe +import Data.Time.Calendar +import Data.Time.Calendar.MonthDay +import Data.Time.Calendar.OrdinalDate +import Data.Tuple.Select +import TimeConverters (julianDateToUnixTime, + toLocalDate) + +-- | Find the optimal angle over a certain time period. +-- This method finds a certain number of sun positions and then optimizes the angle such that the sum of the total of power from the sun at each sun position is maximal. +-- Example: +-- import Data.Astro.Time.JulianDate +-- bestAngle (toUniversalTime 2018 8 11 3 0 0) (toUniversalTime 2018 8 11 22 0 0) 100 +bestAngle :: JulianDate -- ^ Start time + -> JulianDate -- ^ End time + -> Int -- ^ Number of sun positions to sample for this interval. More is slower but more precise. + -> Double -- ^ Optimal angle +bestAngle jdStart jdEnd nrSunPos = betterAngle + -- We need to convert to JulianDate to use the times + where + intervalLengthInHours = 24 * numberOfDays jdStart jdEnd + -- Time between sampled sun positions, such that the total number of sun positions will be as given. + interval = intervalLengthInHours / (fromIntegral nrSunPos - 1) + listOfSunPos = [getSunPosition (addHours (DH n) jdStart) | n <- take nrSunPos [0,interval ..]] + -- In general the start date may not be the same as the end date, but we take the first one to optimize with. + -- In practice it will be the same day, as setting the solar panels on an angle for multiple days is uncommon. + date = toYMDHMS jdStart + year = sel1 date + month = sel2 date + day = sel3 date + dayOfYear = monthAndDayToDayOfYear (isLeapYear year) month day + -- Function to optimize + f = totalPower listOfSunPos dayOfYear + optimizedAngle = fst $ goldenSectionSearch f 0 90 0.01 + -- Sometimes, the maximum is at one of the ends of the interval but the totalPower function can be flat just until a peak at the end, in which case goldenSectionSearch fails to find the maximum. + -- Therefore, we take a maximum with values at either end just to be sure. + betterAngle = argmax f [0, optimizedAngle, 90] + +-- | Find a list of angles and corresponding times for a certain day. +-- The result is a list of pairs (a, t), the solar panels should be set at angle a at time t. +-- Example: +-- import Data.Astro.Time.JulianDate +-- bestAnglesDay (toLocalDate 2018 8 11) 1000 10 +bestAnglesDay :: LocalCivilDate -- ^ Date for which to find the optimal angles + -> Int -- ^ Number of sun positions to sample for this day. More is slower but more precise. + -> Int -- ^ Number of times to adjust the solar panels + -> [(Double, JulianDate)] -- ^ Angle, time, length at least the number of times +bestAnglesDay date nrSunPos nrAdjustments = + take nrAdjustments [ -- This ensures not too many elements are returned + ( bestAngle + (addHours (DH t) sunriseDate) + (addHours (DH (t + interval)) sunriseDate) + (nrSunPos `div` nrAdjustments) -- Use integer division to get an integer number of samples + , addHours (DH t) sunriseDate) + | t <- [0,interval..] + ] + where + -- Hour of the day at which to start, by default 0:00 + defaultSunrise = lcdDate date + sunriseDate = fromMaybe defaultSunrise $ getSunrise date + + -- Hour of the day at which to end, by default 24:00 + defaultSunset = addHours 24 defaultSunrise + sunsetDate = fromMaybe defaultSunset $ getSunset date + + -- Number of hours which the sun is up + sunShineHours = 24 * numberOfDays sunriseDate sunsetDate + + -- The solar panels move after each interval, of this length + interval = sunShineHours / fromIntegral nrAdjustments + +-- | Find the optimal angles for a certain number of days, starting with the start date up to and including the end date. +-- Example: +-- import Data.Time.Calendar +-- bestAnglesMoreDays (fromGregorian 2018 8 15) (fromGregorian 2018 9 1) 1000 10 +bestAnglesMoreDays :: Day -- ^ Start date + -> Day -- ^ End date + -> Int -- ^ Number of sun positions to sample per day + -> Int -- ^ Number of times to adjust the solar panels per day + -> [(Double, JulianDate)] -- ^ List of pairs of angle and JulianDate (time). For each pair, the panels should be set at the angle at that time. +bestAnglesMoreDays startDate endDate nrSunPos nrAdjustments = + concat [oneDay (addDays n startDate) | n <- [0..nrDays]] + where -- This function wraps the function which provides optimal angles for one day + oneDay d = bestAnglesDay (toLocalDate (sel1 tuple) (sel2 tuple) (sel3 tuple)) nrSunPos nrAdjustments + where tuple = toGregorian d + nrDays = abs $ diffDays startDate endDate + +-- | Find the optimal angles from the start date up to and including the end date, and appends the result to a file. +-- Example: +-- import Data.Time.Calendar +-- writeBestAnglesToFile "angles.times" (fromGregorian 2018 8 15) (fromGregorian 2018 8 16) 1000 10 +-- This function has been tested to run in 1m35s for an interval of a year, 15m28s for 10 years. +writeBestAnglesToFile :: FilePath -- ^ File to write the result to + -> Day -- ^ Start date + -> Day -- ^ End date + -> Int -- ^ Number of sun positions to sample per day + -> Int -- ^ Number of times to adjust the solar panels per day + -> IO() -- ^ The file will contain a list of pairs, each pair consisting of a angle and Unix time (seconds). For each pair, the panels should be set at the angle at that time. +writeBestAnglesToFile filePath startDate endDate nrSunPos nrAdjustments = + appendFile filePath (intercalate "\n" anglesStringList) + where angles = bestAnglesMoreDays startDate endDate nrSunPos nrAdjustments + tupleToString tuple = show (fst tuple) ++ " " ++ init (show $ julianDateToUnixTime $ snd tuple) -- Take init to remove the 's' at the end + anglesStringList = map tupleToString angles + printFinishMessage :: IO () -> IO () + printFinishMessage x = putStrLn "Finished." \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/src/PowerFunctions.hs b/SolArduino-core/haskell/solarduino-haskell/src/PowerFunctions.hs new file mode 100644 index 0000000..c4bad90 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/src/PowerFunctions.hs @@ -0,0 +1,44 @@ +module PowerFunctions (directPower, sunMisalignment, totalPower) where + +import Data.Astro.Coordinate +import Data.Astro.Types + +-- | Calculate the solar insolation: the power in W/m^2 the solar panels receive from the sun under a certain angle. +-- The formula is from http://www.powerfromthesun.net/Book/chapter02/chapter02.html#ZEqnNum929295 +directPower :: + Int -- ^ The day of the year + -> Double -- ^ The angle the solar panels have with the sun, in radians + -> Double -- ^ The power the panels receive from the sun in W/m^2 +directPower n theta + | cos theta < 0 = 0 -- If the sun is more than 90 degrees off, the formula is not correct, and we set the insolation to 0 + | otherwise + -- Parameters from urban visibility haze model + = + let i = 1367 * (1 + 0.034 * cos (360 * fromIntegral n / 365.25)) + aZero = 0.2538 - 0.0063 * 36 + aOne = 0.7678 + 0.001 * 6.5 ^ 2 + k = 0.249 + 0.081 * 2.5 ^ 2 + -- Use the ** power because from a cosine results in a Double, not a fraction + in i * (aZero + aOne * (exp 1 ** (-k / cos theta))) + +-- | Find the misalignment of the solar panels with the sun +sunMisalignment :: HorizonCoordinates -- ^ Coordinates of the sun + -> Double -- ^ Solar panel angle in degrees + -> Double -- ^ Misalignment of the solar panels with the sun in degrees +sunMisalignment sunCoords alpha = + -- The realToFrac's are needed because sin/cos require doubles + realToFrac $ acos(cos(gammaPanels - gammaSun) * cos thetaSun * sin thetaPanels + cos thetaPanels * sin thetaSun ) + where -- We require an azimuth with 0 due South and negative to the east, hence we subtract 180 degrees + gammaSun = toRadians (hAzimuth sunCoords) - pi + thetaSun = toRadians $ hAltitude sunCoords + -- Same for the solar panels, but the azimuth is fixed + gammaPanels = toRadians (-22) + thetaPanels = realToFrac alpha * pi / 180 + +-- | Find the power received by the solar panels at each sun position and sum that. +-- This does not equal the total power received by the solar panels over a certain time period. Higher is better. +totalPower :: [HorizonCoordinates] -- ^ A list of sun positions + -> Int -- ^ Day of the year + -> Double -- ^ The angle of the solar panels + -> Double -- ^ Sum of the power received by the panels at each sun position +totalPower sunPositions day alpha = foldl (\acc sunPos -> acc + directPower day (sunMisalignment sunPos alpha ) ) 0 sunPositions diff --git a/SolArduino-core/haskell/solarduino-haskell/src/SummerTime.hs b/SolArduino-core/haskell/solarduino-haskell/src/SummerTime.hs new file mode 100644 index 0000000..41afa29 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/src/SummerTime.hs @@ -0,0 +1,22 @@ +module SummerTime (isSummerTime) where + +import Data.Time.Calendar +import Data.Time.Calendar.WeekDate +import Data.Tuple.Select + +-- | Uses only days, it does not take the exact hour into account at which summer time starts and ends. +isSummerTime :: Day -- ^ Date to check if summer time is active + -> Bool -- ^ Whether summer time is active +isSummerTime date = date > lastSundayMarch && date < lastSundayOctober + where + year = sel1 $ toGregorian date + -- Find last Sunday in March + aprilOne = fromGregorian year 4 1 + -- 1 is Monday, ..., 7 is Sunday + aprilOneWeekDay = sel3 $ toWeekDate aprilOne + -- Use the day number to find Sunday of the previous week: the last Sunday in March + lastSundayMarch = addDays (-(toInteger aprilOneWeekDay)) aprilOne + -- Same for end of summer time in October + novemberOne = fromGregorian year 11 1 + novemberOneWeekDay = sel3 $ toWeekDate novemberOne + lastSundayOctober = addDays (-(toInteger novemberOneWeekDay)) novemberOne \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/src/SunPosition.hs b/SolArduino-core/haskell/solarduino-haskell/src/SunPosition.hs new file mode 100644 index 0000000..ca726e1 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/src/SunPosition.hs @@ -0,0 +1,67 @@ +module SunPosition (getSunPosition, getSunPositionYMDHMS, getSunrise, getSunset, toLocalTime) where + +import Data.Astro.CelestialObject.RiseSet +import Data.Astro.Coordinate +import Data.Astro.Effects +import Data.Astro.Sun +import Data.Astro.Time.JulianDate +import Data.Astro.Types +import Data.Time.Calendar + +import TimeConverters + +-- 51.546545, 4.411744 +location :: GeographicCoordinates +location = GeoC (fromDMS 51 32 48) (fromDMS 4 24 42) + +-- | Get the sun position. Location is hard-coded. +getSunPosition :: JulianDate -- ^ Universal time + -> HorizonCoordinates -- ^ The altitude and azimuth, e.g. HC {hAltitude = DD 49.312050979507404, hAzimuth = DD 118.94723825710143} +getSunPosition julianDate = ec1ToHC location julianDate equatorialCoordinates + where equatorialCoordinates = sunPosition2 julianDate + +-- | Get the sun position from local time. the time given should not take winter/summer time into account. Location is hard-coded. +getSunPositionYMDHMS :: Integer -- ^ Year + -> Int -- ^ Month + -> Int -- ^ Day + -> Int -- ^ Hour + -> Int -- ^ Minute + -> TimeBaseType -- ^ Second + -> HorizonCoordinates -- ^ The altitude and azimuth, e.g. HC {hAltitude = DD 49.312050979507404, hAzimuth = DD 118.94723825710143} +getSunPositionYMDHMS year month day hour min sec = getSunPosition $ toUniversalTime year month day hour min sec + +-- | Get sunrise, location is hard-coded. +-- Example: +-- import Data.Maybe +-- date = toLocalDate 2018 8 13 +-- defaultTime = toUniversalTime 2018 8 13 10 0 0 +-- sunrise = fromMaybe defaultTime $ getSunrise date +getSunrise :: LocalCivilDate -- ^ Date: day + -> Maybe JulianDate -- ^ Time of sunrise, universal time +getSunrise date = fmap localToJulianDate justSunrisetime + -- Get a RiseSetMB which is a data type with sunrise and sunset + where + -- A vertical shift like 0.833333 is a 'good value' according to the docs + riseset = sunRiseAndSet location 0.833333 date + -- This function is to unpack the RiseSetMB data + getOnlySunrise (RiseSet sunrise sunset) = sunrise + -- The sunrise is a Maybe Tuple, so we get the first element (the time, second one is the azimuth) as a Maybe LocalCivilTime + justSunrisetime = fst <$> getOnlySunrise riseset + +-- | Get sunset, location is hard-coded. +-- Example: +-- import Data.Maybe +-- date = toLocalDate 2018 8 13 +-- defaultTime = toUniversalTime 2018 8 13 10 0 0 +-- sunset = fromMaybe defaultTime $ getSunset date +getSunset :: LocalCivilDate -- ^ Date: day + -> Maybe JulianDate -- ^ Time of sunset, universal time +getSunset date = fmap localToJulianDate justSunsettime + -- Get a RiseSetMB which is a data type with sunset and sunset + where +-- A vertical shift like 0.833333 is a 'good value' according to the docs + riseset = sunRiseAndSet location 0.833333 date + -- This function is to unpack the RiseSetMB data + getOnlySunset (RiseSet sunrise sunset) = sunset + -- The sunset is a Maybe Tuple, so we get the first element (the time, second one is the azimuth) as a Maybe LocalCivilTime + justSunsettime = fst <$> getOnlySunset riseset diff --git a/SolArduino-core/haskell/solarduino-haskell/src/TimeConverters.hs b/SolArduino-core/haskell/solarduino-haskell/src/TimeConverters.hs new file mode 100644 index 0000000..a24130c --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/src/TimeConverters.hs @@ -0,0 +1,88 @@ +module TimeConverters (toLocalTime, toLocalDate, toUniversalTime, julianToLocalTime, julianToLocalDate, localToJulianDate, gmtToCET, julianDateToUnixTime) where + +import Data.Astro.Time.JulianDate +import Data.Astro.Types +import Data.Time +import Data.Time.Calendar +import Data.Time.Calendar.WeekDate +import Data.Time.Clock.POSIX +import Data.Tuple.Select +import SummerTime + +-- | Take summer and winter time into account when converting to local time. +toLocalTime :: Integer -- ^ Year + -> Int -- ^ Month + -> Int -- ^ Day + -> Int -- ^ Hour + -> Int -- ^ Minute + -> TimeBaseType -- ^ Second + -> LocalCivilTime -- ^ Local time including winter/summer time +toLocalTime year month day hour min sec + | isSummerTime $ fromGregorian year month day = lctFromYMDHMS (DH 2) year month day hour min sec + | otherwise = lctFromYMDHMS (DH 1) year month day hour min sec + +-- | Take summer and winter time into account when converting to local date. +toLocalDate :: Integer -- ^ Year + -> Int -- ^ Month + -> Int -- ^ Day + -> LocalCivilDate -- ^ Local time including winter/summer time +toLocalDate year month day + | isSummerTime $ fromGregorian year month day = lcdFromYMD (DH 2) year month day + | otherwise = lcdFromYMD (DH 1) year month day + +-- | Convert the universal time to a local time, taking summer/winter time into account. +julianToLocalTime :: JulianDate -- ^ Universal time + -> LocalCivilTime -- ^ Local time +julianToLocalTime date = toLocalTime (sel1 tuple) (sel2 tuple) (sel3 tuple) (sel4 tuple) (sel5 tuple) (sel6 tuple) + where tuple = gmtToCET $ toYMDHMS date -- toYMDHMS returns time in GMT timezone + +-- | Convert time in the GMT timezone to CET which includes summer/winter time +-- Example: +-- timeInGmt = toYMDHMS (JD 2458344.9166666665) +-- localTime = toLocalTime $ gmtToCET timeInGmt +gmtToCET :: (Integer, Int, Int, Int, Int, TimeBaseType) -- ^ Time in GMT timezone + -> (Integer, Int, Int, Int, Int, TimeBaseType) -- ^ Time in CET timezone +gmtToCET tuple + | isSummerTime $ fromGregorian year month day = (year, month, day, hour + 2, min, sec) + | otherwise = (year, month, day, hour + 1, min, sec) + where year = sel1 tuple + month = sel2 tuple + day = sel3 tuple + hour = sel4 tuple + min = sel5 tuple + sec = sel6 tuple + +-- | Convert the local time to a universal time. +localToJulianDate :: LocalCivilTime -- ^ Local time + -> JulianDate -- ^ Universal time +-- To atake timezones into account, we go via a tuple and toUniversalTime instead of using lctUniversalTime +localToJulianDate lct = toUniversalTime (sel1 tuple) (sel2 tuple) (sel3 tuple) (sel4 tuple) (sel5 tuple) (sel6 tuple) + where tuple = lctToYMDHMS lct + +-- | Convert the universal time to a local date, taking summer/winter time into account. +julianToLocalDate :: JulianDate -- ^ Universal date + -> LocalCivilDate -- ^ Local date +julianToLocalDate date = toLocalDate (sel1 tuple) (sel2 tuple) (sel3 tuple) + where tuple = toYMDHMS date + +-- | Take summer and winter time into account when converting to universal time +toUniversalTime :: Integer -- ^ Year + -> Int -- ^ Month + -> Int -- ^ Day + -> Int -- ^ Hour + -> Int -- ^ Minute + -> TimeBaseType -- ^ Second + -> JulianDate -- ^ Local time including winter/summer time +toUniversalTime year month day hour min sec = lctUniversalTime $ toLocalTime year month day hour min sec + +-- | Convert JulianDate to Unix time. Both times are universal. The number of seconds is rounded to 1 decimal to avoid Haskell switching to scientific notation which it won't parse. +julianDateToUnixTime :: JulianDate -- ^ Time to convert + -> POSIXTime -- ^ Unix time +julianDateToUnixTime julianDate = utcTimeToPOSIXSeconds utc + -- We go via a string, because Haskell and time. + where tuple = toYMDHMS julianDate + string = show (sel1 tuple) ++ "-" ++ show (sel2 tuple) ++ "-" ++ show (sel3 tuple) ++ " " ++ show (sel4 tuple) ++ ":" ++ show (sel5 tuple) ++ ":" ++ show (truncate' (sel6 tuple) 1) + utc = parseTimeOrError True defaultTimeLocale "%Y-%-m-%-d %-H:%-M:%-S%Q" string + -- Rounding to number of decimal places n + truncate' x n = fromIntegral (floor (x * t)) / t + where t = 10^n diff --git a/SolArduino-core/haskell/solarduino-haskell/stack.yaml b/SolArduino-core/haskell/solarduino-haskell/stack.yaml new file mode 100644 index 0000000..e8ba721 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/stack.yaml @@ -0,0 +1,12 @@ +resolver: lts-12.4 + +packages: +- . + +# Dependency packages to be pulled from upstream that are not in the resolver +# using the same syntax as the packages field. +# (e.g., acme-missiles-0.3) +extra-deps: +- git: https://github.com/PHPirates/golden-haskell.git + commit: "ff69e9d" +- list-extras-0.4.1.4 \ No newline at end of file diff --git a/SolArduino-core/haskell/solarduino-haskell/test/CoreTest.hs b/SolArduino-core/haskell/solarduino-haskell/test/CoreTest.hs new file mode 100644 index 0000000..8cbfc38 --- /dev/null +++ b/SolArduino-core/haskell/solarduino-haskell/test/CoreTest.hs @@ -0,0 +1,228 @@ +import Data.Astro.Coordinate +import Data.Astro.Time.JulianDate +import Data.Astro.Types +import Data.Maybe (fromMaybe) +import Data.Time.Calendar +import Data.Tuple.Select +import GoldenSection (goldenSectionSearch) +import System.Directory +import Test.Tasty +import Test.Tasty.HUnit + +import AngleFunctions +import PowerFunctions +import SummerTime (isSummerTime) +import SunPosition +import TimeConverters + +-- to run tests in terminal: stack test +main = defaultMain tests + +-- Output is compared with the original Mathematica implementation +tests :: TestTree +tests = testGroup "Tests" [ + directPowerTest + , sunPositionTest + , sunMisalignmentTest + , totalPowerTest + , optimizationTest + , dstTest + , bestAngleTest + , sunriseTest + , sunsetTest + , bestAnglesDayTestAug + , bestAnglesDayTestOct + , utilTest + , bestAnglesMoreDaysTest + , toUnixTimeTest +-- , testWriteBestAnglesToFile + ] + +directPowerTest = + testGroup + "directPower Tests" + [ testCase "Test directPower 10 0.5" $ abs (directPower 10 0.5 - 489.607) `compare` 1.0e-3 @?= LT + , testCase "Test directPower 253 0.34" $ abs (directPower 253 0.34 - 526.962) `compare` 1.0e-3 @?= LT + , testCase "Test directPower 0 0" $ abs (directPower 0 0 - 576.186) `compare` 1.0e-3 @?= LT + , testCase "Test directPower 10 3.14" $ abs (directPower 10 3.14) `compare` 1.0e-3 @?= LT + ] + +sunPositionTest = + testGroup + "sunPosition tests" + [ testCase "Test altitude sunPosition 2018 7 30 10 29 0" + -- horizonCoords = HC (DD 38.89) (DD 111.15) -- altitude, azimuth + (abs (DD 38.89 - hAltitude (getSunPositionYMDHMS 2018 7 30 10 29 0)) `compare` 0.02 @?= LT ) + , testCase "Test azimuth sunPosition 2018 7 30 10 29 0" + (abs (DD 111.15 - hAzimuth (getSunPositionYMDHMS 2018 7 30 10 29 0)) `compare` 0.02 @?= LT ) + , testCase "Test altitude sunPosition 2019 1 1 6 0 0" + (abs (DD (-24.80) - hAltitude (getSunPositionYMDHMS 2019 1 1 6 0 0)) `compare` 0.02 @?= LT ) + , testCase "Test azimuth sunPosition 2019 1 1 6 0 0" + (abs (DD 96.37 - hAzimuth (getSunPositionYMDHMS 2019 1 1 6 0 0)) `compare` 0.02 @?= LT ) + , testCase "Test altitude sunPosition 2019 1 1 12 0 0" + (abs (DD 14.77 - hAltitude (getSunPositionYMDHMS 2019 1 1 12 0 0)) `compare` 0.02 @?= LT ) + , testCase "Test azimuth sunPosition 2019 1 1 12 0 0" + (abs (DD 169.12 - hAzimuth (getSunPositionYMDHMS 2019 1 1 12 0 0)) `compare` 0.02 @?= LT ) + , testCase "Test altitude via JulianDate" + (abs (DD 14.77 - hAltitude (getSunPosition (toUniversalTime 2019 1 1 12 0 0))) `compare` 0.02 @?= LT ) + ] + +sunMisalignmentTest = testGroup "sunMisalignment tests" [ + testCase "Test (getSunPosition 2018 8 1 15 57 0) 42" ( + abs (0.7983 - sunMisalignment (getSunPositionYMDHMS 2018 8 1 15 57 0) 42) `compare` 0.001 @?= LT + ) + , testCase "Test (getSunPosition 2020 11 24 17 15 0) 60" ( + abs (1.5407 - sunMisalignment (getSunPositionYMDHMS 2020 11 24 17 15 0) 60) `compare` 0.001 @?= LT + ) + ] + +totalPowerTest = testGroup "totalPower tests" [ + testCase "Test 145 24" + (abs (237.324 - + totalPower [getSunPositionYMDHMS 2018 8 1 18 35 0, getSunPositionYMDHMS 2018 3 3 16 35 0] 145 24 + ) `compare` 0.5 @?= LT) + , testCase "Test 2 5" + (abs (767.742 - + totalPower [getSunPositionYMDHMS 2018 2 1 20 35 0, getSunPositionYMDHMS 2018 3 17 12 0 0, getSunPositionYMDHMS 2018 3 17 12 10 0] 2 5 + ) `compare` 0.5 @?= LT) + , testCase "Test 212 0" + (abs (619.392 - + totalPower [getSunPositionYMDHMS 2018 8 1 19 0 0, getSunPositionYMDHMS 2018 8 1 19 10 0, getSunPositionYMDHMS 2018 8 1 19 16 0, getSunPositionYMDHMS 2018 8 1 19 18 0] 212 0 + ) `compare` 0.5 @?= LT) + ] + +optimizationTest = + testGroup + "Test the accuracy of the optimization method" + [ testCase "Test optimizing directPower convergence" $ + (snd result - fst result) `compare` 1e-5 @?= LT + , testCase "Test optimizing directPower fst result" $ + abs ( negate $ fst result) `compare` 1e-5 @?= LT + , testCase "Test optimizing directPower snd result" $ + abs ( negate $ snd result) `compare` 1e-5 @?= LT + ] + where result = goldenSectionSearch (directPower 42) (-pi / 3) (pi / 3) 1e-5 + +dstTest = + testGroup + "Test summer/winter time (DST) check" + [ testCase "Test last winter day" $ isSummerTime (fromGregorian 2018 3 25) @?= False + , testCase "Test first summer day" $ isSummerTime (fromGregorian 2018 3 26) @?= True + , testCase "Test last summer day" $ isSummerTime (fromGregorian 2018 10 27) @?= True + , testCase "Test first winter day" $ isSummerTime (fromGregorian 2018 10 28) @?= False + ] + +bestAngleTest = + testGroup + "Test best angle over time period" + [ testCase "Test 2018 8 11" $ + abs (bestAngle (toUniversalTime 2018 8 11 3 0 0) (toUniversalTime 2018 8 11 22 0 0) 100 - 28.5) `compare` 0.1 @?= LT + ] + +sunriseTest = + testGroup + "Test sunrise" + [ testCase "Test year of sunrise" $ sel1 sunriseTuple @?= 2018 + , testCase "Test month of sunrise" $ sel2 sunriseTuple @?= 8 + , testCase "Test day of sunrise" $ sel3 sunriseTuple @?= 13 + , testCase "Test hour of sunrise" $ sel4 sunriseTuple @?= 6 + , testCase "Test minute of sunrise" $ abs (sel5 sunriseTuple - 25) `compare` 5 @?= LT + , testCase "Test altitude at sunrise" $ abs sunriseAltitude `compare` 1 @?= LT + ] + where date = toLocalDate 2018 8 13 + defaultTime = toUniversalTime 2018 8 13 10 0 0 + sunrise = fromMaybe defaultTime $ getSunrise date + sunriseTuple = gmtToCET $ toYMDHMS sunrise + sunriseAltitude = hAltitude $ getSunPosition sunrise + +sunsetTest = + testGroup + "Test sunset" + [ testCase "Test year of sunset" $ sel1 sunsetTuple @?= 2018 + , testCase "Test month of sunset" $ sel2 sunsetTuple @?= 8 + , testCase "Test day of sunset" $ sel3 sunsetTuple @?= 13 + , testCase "Test hour of sunset" $ sel4 sunsetTuple @?= 21 + , testCase "Test minute of sunset" $ abs (sel5 sunsetTuple - 7) `compare` 5 @?= LT + , testCase "Test altitude at sunset" $ abs sunsetAltitude `compare` 1 @?= LT + ] + where date = toLocalDate 2018 8 13 + defaultTime = toUniversalTime 2018 8 13 10 0 0 + sunset = fromMaybe defaultTime $ getSunset date + sunsetTuple = gmtToCET $ toYMDHMS sunset + sunsetAltitude = hAltitude $ getSunPosition sunset + +bestAnglesDayTestAug = + testGroup + "Test optimal angles for a day" + [ testCase ("Test 2018 8 14 element nr " ++ show n) $ abs (fst (angles !! n) - expectedAngles !! n ) `compare` threshold @?= LT | n <- [0..9] + ] + where angles = bestAnglesDay (toLocalDate 2018 8 14) 1000 10 + expectedAngles = [47.8, 48.3, 46.3, 43.1, 38.6, 31.8, 20.0, 0.0, 0.0, 0.0] + threshold = 3.0 -- amount of degrees it's allowed to be off compared to the Mathematica implementation + +bestAnglesDayTestOct = + testGroup + "Test optimal angles for a day" + [ testCase ("Test 2018 10 13 element nr " ++ show n) $ abs (fst (angles !! n) - expectedAngles !! n ) `compare` threshold @?= LT | n <- [3..9] -- skip the first ones as above 60 degrees inaccuracies are bigger but not so important + ] + where angles = bestAnglesDay (toLocalDate 2018 10 13) 1000 10 + expectedAngles = [88.0, 76.9, 68.7, 63.2, 59.7, 56.6, 53.3, 47.7, 36.0, 0.0] + threshold = 3.0 -- amount of degrees it's allowed to be off compared to the Mathematica implementation + +utilTest = + testGroup + "Test time/date converters" + [ testCase "Test localdate 2018 8 15" $ toLocalDate 2018 8 15 == julianToLocalDate (fromYMDHMS 2018 8 15 0 0 0) @?= True + , testCase "Test localdate 2018 2 15" $ toLocalDate 2018 2 15 == julianToLocalDate (fromYMDHMS 2018 2 15 0 0 0) @?= True + , testCase "Test julianToLocalTime" $ localToJulianDate (julianToLocalTime (JD 2458345.5)) @?= JD 2458345.5 + , testCase "Test gmtToCET" $ gmtToCET (2018, 8, 15, 13, 22, 0) @?= (2018, 8, 15, 15, 22, 0) + , testCase "Test gmtToCET" $ gmtToCET (2018, 2, 15, 13, 22, 0) @?= (2018, 2, 15, 14, 22, 0) + ] + +bestAnglesMoreDaysTest = + testGroup + "Test angles multiple days" + [ testCase "Test 2018 8 15 only" $ + bestAnglesMoreDays (fromGregorian 2018 8 15) (fromGregorian 2018 8 15) 1000 10 @?= bestAnglesDay (toLocalDate 2018 8 15) 1000 10 + , testCase "Test number of angles" $ length (bestAnglesMoreDays (fromGregorian 2018 8 15) (fromGregorian 2018 8 17) 1000 10) @?= 30 + ] + +toUnixTimeTest = + testGroup + "Test converting JulianDate to Unix time" + [ testCase "Test 2018 8 15 15 34 0" $ abs (julianDateToUnixTime (toUniversalTime 2018 8 15 15 34 0.000123) - 1534340040) `compare` 0.01 @?= LT + ] + +-- Ugly, but Haskell and IO... + +--class Monad m => FSMonad m where +-- readFile' :: FilePath -> m String +-- +--data MockFS = SingleFile FilePath String +-- +--instance FSMonad (State MockFS) where +-- -- ^ Reader would be enough in this particular case though +-- readFile' pathRequested = do +-- (SingleFile pathExisting contents) <- get +-- if pathExisting == pathRequested +-- then return contents +-- else fail "file not found" +-- +--testWriteBestAnglesToFile = +-- testGroup +-- "Test writing angles to file" +-- [ testCase "Test file length" $ evalState (lengthOfFileIsFifty "angles.test") (SingleFile "test.txt" "hello world") @?= 50 +-- , testCase "Remove the file" $ removeFile filePath +-- ] +-- where +-- filePath = "angles.test" +-- written = writeBestAnglesToFile "angles.test" (fromGregorian 2018 8 15) (fromGregorian 2018 8 19) 1000 10 +-- length' string = length $ lines string +-- compareWithFifty x = x @?= 50 +-- lengthOfFileIsFifty = do +-- contents <- readFile' filePath +-- return $ compareWithFifty $ length' contents +-- lengthOfFile :: FSMonad m => FilePath -> m Int +-- lengthOfFile file = do +-- contents <- readFile' file +-- return $ length' contents diff --git a/SolArduino-core/haskell/src/Data/String/Strip.hs b/SolArduino-core/haskell/src/Data/String/Strip.hs deleted file mode 100644 index a8d5273..0000000 --- a/SolArduino-core/haskell/src/Data/String/Strip.hs +++ /dev/null @@ -1,6 +0,0 @@ -module Data.String.Strip (strip) where - -import Data.Char - -strip :: String -> String -strip = dropWhile isSpace . reverse . dropWhile isSpace . reverse diff --git a/SolArduino-core/haskell/stack.yaml b/SolArduino-core/haskell/stack.yaml deleted file mode 100644 index 92428c9..0000000 --- a/SolArduino-core/haskell/stack.yaml +++ /dev/null @@ -1,65 +0,0 @@ -# This file was automatically generated by 'stack init' -# -# Some commonly used options have been documented as comments in this file. -# For advanced use and comprehensive documentation of the format, please see: -# https://docs.haskellstack.org/en/stable/yaml_configuration/ - -# Resolver to choose a 'specific' stackage snapshot or a compiler version. -# A snapshot resolver dictates the compiler version and the set of packages -# to be used for project dependencies. For example: -# -# resolver: lts-3.5 -# resolver: nightly-2015-09-21 -# resolver: ghc-7.10.2 -# resolver: ghcjs-0.1.0_ghc-7.10.2 -# -# The location of a snapshot can be provided as a file or url. Stack assumes -# a snapshot provided as a file might change, whereas a url resource does not. -# -# resolver: ./custom-snapshot.yaml -# resolver: https://example.com/snapshots/2018-01-01.yaml -resolver: lts-11.16 - -# User packages to be built. -# Various formats can be used as shown in the example below. -# -# packages: -# - some-directory -# - https://example.com/foo/bar/baz-0.0.2.tar.gz -# - location: -# git: https://github.com/commercialhaskell/stack.git -# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a -# - location: https://github.com/commercialhaskell/stack/commit/e7b331f14bcffb8367cd58fbfc8b40ec7642100a -# subdirs: -# - auto-update -# - wai -packages: -- . -# Dependency packages to be pulled from upstream that are not in the resolver -# using the same syntax as the packages field. -# (e.g., acme-missiles-0.3) -# extra-deps: [] - -# Override default flag values for local packages and extra-deps -# flags: {} - -# Extra package databases containing global packages -# extra-package-dbs: [] - -# Control whether we use the GHC we find on the path -# system-ghc: true -# -# Require a specific version of stack, using version ranges -# require-stack-version: -any # Default -# require-stack-version: ">=1.7" -# -# Override the architecture used by stack, especially useful on Windows -# arch: i386 -# arch: x86_64 -# -# Extra directories used by stack for building -# extra-include-dirs: [/path/to/dir] -# extra-lib-dirs: [/path/to/dir] -# -# Allow a newer minor version of GHC than the snapshot specifies -# compiler-check: newer-minor \ No newline at end of file diff --git a/SolArduino-core/haskell/test/Data/String/StripSpec.hs b/SolArduino-core/haskell/test/Data/String/StripSpec.hs deleted file mode 100644 index 3ecb689..0000000 --- a/SolArduino-core/haskell/test/Data/String/StripSpec.hs +++ /dev/null @@ -1,19 +0,0 @@ -module Data.String.StripSpec (main, spec) where - -import Test.Hspec -import Test.QuickCheck - -import Data.String.Strip - --- `main` is here so that this module can be run from GHCi on its own. It is --- not needed for automatic spec discovery. -main :: IO () -main = hspec spec - -spec :: Spec -spec = do - describe "strip" $ do - it "removes leading and trailing whitespace" $ do - strip "\t foo bar\n" `shouldBe` "foo bar" - it "is idempotent" $ property $ - \str -> strip str === strip (strip str) diff --git a/SolArduino-core/haskell/test/Spec.hs b/SolArduino-core/haskell/test/Spec.hs deleted file mode 100644 index a824f8c..0000000 --- a/SolArduino-core/haskell/test/Spec.hs +++ /dev/null @@ -1 +0,0 @@ -{-# OPTIONS_GHC -F -pgmF hspec-discover #-} diff --git a/documentation/src/arduinocode.tex b/documentation/src/arduinocode.tex index 137ef5f..6b70013 100644 --- a/documentation/src/arduinocode.tex +++ b/documentation/src/arduinocode.tex @@ -16,11 +16,11 @@ The calculation itself as implemented on the Arduino is 0 to 0.01 off, because of the rounding of the long value. The offset can be seen with this Mathematica command \begin{lstlisting} -Plot[N[360 + ((x - 5)*100/(50 - 5))*(74 - 360)/100] - -N[360 + Floor[((x - 5)/(50 - 5))*100*(74 - 360)]/100], {x, 10, +Plot[N[360 + ((x - 5)*100/(50 - 5))*(74 - 360)/100] - +N[360 + Floor[((x - 5)/(50 - 5))*100*(74 - 360)]/100], {x, 10, 10.01}] \end{lstlisting} - which illustrates the difference between the exact solution and the Arduino code without rounding to the integer \verb|expectedVoltage|, which was implemented as + which illustrates the difference between the exact solution and the Arduino code without rounding to the integer \verb|expectedVoltage|, which was implemented as \begin{lstlisting} float fraction = ( ( (float) ( (degrees - DEGREES_LOWEND) ) ) / (float) (DEGREES_HIGHEND - DEGREES_LOWEND) ); int expectedVoltage = POTMETER_LOWEND + @@ -33,13 +33,13 @@ Because the Arduino program space could by far not store all the unix times and angles for like a year, we decided to use a webserver on the Synology NAS as storage space. Every time the Arduino runs out of angles, it detects that either in the \verb|loop()| or in \verb|solarPanelAuto()|, and then requests new angles at \url{http://192.168.2.7} with \verb|requestNewTable()|. After sending such a request, the program needs to wait for a response before continuing, otherwise it continues with old angles. The 'waiting' is implemented with a global flag variable \verb|responseReceived|, which is set true in the callback after the angle and date arrays are updated. + Currently the arrays are of size 10, and therefore the little PHP script on the NAS gives the next ten angles and dates when called. The number ten is chosen because of RAM limitations, if you want to change it, change the \verb|tableLength| global variable, the number in the declarations of the arrays, the number of times the PHP script gives back, the \verb|tableSize| which indicates how many bytes the NAS response will need, and is used in the ethernet buffer and when parsing. To calculate that size, given $x$ angles, you'd do something like $11x$ for the dates plus $4x$ for the angles and a little more plus about 140 bytes/characters from the http header would be around 300 bytes for 10 angles. But tests point out almost 400 bytes are needed here, so be sure to test it well. In the NAS, you can find the page with the file browser under \verb|DiskStation/web/index.php|. - By the way, on high performace, exporting the angles for ten times a day for two years, like \\ \verb|exportPeriod[DateObject[{2016, 9, 7}], DateObject[{2018, 9, 15}], 10]| took only ten minutes (Lenovo laptop on high performance). - A possible improvement is obviously to save the angles locally on for e{subsec:arduinotoandroid} which would decrease dependencies on other systems. + \subsection{Communication with the Android app} \label{subsec:arduinotoandroid} Communication goes by http requests, in the form of \url{http://192.168.2.106/?panel=up}. Currently implemented are \verb|panel=up,panel=down,panel=stop,panel=auto,degrees=x,update|. diff --git a/documentation/src/documentation.tex b/documentation/src/documentation.tex index c014088..02b6dac 100644 --- a/documentation/src/documentation.tex +++ b/documentation/src/documentation.tex @@ -19,10 +19,10 @@ % Hyperlink setup \hypersetup{ - colorlinks=true, - linkcolor=blue, - filecolor=magenta, - urlcolor=cyan, +colorlinks=true, +linkcolor=blue, +filecolor=magenta, +urlcolor=cyan, } % circuitikz shapes --------------- @@ -47,151 +47,164 @@ % MATH ------------------------------------- % Vertical vector -\newcommand{\vvec}[1]{\begin{pmatrix} #1 \end{pmatrix}} +\newcommand{\vvec}[1]{\begin{pmatrix} + #1 +\end{pmatrix}} \begin{document} - - \tableofcontents - \newpage - - \section{Maintenance}\label{sec:maintenance} - NAS times are online for until around 14/9/2018. - - \subsection{Changing IP address}\label{subsec:changingIpAddress} - - To change IP address, change it in the Arduino code two times (\verb|myip| en \verb|gw|), if needed also change the NAS ip adress: - \begin{lstlisting} -ether.hisip[0]=192; -ether.hisip[1]=168; -ether.hisip[2]=178; -ether.hisip[3]=29; - \end{lstlisting} - and the dns (directly under it). - - It may be needed to find the right dns for the NAS and the gw (gateway) address again, by doing a normal dhcp setup like - \begin{lstlisting} -ether.dhcpSetup(); -ether.printIp("IP: ", ether.myip); -ether.printIp("GW: ", ether.gwip); -ether.printIp("DNS: ", ether.dnsip); -ether.printIp("SRV: ", ether.hisip); - \end{lstlisting} - Do not change the dns for the NTP server, \verb|dns[] = {195,121,1,34}|, otherwise the NTP dns lookup fails. - - Also change it in the Android app two times (\verb|ipString| and \verb|host|), and in the desktop app. - - The current ip address is \url{http://192.168.8.42}. - - \subsection{Panels are stuck when out of bounds}\label{subsec:outOfBounds} - - For safety, when panels go out of bounds they cannot move anymore in any direction. - To get them moving again, shortcut the low end stop if the panels are down like in Figure~\ref{lowendstop} and do the same for the high end stop if the panels are up like in Figure~\ref{highendstop}. - - - \begin{figure} - \centering - \includegraphics[width=.8\linewidth]{images/lowendstop.PNG} - \caption{Shortcutting the low end stop} - \label{lowendstop} - \end{figure} - \begin{figure} - \centering - \includegraphics[width=.8\linewidth]{images/highendstop.PNG} - \caption{Shortcutting the high end stop} - \label{highendstop} - \end{figure} - - \section{Setup of the project}\label{sec:setupOfTheProject} - \input{../src/setup.tex} - - \section{Arduino Code}\label{sec:arduinoCode} - \input{../src/arduinocode.tex} - - \section{Android App}\label{sec:androidApp} - \subsection{User Manual}\label{subsec:userManual} - To move the solar panels up (or down), press the up (or down) button and hold it until the desired position/angle is reached. - The current degree on the top right and the picture update while the button is held, so you know when the panels are at the desired position. - - To set the solar panels in auto mode, press the auto checkbox. - - - To set the solar panels at a certain degree, move the slider until the $x$ at the button which says "\verb|SET ANGLE AT | $x^{\circ}$" is the desired degree for the angle. - Then press the button to set the angle of the panels at that degree. - While the panels are moving, the degree on the top right and the picture update to be the current one. - May you change your mind about the angle while the panels are moving, simply drag the slider to the desired angle. - It's not needed to press the button again, when the panels are still moving. - - To update the |TextView| containing the current angle, simply press the number. - This will also update the position of the picture. - This will also check the checkbox if the panels are in auto mode, and uncheck the checkbox if the panels are not in auto mode (if needed). - - \subsection{Communication with the Arduino}\label{subsec:communicationWithTheArduino} - To communicate with the Arduino, the Android app sends http requests to the Arduino. - For all the requests accepted by the Arduino, check section~\ref{subsec:arduinotoandroid}. - Below a list containing what requests are sent when something is clicked can be found. - \begin{itemize} - \item \textbf{Up and down button.} \url{http://192.168.2.106/?panel=up} is sent at the moment the button is pressed, so the Arduino knows we want the panels to move up. - After that, the request \url{http://192.168.2.106/?update} is sent with a set interval. - This interval depends on the speed of the solar panels, and is about as much as it takes the panels to move $1$ degree. - This request is sent so often to be able to keep the degree (on the top right of the screen) and the picture up to date with the actual position of the panels. - At the moment the button is released the request \url{http://192.168.2.10/?panel=stop} is sent to the Arduino, so it knows we want the panels to not move anymore. - No \verb|?update| requests are sent anymore. - - \item \textbf{Auto checkbox.} \url{http://192.168.2.106/?panel=auto} is sent when the checkbox is being checked, \url{http://192.168.2.106/?panel=manual} is sent when the panels go out of auto mode. - Which is either when the user unchecks the checkbox, or when the user clicks the up/down button, or when the user clicks the button to set the panels at a certain angle. - - \item \textbf{Current degree text.} \url{http://192.168.2.106/?update} to update the current angle in the text, and the position of the picture to the actual position of the solar panels. - - \item \textbf{Set angle button.} This takes the current position of the slider/seekbar (\verb|seekbar.getProgress()|) and uses that to send a request \url{http://192.168.2.106/?degrees=xx} to the Arduino so it knows at what angle to set the solar panels. - Until the panels have reached the set position, the \verb|?update| request is sent with the same interval as for the up and down buttons. - The app knows when the panels have reached the set position by comparing the current position of the panels and the position of the slider before each request. - If these are equal, it doesn't send an \verb|?update| request anymore. - This is why it's not needed to press the \verb|SET| button again when changing the value of the slider while the panels are still moving, if that movement is caused by this button. - \end{itemize} - - \section{Calculations}\label{sec:calculations} - \subsection{Finding the angle between the sun and the line perpendicular to the solar panels}\label{subsec:findingTheAngleBetweenTheSunAndTheLinePerpendicularToTheSolarPanels} - To find the angle $\alpha$ between the sun and the line perpendicular to the solar panel, we determined both lines in spherical coordinates (with the same distance to the origin) and then calculated the angle between the two. - - - For the sun this would be - \[ - \vvec{x \\ y \\ z} = - \vvec{\cos \gamma_s \sin \left(\frac{\pi}{2} - \theta_s\right) \\ - \sin \gamma_s \sin \left(\frac{\pi}{2} - \theta_s\right) \\ - \cos \left(\frac{\pi}{2} - \theta_s\right)} - \] - where $ \gamma_s $ is the azimuth, and $ \theta_s $ the altitude of the sun. - - - For the line perpendicular to the solar panels this would be - \[ - \vvec{x \\ y \\ z} = - \vvec{\cos \gamma_p \sin \left(\frac{\pi}{2} - \theta_p\right) \\ - \sin \gamma_p \sin \left(\frac{\pi}{2} - \theta_p\right) \\ - \cos \left(\frac{\pi}{2} - \theta_p\right)} - \] - where $ \gamma_p $ is the azimuth (direction of the solar panels in respect to the South), and $ \theta_p $ the altitude of the solar panels. - - Then, to find the angle $\alpha$ between these two lines, we take the $ \arccos $ of the dot product. - This gives us - - \[ - \alpha = \arccos (\cos (\gamma_p - \gamma_s) \cos \theta_s \sin \theta_p + \sin \theta_s \cos \theta_p)\,. - \] - - \subsection{Mathematica calculations}\label{subsec:mathematicaCalculations} - - The Mathematica package (imported with \verb|<< SolArduino`|, be sure to place it in your - \url{\%AppData\%\\Mathematica\\Applications} folder) can calculate the optimal angle for a given day. - To do that, it calculates for each angle between $0$ and $90$ the total of the insolation (power received by the sun) at each half hour of that day. - Then it finds the angle for which that value is maximal. - To find the insolation at a given hour, the function \verb|angle| calculates the misalignment with the sun using the formula from the previous subsection, and then calculates the insolation using a formula from \href{http://www.powerfromthesun.net/Book/chapter02/chapter02.html#ZEqnNum929295 }{www.powerfromthesun.net}, where parameters for urban haze compared a lot better with real life values (17/8) than clear day parameters. - - It can therefore make graphs for optimal angles for a month, and averaging the values for a month, also for a year, and lots more as seen in the demonstration notebook. - When plotting real data, for example days like 13/5, 19/7 and 17/8 are all cloudless days with the solar panels at around 25 degrees. - - It is important to note that the functions \verb|angle|, \verb|directPower| and more do not take the hour of the day as input, but the index of the \verb|sunPositions| table which contains the azimuth and altitude of the sun over the day. - Therefore, \textit{before you call functions which take an index as parameter you need to make sure you have }\verb|sunPositions| \textit{initialised} at the right day, done by calling \verb|calculatesunPos[DateObject[{2016,7,18}]]| with whatever day you want in the table. - + + \tableofcontents + \newpage + + \section{Maintenance}\label{sec:maintenance} + NAS times are online for until around 14/9/2018. + + \subsection{Changing IP address}\label{subsec:changingIpAddress} + + To change IP address, change it in the Arduino code two times (\verb|myip| en \verb|gw|), if needed also change the NAS ip adress: + \begin{lstlisting} + ether.hisip[0]=192; + ether.hisip[1]=168; + ether.hisip[2]=178; + ether.hisip[3]=29; + \end{lstlisting} + and the dns (directly under it). + + It may be needed to find the right dns for the NAS and the gw (gateway) address again, by doing a normal dhcp setup like + \begin{lstlisting} + ether.dhcpSetup(); + ether.printIp("IP: ", ether.myip); + ether.printIp("GW: ", ether.gwip); + ether.printIp("DNS: ", ether.dnsip); + ether.printIp("SRV: ", ether.hisip); + \end{lstlisting} + Do not change the dns for the NTP server, \verb|dns[] = {195,121,1,34}|, otherwise the NTP dns lookup fails. + + Also change it in the Android app two times (\verb|ipString| and \verb|host|), and in the desktop app. + + The current ip address is \url{http://192.168.8.42}. + + \subsection{Panels are stuck when out of bounds}\label{subsec:outOfBounds} + + For safety, when panels go out of bounds they cannot move anymore in any direction. + To get them moving again, shortcut the low end stop if the panels are down like in Figure~\ref{lowendstop} and do the same for the high end stop if the panels are up like in Figure~\ref{highendstop}. + + + \begin{figure} + \centering + \includegraphics[width=.8\linewidth]{images/lowendstop.PNG} + \caption{Shortcutting the low end stop} + \label{lowendstop} + \end{figure} + \begin{figure} + \centering + \includegraphics[width=.8\linewidth]{images/highendstop.PNG} + \caption{Shortcutting the high end stop} + \label{highendstop} + \end{figure} + + \section{Setup of the project}\label{sec:setupOfTheProject} + \input{../src/setup.tex} + + \section{Arduino Code}\label{sec:arduinoCode} + \input{../src/arduinocode.tex} + + \section{Android App}\label{sec:androidApp} + \subsection{User Manual}\label{subsec:userManual} + To move the solar panels up (or down), press the up (or down) button and hold it until the desired position/angle is reached. + The current degree on the top right and the picture update while the button is held, so you know when the panels are at the desired position. + + To set the solar panels in auto mode, press the auto checkbox. + + + To set the solar panels at a certain degree, move the slider until the $x$ at the button which says "\verb|SET ANGLE AT | $x^{\circ}$" is the desired degree for the angle. + Then press the button to set the angle of the panels at that degree. + While the panels are moving, the degree on the top right and the picture update to be the current one. + May you change your mind about the angle while the panels are moving, simply drag the slider to the desired angle. + It's not needed to press the button again, when the panels are still moving. + + To update the |TextView| containing the current angle, simply press the number. + This will also update the position of the picture. + This will also check the checkbox if the panels are in auto mode, and uncheck the checkbox if the panels are not in auto mode (if needed). + + \subsection{Communication with the Arduino}\label{subsec:communicationWithTheArduino} + To communicate with the Arduino, the Android app sends http requests to the Arduino. + For all the requests accepted by the Arduino, check section~\ref{subsec:arduinotoandroid}. + Below a list containing what requests are sent when something is clicked can be found. + \begin{itemize} + \item \textbf{Up and down button.} \url{http://192.168.2.106/?panel=up} is sent at the moment the button is pressed, so the Arduino knows we want the panels to move up. + After that, the request \url{http://192.168.2.106/?update} is sent with a set interval. + This interval depends on the speed of the solar panels, and is about as much as it takes the panels to move $1$ degree. + This request is sent so often to be able to keep the degree (on the top right of the screen) and the picture up to date with the actual position of the panels. + At the moment the button is released the request \url{http://192.168.2.10/?panel=stop} is sent to the Arduino, so it knows we want the panels to not move anymore. + No \verb|?update| requests are sent anymore. + + \item \textbf{Auto checkbox.} \url{http://192.168.2.106/?panel=auto} is sent when the checkbox is being checked, \url{http://192.168.2.106/?panel=manual} is sent when the panels go out of auto mode. + Which is either when the user unchecks the checkbox, or when the user clicks the up/down button, or when the user clicks the button to set the panels at a certain angle. + + \item \textbf{Current degree text.} \url{http://192.168.2.106/?update} to update the current angle in the text, and the position of the picture to the actual position of the solar panels. + + \item \textbf{Set angle button.} This takes the current position of the slider/seekbar (\verb|seekbar.getProgress()|) and uses that to send a request \url{http://192.168.2.106/?degrees=xx} to the Arduino so it knows at what angle to set the solar panels. + Until the panels have reached the set position, the \verb|?update| request is sent with the same interval as for the up and down buttons. + The app knows when the panels have reached the set position by comparing the current position of the panels and the position of the slider before each request. + If these are equal, it doesn't send an \verb|?update| request anymore. + This is why it's not needed to press the \verb|SET| button again when changing the value of the slider while the panels are still moving, if that movement is caused by this button. + \end{itemize} + + \section{Calculations}\label{sec:calculations} + \subsection{Finding the angle between the sun and the line perpendicular to the solar panels}\label{subsec:findingTheAngleBetweenTheSunAndTheLinePerpendicularToTheSolarPanels} + To find the angle $\alpha$ between the sun and the line perpendicular to the solar panel, we determined both lines in spherical coordinates (with the same distance to the origin) and then calculated the angle between the two. + + + For the sun this would be + \[ + \vvec{x \\ y \\ z} = + \vvec{\cos \gamma_s \sin \left(\frac{\pi}{2} - \theta_s\right) \\ + \sin \gamma_s \sin \left(\frac{\pi}{2} - \theta_s\right) \\ + \cos \left(\frac{\pi}{2} - \theta_s\right)} + \] + where $ \gamma_s $ is the azimuth, and $ \theta_s $ the altitude of the sun. + + + For the line perpendicular to the solar panels this would be + \[ + \vvec{x \\ y \\ z} = + \vvec{\cos \gamma_p \sin \left(\frac{\pi}{2} - \theta_p\right) \\ + \sin \gamma_p \sin \left(\frac{\pi}{2} - \theta_p\right) \\ + \cos \left(\frac{\pi}{2} - \theta_p\right)} + \] + where $ \gamma_p $ is the azimuth (direction of the solar panels in respect to the South), and $ \theta_p $ the altitude of the solar panels. + + Then, to find the angle $\alpha$ between these two lines, we take the $ \arccos $ of the dot product. + This gives us + + \[ + \alpha = \arccos (\cos (\gamma_p - \gamma_s) \cos \theta_s \sin \theta_p + \sin \theta_s \cos \theta_p)\,. + \] + + \subsection{Implementation of calculations to find optimal angles} + + \subsubsection{Mathematica calculations}\label{subsec:mathematicaCalculations} + + The Mathematica package (imported with \verb|<< SolArduino`|, be sure to place it in your + \url{\%AppData\%\\Mathematica\\Applications} folder) can calculate the optimal angle for a given day. + To do that, it calculates for each angle between $0$ and $90$ the total of the insolation (power received by the sun) at each half hour of that day. + Then it finds the angle for which that value is maximal. + To find the insolation at a given hour, the function \verb|angle| calculates the misalignment with the sun using the formula from the previous subsection, and then calculates the insolation using a formula from \href{http://www.powerfromthesun.net/Book/chapter02/chapter02.html#ZEqnNum929295 }{www.powerfromthesun.net}, where parameters for urban haze compared a lot better with real life values (17/8) than clear day parameters. + + It can therefore make graphs for optimal angles for a month, and averaging the values for a month, also for a year, and lots more as seen in the demonstration notebook. + When plotting real data, for example days like 13/5, 19/7 and 17/8 are all cloudless days with the solar panels at around 25 degrees. + + It is important to note that the functions \verb|angle|, \verb|directPower| and more do not take the hour of the day as input, but the index of the \verb|sunPositions| table which contains the azimuth and altitude of the sun over the day. + Therefore, \textit{before you call functions which take an index as parameter you need to make sure you have }\verb|sunPositions| \textit{initialised} at the right day, done by calling \verb|calculatesunPos[DateObject[{2016,7,18}]]| with whatever day you want in the table. + + Exporting the angles for ten times a day for two years, like + + \verb|exportPeriod[DateObject[{2016, 9, 7}], DateObject[{2018, 9, 15}], 10]| took only ten minutes (Lenovo W541 laptop on high performance). + + \subsubsection{Haskell calculations} + + Because Mathematica is proprietary, we decided to also provide a Haskell implementation. + It uses the \href{https://hackage.haskell.org/package/astro}{Astro package} to find the position of the sun. + \end{document} \ No newline at end of file