diff --git a/.git_archival.txt b/.git_archival.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8fb235d7045be0330d94bcb3abd2ac43badaa197
--- /dev/null
+++ b/.git_archival.txt
@@ -0,0 +1,4 @@
+node: $Format:%H$
+node-date: $Format:%cI$
+describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
+ref-names: $Format:%D$
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..00a7b00c94e08b86c765d47689b6523148c46eec
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+.git_archival.txt  export-subst
diff --git a/.gitignore b/.gitignore
index 8e8e2819574bb109d9e455eb1fec30bc6596dcba..0c30be40f68bacd6d5917b199c16795c2a48d95f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,6 +24,10 @@ wheels/
 *.egg-info/
 .installed.cfg
 *.egg
+# local version for user install
+setup.py
+# info folder with testing scirpts
+info/
 
 # PyInstaller
 #  Usually these files are written by a python script from a template
@@ -45,6 +49,8 @@ nosetests.xml
 coverage.xml
 *.cover
 .hypothesis/
+/bench/
+/prof/
 
 # Translations
 *.mo
@@ -63,6 +69,7 @@ instance/
 
 # Sphinx documentation
 docs/_build/
+docs/source/api
 docs/output.txt
 
 # PyBuilder
@@ -88,12 +95,11 @@ celerybeat-schedule
 venv/
 ENV/
 
-# Spyder project settings
+# IDE project settings
 .spyderproject
 .spyproject
-
-# Rope project settings
 .ropeproject
+.vscode
 
 # mkdocs documentation
 /site
@@ -112,20 +118,22 @@ info/
 *.cpp
 
 # generated version file
-src/finam_mhm_module/_version.py
+src/finam_mhm/_version.py
 
 # generated docs
 docs/source/examples/
 docs/source/generated/
+examples/test_domain
+examples/qmod.nc
+examples/qmod_couple.nc
+examples/aet.nc
+examples/*.csv
+tests/runoff_out.csv
 
 /docs/build/
-/docs/finam_mhm_module.*
+/docs/finam_mhm.*
 /docs/modules.rst
-*.csv
 
 *.DS_Store
 
 *.zip
-
-# local version for user install
-setup.py
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2bdbd11b246808d4c0a47e20c83f84a213d74831..cdf4144d7f53bbcadd63d65222a98ee8d1d62635 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,15 +1,93 @@
 image: python
 
 stages:
+  - test
   - build
+  - docs
   - deploy
+  - release
 
 check:
-  stage: build
+  stage: test
   before_script:
-    - apt-get install gfortran netcdf-bin libnetcdf-dev libnetcdff-dev
-    - pip3 install black numpy pandas
+    - pip3 install 'black>=23,<24' 'pylint<3' 'isort[colors]<6'
   script:
+    - pip3 install --editable .
     - black --check --diff --color .
+    - isort --check --diff --color .
+    - pylint src/finam_mhm
+
+test:
+  stage: test
+  script:
     - pip3 install --editable .[test]
-    - python -m pytest --cov finam_mhm_module --cov-report term-missing -v tests/
+    - python -m pytest --cov finam_mhm --cov-report term-missing --cov-report html:cov --cov-report xml:cov.xml -v tests/
+  coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
+  artifacts:
+    reports:
+      coverage_report:
+        coverage_format: cobertura
+        path: cov.xml
+    paths:
+      - cov
+
+build:
+  stage: build
+  variables:
+    GIT_STRATEGY: clone
+    GIT_DEPTH: 0  # to have all tags
+  script:
+    - pip install build
+    - python -m build
+  artifacts:
+    paths:
+      - dist
+
+documentation:
+  stage: docs
+  variables:
+    GIT_STRATEGY: clone
+    GIT_DEPTH: 0  # to have all tags
+  script:
+    - pip3 install --editable .[doc]
+    - sphinx-build docs/source docs/build
+    - mv docs/build public/
+  artifacts:
+    paths:
+      - public
+
+pages:
+  stage: deploy
+  script: "true"
+  artifacts:
+    paths:
+      - public
+  only:
+    - main
+
+pypi_test_release:
+  stage: release
+  dependencies:
+    - build
+  script:
+    - pip install twine
+    - python -m twine upload --skip-existing -r testpypi -u __token__ -p ${TEST_PYPI_TOKEN} dist/*
+  artifacts:
+    paths:
+      - dist
+  only:
+    - main
+    - tags
+
+pypi_release:
+  stage: release
+  dependencies:
+    - build
+  script:
+    - pip install twine
+    - python -m twine upload -u __token__ -p ${PYPI_TOKEN} dist/*
+  artifacts:
+    paths:
+      - dist
+  only:
+    - tags
diff --git a/AUTHORS.md b/AUTHORS.md
new file mode 100644
index 0000000000000000000000000000000000000000..1649f267a54cc221d9ee804859b5ad0955f05655
--- /dev/null
+++ b/AUTHORS.md
@@ -0,0 +1,17 @@
+# FINAM-mHM developers
+
+The FINAM project was created by the following people.
+
+## Core developers
+
+- Sebastian Müller (E-mail: <sebastian.mueller@ufz.de>)
+
+## Working Group members
+
+- Jeisson Javier Leal Rojas (E-mail: <jeisson-javier.leal-rojas@ufz.de>)
+- Matthias Kelbling (E-mail: <matthias.kelbling@ufz.de>)
+
+## Supervisors
+
+- Stephan Thober (E-mail: <stephan.thober@ufz.de>)
+- Sabine Attinger (E-mail: <sabine.attinger@ufz.de>)
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000000000000000000000000000000000000..f288702d2fa16d3cdf0035b15a9fcbc552cd88e7
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
diff --git a/LICENSE b/COPYING.LESSER
similarity index 100%
rename from LICENSE
rename to COPYING.LESSER
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000000000000000000000000000000000000..cf849b21f48c6c77bb2ff53baac985a32716f018
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,47 @@
+# SOFTWARE LICENCE
+
+FINAM-mHM is a open-source FINAM component for mHM.
+
+## Copyright Notice
+
+Copyright © 2023, the FINAM-mHM developers from Helmholtz-Zentrum für Umweltforschung GmbH - UFZ. All rights reserved.
+
+***The code is a property of:***
+
+> Helmholtz-Zentrum für Umweltforschung GmbH - UFZ<br/>
+> Registered Office: Leipzig<br/>
+> Registration Office: Amtsgericht Leipzig<br/>
+> Trade Register Nr. B 4703<br/>
+
+The list of FINAM-mHM developers is provided in the AUTHORS.md file.
+
+***Contact:***
+
+- FINAM Admins (E-mail: <finam@ufz.de>)
+- Sebastian Müller (E-mail: <sebastian.mueller@ufz.de>)
+- Stephan Thober (E-mail: <stephan.thober@ufz.de>)
+- Sabine Attinger (E-mail: <sabine.attinger@ufz.de>)
+
+> Department Computational Hydrosystems (CHS)<br/>
+> Helmholtz Centre for Environmental Research - UFZ<br/>
+> Permoserstr. 15<br/>
+> 04318 Leipzig, Germany
+
+This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License along with this program.
+It can be found in the files `COPYING` and `COPYING.LESSER` provided with this software.
+The complete GNU license text can also be found at < https://www.gnu.org/licenses/>.
+
+## Redistribution
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+- Redistributions of source code must retain the above copyright notice, the list of conditions for redistribution and modification as well as the following GNU Lesser General Public License.
+- Redistributions in binary form must reproduce the above copyright notice, this list of conditions, the following GNU Lesser General Public License and the modification conditions in the documentation and/or other materials provided with the distribution.
+- Neither the name of Helmholtz-Zentrum für Umweltforschung GmbH - UFZ, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+## Modification
+
+If software is modified to produce derivative works, such modified software should be clearly marked, so as not to confuse it with the version available from Helmholtz-Zentrum für Umweltforschung GmbH - UFZ.
diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index 218301e0acf09c05307a52e689294b6210aff703..0000000000000000000000000000000000000000
--- a/MANIFEST.in
+++ /dev/null
@@ -1,6 +0,0 @@
-prune *
-graft src
-graft tests
-
-include LICENSE README.md pyproject.toml setup.cfg
-global-exclude __pycache__ *.py[cod] .*
diff --git a/README.md b/README.md
index f6a18ceb7034798505dfe750ce3acca4775f8063..33a221a9548bcf5c279b2e671f262c41c95f8d56 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,13 @@
 # FINAM mHM module
 
-FINAM wrapper for mHM depending on `mhm_pybind`: https://git.ufz.de/mhm/mhm_pybind
+FINAM wrapper for mHM: https://git.ufz.de/mhm/mhm
 
 ## Installation
 
 ```shell
-$ pip install git+https://git.ufz.de/FINAM/finam-mhm-module.git
+$ pip install git+https://git.ufz.de/FINAM/finam-mhm.git
 ```
+
+## License
+
+LGPLv3 (c) 2005-2023 CHS-Developers
diff --git a/docs/Makefile b/docs/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..d0c3cbf1020d5c292abdedf27627c6abe25e2293
--- /dev/null
+++ b/docs/Makefile
@@ -0,0 +1,20 @@
+# Minimal makefile for Sphinx documentation
+#
+
+# You can set these variables from the command line, and also
+# from the environment for the first two.
+SPHINXOPTS    ?=
+SPHINXBUILD   ?= sphinx-build
+SOURCEDIR     = source
+BUILDDIR      = build
+
+# Put it first so that "make" without argument is like "make help".
+help:
+	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+.PHONY: help Makefile
+
+# Catch-all target: route all unknown targets to Sphinx using the new
+# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
+%: Makefile
+	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
diff --git a/docs/_static/custom.css b/docs/_static/custom.css
deleted file mode 100644
index ca3f882ca7204115234887612b9d098a93e27b72..0000000000000000000000000000000000000000
--- a/docs/_static/custom.css
+++ /dev/null
@@ -1,5 +0,0 @@
-
-.py.sig {
-    padding-top: 2em;
-    padding-bottom: 1em;
-}
diff --git a/docs/conf.py b/docs/conf.py
deleted file mode 100644
index f383d93febc362684aafd383b2520a93aa724061..0000000000000000000000000000000000000000
--- a/docs/conf.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#
-import os
-import sys
-
-sys.path.insert(0, os.path.abspath("../src/finam_mhm_module"))
-
-
-# -- Project information -----------------------------------------------------
-
-project = "finam_mhm_module"
-copyright = "2022, Team LandTECH"
-author = "Team LandTECH"
-
-# The full version, including alpha/beta/rc tags
-release = "0.1.0"
-
-
-# -- General configuration ---------------------------------------------------
-
-# Add any Sphinx extension module names here, as strings. They can be
-# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
-# ones.
-extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosummary"]
-autosummary_generate = True
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ["_templates"]
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-# This pattern also affects html_static_path and html_extra_path.
-exclude_patterns = []
-
-
-# -- Options for HTML output -------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages.  See the documentation for
-# a list of builtin themes.
-#
-html_theme = "alabaster"
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ["_static"]
-html_css_files = ["custom.css"]
diff --git a/docs/index.rst b/docs/index.rst
deleted file mode 100644
index 2b13e78a11a2c28f6cfaac360fb49b24102a58ad..0000000000000000000000000000000000000000
--- a/docs/index.rst
+++ /dev/null
@@ -1,16 +0,0 @@
-Welcome to the FINAM mHM module documentation!
-==============================================
-
-.. toctree::
-   :maxdepth: 4
-   :caption: Contents:
-
-   modules
-
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
diff --git a/docs/make.bat b/docs/make.bat
new file mode 100644
index 0000000000000000000000000000000000000000..dc1312ab09ca6fb0267dee6b28a38e69c253631a
--- /dev/null
+++ b/docs/make.bat
@@ -0,0 +1,35 @@
+@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+	set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=source
+set BUILDDIR=build
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+	echo.
+	echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+	echo.installed, then set the SPHINXBUILD environment variable to point
+	echo.to the full path of the 'sphinx-build' executable. Alternatively you
+	echo.may add the Sphinx directory to PATH.
+	echo.
+	echo.If you don't have Sphinx installed, grab it from
+	echo.https://www.sphinx-doc.org/
+	exit /b 1
+)
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git a/docs/source/_static/css/custom.css b/docs/source/_static/css/custom.css
new file mode 100644
index 0000000000000000000000000000000000000000..b7530bfeea8208b74057539e7523077011b09a3e
--- /dev/null
+++ b/docs/source/_static/css/custom.css
@@ -0,0 +1,64 @@
+:root {
+  --pst-sidebar-secondary: 22rem;
+}
+html[data-theme=dark] {
+  --pst-color-primary: rgb(0, 100, 176);
+  --pst-color-link: rgb(40, 134, 204);
+}
+
+html[data-theme=light] {
+  --pst-color-primary: rgb(0, 90, 160);
+}
+
+html[data-theme=dark],
+html[data-theme=light] {
+  --pst-color-secondary: rgb(255, 166, 0);
+  --sd-color-card-border-hover: var(--pst-color-link);
+}
+
+.navbar-nav li a:focus,
+.navbar-nav li a:hover,
+.navbar-nav li.current>a,
+nav.bd-links li>a:hover {
+  color: var(--pst-color-link);
+}
+
+.blog-nav {
+	list-style: none;
+	margin-bottom: 0;
+	padding-left: 0;
+}
+
+nav.bd-links .blog-nav li>a {
+ color: var(--pst-color-text-muted);
+ display:inline;
+ padding:.25rem 0
+}
+
+ul.postlist-style-none {
+	padding-left: 0px;
+}
+
+.ablog-post-title {
+    font-size: 120%;
+}
+
+.bd-header .navbar-nav > .active > .nav-link {
+  color: var(--pst-color-link);
+}
+
+#navbar-icon-links i.fa-square-gitlab:before {
+ color: var(--pst-color-text-muted);
+}
+
+.bd-page-width {
+  max-width: 95rem;
+}
+
+.bd-page-width {
+  max-width: 95rem;
+}
+
+.center {
+  text-align: center;
+}
diff --git a/docs/source/_static/logo.svg b/docs/source/_static/logo.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6f756406e77385e4a4dab6ec877c3e5803289bbb
--- /dev/null
+++ b/docs/source/_static/logo.svg
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="256" height="256" version="1.1" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
+  <g fill="#ffa600" >
+    <path d="m207.69 40-63.688 184h54.625l-8-20.281 11.266-27.719h22.109v-136z"/>
+    <path d="m57.854 224 13.772-40h88.375v40z"/>
+    <path d="m91 128 13.875-40h99.125v40z"/>
+    <path d="m208 224-8-20.281 8-19.719h24l8 40z"/>
+  </g>
+  <g fill="#005aa0">
+    <path d="m57.375 40 8 20.281-11.266 27.719h-22.109v136h16.312l63.688-184z"/>
+    <path d="m198.15 40-13.772 40h-88.375v-40z"/>
+    <path d="m165 136-13.875 40h-99.125v-40z"/>
+    <path d="m48 40 8 20.281-8 19.719h-24l-8-40z"/>
+  </g>
+  <g transform="scale(1.1,1)">
+  <text x="143" y="218" transform="skewX(-20)" fill="#005aa0" font-family="Arial" font-size="40px" font-weight="bold">
+    mHM
+  </text>
+  </g>
+</svg>
diff --git a/docs/source/_static/logo_large.svg b/docs/source/_static/logo_large.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2221bcf16c3907fc0ae98cd80fc9cac656b2f054
--- /dev/null
+++ b/docs/source/_static/logo_large.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="91" height="25" version="1.1" viewBox="0 0 91 25" xmlns="http://www.w3.org/2000/svg">
+  <g fill="#ffa600">
+    <path d="m6.2317 24 1.7214-5h11.047v5z"/>
+    <path d="m10.375 12 1.7344-5h12.391v5z"/>
+    <path d="m24.961 1-7.9609 23h6.8281l-1-2.5352 1.4082-3.4648h2.7637v-17z"/>
+    <path d="m25 24-1-2.5351 1-2.4649h3l1 5z"/>
+  </g>
+  <g fill="#005aa0">
+    <path d="m 6.1719,1 1,2.5352 L 5.7637,7 H 3 V 24 H 5.0391 L 13,1 Z"/>
+    <path d="m23.768 1-1.7214 5h-11.047v-5z"/>
+    <path d="m19.625 13-1.7344 5h-12.391v-5z"/>
+    <path d="M 5,1 6,3.5351 5,6 H 2 L 1,1 Z"/>
+  </g>
+  <text x="30" y="15" fill="#005aa0" font-family="Arial" font-size="19.6px" font-weight="bold">
+    FINAM
+  </text>
+  <text x="30.75" y="24" fill="#ffa600" font-family="Arial" font-size="7.3px" font-weight="bold">
+    mHM Component
+  </text>
+</svg>
diff --git a/docs/source/_templates/autosummary/class.rst b/docs/source/_templates/autosummary/class.rst
new file mode 100644
index 0000000000000000000000000000000000000000..c5c858a19b93a44650f37b375e09809270111129
--- /dev/null
+++ b/docs/source/_templates/autosummary/class.rst
@@ -0,0 +1,13 @@
+{{ fullname | escape | underline}}
+
+.. currentmodule:: {{ module }}
+
+.. autoclass:: {{ objname }}
+   :members:
+   :undoc-members:
+   :inherited-members:
+   :show-inheritance:
+
+.. raw:: latex
+
+    \clearpage
diff --git a/docs/source/_templates/autosummary/module.rst b/docs/source/_templates/autosummary/module.rst
new file mode 100644
index 0000000000000000000000000000000000000000..04aefe90368c07940c25ed15413e600c1760a77e
--- /dev/null
+++ b/docs/source/_templates/autosummary/module.rst
@@ -0,0 +1,9 @@
+{{ fullname | escape | underline}}
+
+.. currentmodule:: {{ fullname }}
+
+.. automodule:: {{ fullname }}
+
+.. raw:: latex
+
+    \clearpage
diff --git a/docs/source/api.rst b/docs/source/api.rst
new file mode 100644
index 0000000000000000000000000000000000000000..588ac3fa0bd8af5a3c0986d034e69e1e27d2b556
--- /dev/null
+++ b/docs/source/api.rst
@@ -0,0 +1,9 @@
+=============
+API reference
+=============
+
+.. automodule:: finam_mhm
+
+.. raw:: latex
+
+    \clearpage
diff --git a/docs/source/conf.py b/docs/source/conf.py
new file mode 100644
index 0000000000000000000000000000000000000000..0e3ef6781af96a681150b8ff7400b2f08e83b6af
--- /dev/null
+++ b/docs/source/conf.py
@@ -0,0 +1,152 @@
+import datetime
+import json
+from importlib import import_module
+
+from docutils import nodes
+from docutils.parsers.rst import Directive
+from sphinx import addnodes
+
+# from sphinx.util import inspect
+# def object_description(object) -> str:
+#     return pformat(object, indent=2, sort_dicts=False).replace("\n", "\r\n")
+# inspect.object_description = object_description
+
+
+def ppdict(var):
+    return str(json.dumps(var, sort_keys=False, indent=2))
+
+
+# https://github.com/sphinx-doc/sphinx/issues/11548
+class PrettyPrintIterable(Directive):
+    """
+    Definition of a custom directive to pretty-print an iterable object.
+
+    This is used in place of the automatic API documentation
+    only for module variables which would just print a long signature.
+    """
+
+    required_arguments = 1
+
+    def run(self):  # noqa D102
+        member_name = self.arguments[0]
+        module = import_module("finam_mhm")
+        member = getattr(module, member_name)
+        code = ppdict(member)
+        literal = nodes.literal_block(code, code)
+        literal["language"] = "python"
+
+        return [addnodes.desc_content("", literal)]
+
+
+def setup(app):
+    app.add_directive("pprint", PrettyPrintIterable)
+
+
+# Configuration file for the Sphinx documentation builder.
+#
+# For the full list of built-in configuration values, see the documentation:
+# https://www.sphinx-doc.org/en/master/usage/configuration.html
+
+# -- Project information -----------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
+
+project = "finam_mhm"
+copyright = f"2021 - {datetime.datetime.now().year}, Team LandTECH"
+author = "mHM Developers"
+
+# -- General configuration ---------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
+
+extensions = [
+    "sphinx_design",
+    "sphinx.ext.autodoc",
+    "sphinx.ext.autosummary",
+    "sphinx.ext.autosectionlabel",
+    "sphinx.ext.intersphinx",
+    "sphinx.ext.doctest",
+    "sphinx.ext.viewcode",
+    "sphinx.ext.napoleon",  # parameters look better than with numpydoc only
+    "numpydoc",
+]
+
+# autosummaries from source-files
+autosummary_generate = True
+# dont show __init__ docstring
+autoclass_content = "class"
+# for uniqur labels/anchors
+autosectionlabel_prefix_document = True
+# sort class members
+autodoc_member_order = "groupwise"
+# autodoc_member_order = 'bysource'
+
+# Notes in boxes
+napoleon_use_admonition_for_notes = True
+# Attributes like parameters
+napoleon_use_ivar = True
+# keep "Other Parameters" section
+# https://github.com/sphinx-doc/sphinx/issues/10330
+napoleon_use_param = False
+# this is a nice class-doc layout
+numpydoc_show_class_members = True
+# class members have no separate file, so they are not in a toctree
+numpydoc_class_members_toctree = False
+# maybe switch off with:    :no-inherited-members:
+numpydoc_show_inherited_class_members = True
+# add refs to types also in parameter lists
+numpydoc_xref_param_type = True
+
+myst_enable_extensions = [
+    "colon_fence",
+]
+
+templates_path = ["_templates"]
+exclude_patterns = []
+
+
+# -- Options for HTML output -------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
+
+html_theme = "pydata_sphinx_theme"
+html_static_path = ["_static"]
+html_css_files = [
+    "css/custom.css",
+]
+
+html_logo = "_static/logo_large.svg"
+html_favicon = "_static/logo.svg"
+
+html_theme_options = {
+    "secondary_sidebar_items": ["page-toc"],
+    "footer_start": ["copyright"],
+    "show_nav_level": 2,
+    "show_toc_level": 2,
+    "icon_links": [
+        {
+            "name": "Source code",
+            "url": "https://git.ufz.de/FINAM/finam-mhm",
+            "icon": "fa-brands fa-square-gitlab",
+            "type": "fontawesome",
+            "attributes": {"target": "_blank"},
+        },
+        {
+            "name": "FINAM homepage",
+            "url": "https://finam.pages.ufz.de",
+            "icon": "_static/logo.svg",
+            "type": "local",
+            "attributes": {"target": "_blank"},
+        },
+    ],
+    "external_links": [
+        {"name": "FINAM documentation", "url": "https://finam.pages.ufz.de/finam"},
+    ],
+}
+
+# Example configuration for intersphinx: refer to the Python standard library.
+intersphinx_mapping = {
+    "Python": ("https://docs.python.org/", None),
+    "NumPy": ("http://docs.scipy.org/doc/numpy/", None),
+    "matplotlib": ("http://matplotlib.org/stable/", None),
+    "xarray": ("https://docs.xarray.dev/en/stable/", None),
+    "pytest": ("https://docs.pytest.org/en/7.1.x/", None),
+    "finam": ("https://finam.pages.ufz.de/finam/", None),
+}
diff --git a/docs/source/index.rst b/docs/source/index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..7399d9ff3bf8268925ff1b00d3f806c38a6366c7
--- /dev/null
+++ b/docs/source/index.rst
@@ -0,0 +1,40 @@
+:html_theme.sidebar_secondary.remove: true
+
+=========
+FINAM mHM
+=========
+
+mHM component for the `FINAM <https://finam.pages.ufz.de/>`_ model coupling framework.
+
+Quickstart
+----------
+
+Installation:
+
+.. code-block:: bash
+
+    pip install git+https://git.ufz.de/FINAM/finam-mhm.git
+
+For available components, see the :doc:`api`.
+
+Usage
+-----
+
+See the `example scripts <https://git.ufz.de/FINAM/finam-mhm/-/tree/main/examples>`_
+in the GitLab repository for fully functional usage examples.
+
+API References
+--------------
+
+Information about the API of finam-mhm.
+
+.. toctree::
+    :hidden:
+    :maxdepth: 1
+
+    self
+
+.. toctree::
+    :maxdepth: 1
+
+    api
diff --git a/examples/01_simple_viewer.py b/examples/01_simple_viewer.py
new file mode 100644
index 0000000000000000000000000000000000000000..c378729ebc3f86518f16d59d9f2a9f69ac45778f
--- /dev/null
+++ b/examples/01_simple_viewer.py
@@ -0,0 +1,36 @@
+"""
+Simple setup using live view modules.
+"""
+import shutil
+from datetime import datetime, timedelta
+from pathlib import Path
+
+import finam as fm
+import finam_netcdf as fm_nc
+import finam_plot as fm_plt
+from mhm import download_test
+
+import finam_mhm as fm_mhm
+
+here = Path(__file__).parent
+test_domain = here / "test_domain"
+shutil.rmtree(test_domain, ignore_errors=True)
+download_test(path=test_domain)
+
+mhm = fm_mhm.MHM(cwd=test_domain)
+runoff_viewer = fm_plt.ImagePlot(vmin=0.0, vmax=650, update_interval=24)
+# netcdf writing files
+writer = fm_nc.NetCdfTimedWriter(
+    path=here / "qmod.nc",
+    inputs={"QMOD": fm_nc.Layer(var="QMOD", xyz=("x", "y"))},
+    time_var="time",
+    step=timedelta(days=1),
+)
+
+composition = fm.Composition([mhm, writer, runoff_viewer])
+composition.initialize()
+
+mhm.outputs["L11_QMOD"] >> writer.inputs["QMOD"]
+mhm.outputs["L11_QMOD"] >> runoff_viewer.inputs["Grid"]
+
+composition.run(end_time=datetime(1991, 1, 1))
diff --git a/examples/02_meteo_couple.py b/examples/02_meteo_couple.py
new file mode 100644
index 0000000000000000000000000000000000000000..58a84c970ac5cbea2968b41c0dad91a7fee078ca
--- /dev/null
+++ b/examples/02_meteo_couple.py
@@ -0,0 +1,44 @@
+"""
+Meteo coupling setup.
+"""
+import shutil
+from datetime import datetime, timedelta
+from pathlib import Path
+
+import finam as fm
+import finam_netcdf as fm_nc
+from mhm import download_test
+
+import finam_mhm as fm_mhm
+
+here = Path(__file__).parent
+test_domain = here / "test_domain"
+shutil.rmtree(test_domain, ignore_errors=True)
+download_test(path=test_domain, domain=1)
+
+start_date = datetime(1990, 1, 1)
+end_date = datetime(1991, 1, 1)
+
+pre_reader = fm_nc.NetCdfReader(test_domain / "input" / "meteo" / "pre" / "pre.nc")
+
+mhm = fm_mhm.MHM(
+    cwd=test_domain,
+    input_names=["METEO_PRE"],
+    meteo_timestep=24,
+    ignore_input_grid=True,
+)
+# netcdf writing files
+writer = fm_nc.NetCdfTimedWriter(
+    path=here / "qmod_couple.nc",
+    inputs={"QMOD": fm_nc.Layer(var="QMOD", xyz=("x", "y"))},
+    time_var="time",
+    step=timedelta(days=1),
+)
+
+composition = fm.Composition([pre_reader, mhm, writer])
+composition.initialize()
+
+pre_reader["pre"] >> mhm.inputs["METEO_PRE"]
+mhm.outputs["L11_QMOD"] >> writer.inputs["QMOD"]
+
+composition.run(start_time=start_date, end_time=end_date)
diff --git a/examples/03_calc_aet.py b/examples/03_calc_aet.py
new file mode 100644
index 0000000000000000000000000000000000000000..b6a4b7450389876837dcc43d057fa0f3dba98a5b
--- /dev/null
+++ b/examples/03_calc_aet.py
@@ -0,0 +1,39 @@
+"""
+Simple coupling setup using live view modules.
+"""
+import shutil
+from datetime import datetime, timedelta
+from pathlib import Path
+
+import finam as fm
+import finam_netcdf as fm_nc
+import finam_plot as fm_plt
+from mhm import download_test
+
+import finam_mhm as fm_mhm
+
+here = Path(__file__).parent
+test_domain = here / "test_domain"
+shutil.rmtree(test_domain, ignore_errors=True)
+download_test(path=test_domain)
+
+mhm = fm_mhm.MHM(cwd=test_domain)
+writer = fm_nc.NetCdfTimedWriter(
+    path=here / "aet.nc",
+    inputs={
+        "AET_L01": fm_nc.Layer(var="AET_L01", xyz=("x", "y")),
+        "AET_L02": fm_nc.Layer(var="AET_L02", xyz=("x", "y")),
+        "AET": fm_nc.Layer(var="AET", xyz=("x", "y")),
+    },
+    time_var="time",
+    step=timedelta(days=1),
+)
+
+composition = fm.Composition([mhm, writer])
+composition.initialize()
+
+mhm.outputs["L1_AET_L01"] >> fm.adapters.AvgOverTime() >> writer.inputs["AET_L01"]
+mhm.outputs["L1_AET_L02"] >> fm.adapters.AvgOverTime() >> writer.inputs["AET_L02"]
+mhm.outputs["L1_AET"] >> fm.adapters.AvgOverTime() >> writer.inputs["AET"]
+
+composition.run(end_time=datetime(1994, 1, 1))
diff --git a/examples/04_time_series.py b/examples/04_time_series.py
new file mode 100644
index 0000000000000000000000000000000000000000..63ef55345d62e8f67a5de41df5e2b72164ee6af0
--- /dev/null
+++ b/examples/04_time_series.py
@@ -0,0 +1,39 @@
+"""
+CSV output of single cell runoff.
+"""
+import datetime as dt
+import shutil
+from pathlib import Path
+
+import finam as fm
+import finam_plot as fm_plt
+from mhm import download_test
+
+import finam_mhm as fm_mhm
+
+here = Path(__file__).parent
+test_domain = here / "test_domain"
+shutil.rmtree(test_domain, ignore_errors=True)
+download_test(path=test_domain)
+
+mhm = fm_mhm.MHM(cwd=test_domain)
+plot = fm_plt.TimeSeriesPlot(inputs=["Runoff"], update_interval=24)
+csv = fm.modules.CsvWriter(
+    path=here / "runoff.csv",
+    inputs=["Runoff"],
+    time_column="Time",
+    separator=",",
+    start=dt.datetime(1990, 1, 1),
+    step=dt.timedelta(hours=1),
+)
+
+composition = fm.Composition([mhm, plot, csv])
+composition.initialize()
+
+value = mhm.outputs["L1_TOTAL_RUNOFF"] >> fm.adapters.GridToValue(
+    func=lambda x: x[0, 8, 4]
+)
+value >> plot.inputs["Runoff"]
+value >> fm.adapters.AvgOverTime() >> csv["Runoff"]
+
+composition.run(end_time=dt.datetime(1991, 1, 1))
diff --git a/examples/simple_viewer.py b/examples/simple_viewer.py
deleted file mode 100644
index 716606691f79b5df7847c25d266be0af2f7c275c..0000000000000000000000000000000000000000
--- a/examples/simple_viewer.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""
-Simple coupling setup using live view modules.
-"""
-from datetime import datetime, timedelta
-
-import numpy as np
-from finam.adapters import base, time
-from finam.core.schedule import Composition
-from finam.modules.visual import time_series
-from matplotlib import pyplot as plt
-
-from finam_mhm_module import Mhm
-
-
-def grid_select(grid):
-    col, row = 3, 5
-    return grid[col * 9 + row]
-
-
-plot = time_series.TimeSeriesView(
-    start=datetime(1990, 1, 1),
-    step=timedelta(days=1),
-    inputs=["Runoff"],
-    intervals=[1],
-)
-
-mhm = Mhm(cwd="../../MHM/mhm")
-
-composition = Composition([mhm, plot])
-composition.initialize()
-
-grid_value = mhm.outputs["L1_TOTAL_RUNOFF"] >> base.GridToValue(func=grid_select)
-grid_value >> time.LinearInterpolation() >> plot.inputs["Runoff"]
-
-composition.run(datetime(1992, 1, 1))
-plt.show()
diff --git a/pyproject.toml b/pyproject.toml
index 811f61f5ff56bb3dc180c87ec011c749da72a0be..17e61d55c347da944ae052f94111040722eca110 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,21 +1,139 @@
 [build-system]
 requires = [
-    "setuptools>=42",
-    "wheel",
-    "setuptools_scm[toml]>=3.5",
+  "hatchling>=1.8.0",
+  "hatch-vcs",
 ]
-build-backend = "setuptools.build_meta"
+build-backend = "hatchling.build"
 
-[tool.setuptools_scm]
-write_to = "src/finam_mhm_module/_version.py"
-write_to_template = "__version__ = '{version}'"
-local_scheme = "no-local-version"
+[project]
+requires-python = ">=3.8"
+name = "finam_mhm"
+description = "FINAM module for mHM."
+authors = [{name = "FINAM Developers", email = "finam@ufz.de"}]
+readme = "README.md"
+license = "LGPL-3.0"
+dynamic = ["version"]
+classifiers = [
+  "Development Status :: 4 - Beta",
+  "Intended Audience :: Developers",
+  "Intended Audience :: End Users/Desktop",
+  "Intended Audience :: Science/Research",
+  "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
+  "Natural Language :: English",
+  "Operating System :: Unix",
+  "Operating System :: Microsoft",
+  "Operating System :: MacOS",
+  "Programming Language :: Python",
+  "Programming Language :: Python :: 3",
+  "Programming Language :: Python :: 3 :: Only",
+  "Programming Language :: Python :: 3.8",
+  "Programming Language :: Python :: 3.9",
+  "Programming Language :: Python :: 3.10",
+  "Programming Language :: Python :: 3.11",
+  "Topic :: Scientific/Engineering",
+  "Topic :: Software Development",
+  "Topic :: Utilities",
+]
+dependencies = [
+  "numpy>=1.17.0",
+  "mhm>=5.13.1",
+  "finam",  # TODO: add v0.5 before release
+  "f90nml",
+]
+
+[project.urls]
+Homepage = "https://FINAM.pages.ufz.de/"
+Documentation = "https://FINAM.pages.ufz.de/finam-mhm/"
+Source = "https://git.ufz.de/FINAM/finam-mhm"
+Tracker = "https://git.ufz.de/FINAM/finam-mhm/-/issues"
+Changelog = "https://git.ufz.de/FINAM/finam-mhm/-/blob/main/CHANGELOG.md"
+
+[project.optional-dependencies]
+doc = [
+  "sphinx>=6",
+  "pydata-sphinx-theme==0.13",
+  "numpydoc>=1.1",
+  "sphinx-design>=0.4",
+  "myst-parser>=1.0",
+  "docutils>=0.18", # mdinclude with myst
+]
+test = ["pytest-cov>=3"]
+
+[tool.hatch.metadata]
+allow-direct-references = true
+
+[tool.hatch.version]
+source = "vcs"
 fallback_version = "0.0.0.dev0"
 
+[tool.hatch.version.raw-options]
+local_scheme = "no-local-version"
+
+[tool.hatch.build.hooks.vcs]
+version-file = "src/finam_mhm/_version.py"
+template = "__version__ = '{version}'"
+
+[tool.hatch.build.targets.sdist]
+include = [
+  "/src",
+  "/tests",
+]
+
+[tool.hatch.build.targets.wheel]
+packages = ["src/finam_mhm"]
+
 [tool.black]
 exclude = "_version.py"
 target-version = [
-    "py36",
-    "py37",
-    "py38",
+  "py38",
+  "py39"
+]
+
+[tool.isort]
+profile = "black"
+multi_line_output = 3
+
+[tool.coverage]
+[tool.coverage.run]
+source = ["finam"]
+omit = [
+  "*docs*",
+  "*examples*",
+  "*tests*",
 ]
+
+[tool.coverage.report]
+exclude_lines = [
+  "pragma: no cover",
+  "def __repr__",
+  "def __str__",
+]
+
+[tool.pylint]
+[tool.pylint.master]
+extension-pkg-whitelist = [
+  "numpy",
+  "scipy",
+]
+ignore = [
+  "_version.py",
+]
+
+[tool.pylint.message_control]
+max-line-length = 120
+disable = [
+  "C0103", # ignore invalid-names like "x", "y"
+  "C0415", # ignore defered imports
+  "R0801", # ignore code duplications
+]
+
+[tool.pylint.reports]
+output-format = "colorized"
+
+[tool.pylint.design]
+max-args = 15
+max-locals = 20
+max-attributes = 20
+max-parents = 10
+min-public-methods = 0
+max-branches=20
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 831442690a23e4fe85b6f4eb583db3a66df33ec1..0000000000000000000000000000000000000000
--- a/setup.cfg
+++ /dev/null
@@ -1,58 +0,0 @@
-[metadata]
-name = finam_mhm_module
-description = Finam mHM wrapper
-long_description = file: README.md
-long_description_content_type = text/markdown
-url = https://git.ufz.de/FINAM/finam-mhm-module
-author = FINAM Developers
-author_email = finam@ufz.de
-maintainer = FINAM Developers
-maintainer_email = finam@ufz.de
-license = LGPLv3
-license_file = LICENSE
-platforms = any
-classifiers =
-    Development Status :: 3 - Alpha
-    Intended Audience :: Developers
-    Intended Audience :: End Users/Desktop
-    Intended Audience :: Science/Research
-    License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
-    Natural Language :: English
-    Operating System :: MacOS
-    Operating System :: MacOS :: MacOS X
-    Operating System :: POSIX
-    Operating System :: Unix
-    Programming Language :: Python
-    Programming Language :: Python :: 3
-    Programming Language :: Python :: 3 :: Only
-    Programming Language :: Python :: 3.6
-    Programming Language :: Python :: 3.7
-    Programming Language :: Python :: 3.8
-    Programming Language :: Python :: 3.9
-    Topic :: Scientific/Engineering
-    Topic :: Software Development
-    Topic :: Utilities
-project_urls =
-    Documentation = https://FINAM.pages.ufz.de/finam/
-    Source = https://git.ufz.de/FINAM/finam-mhm-module
-    Tracker = https://git.ufz.de/FINAM/finam-mhm-module/-/issues
-    Changelog = https://git.ufz.de/FINAM/finam-mhm-module/-/blob/main/CHANGELOG.md
-
-[options]
-package_dir =
-    = src
-packages = find:
-install_requires =
-    mhm_pybind @ git+https://git.ufz.de/mhm/mhm_pybind.git
-    finam @ git+https://git.ufz.de/FINAM/finam.git
-python_requires = >=3.6
-zip_safe = False
-
-[options.packages.find]
-where = src
-
-[options.extras_require]
-doc =
-    sphinx>=3,<4
-test =
-    pytest-cov>=3
diff --git a/src/finam_mhm/__init__.py b/src/finam_mhm/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..3ba60ad846eff19002a71ba01c03c1d3c7f051b8
--- /dev/null
+++ b/src/finam_mhm/__init__.py
@@ -0,0 +1,66 @@
+"""
+mHM FINAM component.
+
+.. toctree::
+   :hidden:
+
+   self
+
+Component
+=========
+
+.. autosummary::
+   :toctree: api
+
+    MHM
+
+Subpackages
+===========
+
+.. autosummary::
+   :toctree: api
+
+   constants
+
+IO-Infos
+========
+
+.. currentmodule:: finam_mhm.constants
+
+.. autosummary::
+
+    OUTPUT_META
+    OUTPUT_HORIZONS_META
+    OUTPUT_CALC_META
+    OUTPUT_CALC_HORIZONS_META
+    MRM_OUTPUT_META
+    INPUT_UNITS
+
+"""
+from . import constants
+from .component import MHM
+from .constants import (
+    INPUT_UNITS,
+    MRM_OUTPUT_META,
+    OUTPUT_CALC_HORIZONS_META,
+    OUTPUT_CALC_META,
+    OUTPUT_HORIZONS_META,
+    OUTPUT_META,
+)
+
+try:
+    from ._version import __version__
+except ModuleNotFoundError:  # pragma: no cover
+    # package is not installed
+    __version__ = "0.0.0.dev0"
+
+__all__ = ["constants"]
+__all__ += ["MHM"]
+__all__ += [
+    "INPUT_UNITS",
+    "MRM_OUTPUT_META",
+    "OUTPUT_CALC_HORIZONS_META",
+    "OUTPUT_CALC_META",
+    "OUTPUT_HORIZONS_META",
+    "OUTPUT_META",
+]
diff --git a/src/finam_mhm/component.py b/src/finam_mhm/component.py
new file mode 100644
index 0000000000000000000000000000000000000000..631f2e6827719a291c1abbd31d630056d5f938a3
--- /dev/null
+++ b/src/finam_mhm/component.py
@@ -0,0 +1,367 @@
+"""
+FINAM mHM module.
+"""
+from datetime import datetime, timedelta
+from pathlib import Path
+
+import f90nml
+import finam as fm
+import mhm
+
+from .constants import (
+    HOURS_TO_TIMESTEP,
+    INPUT_UNITS,
+    MRM_OUTPUT_META,
+    OUTPUT_CALC,
+    OUTPUT_CALC_HORIZON,
+    OUTPUT_CALC_HORIZONS_META,
+    OUTPUT_CALC_META,
+    OUTPUT_HORIZONS_META,
+    OUTPUT_META,
+)
+
+
+def _horizon_name(name, horizon):
+    return name + "_L" + str(horizon).zfill(2)
+
+
+def _get_grid_name(var):
+    grid_name = var.split("_")[0]
+    return "L1" if grid_name == "METEO" else grid_name
+
+
+def _get_var_name(var):
+    return "_".join(var.split("_")[1:])
+
+
+def _get_meteo_inputs(inputs):
+    return {
+        _get_var_name(var).lower(): var for var in inputs if var.startswith("METEO")
+    }
+
+
+class MHM(fm.TimeComponent):
+    """
+    mHM FINAM compoment.
+
+    Parameters
+    ----------
+    namelist_mhm : str, optional
+        path to mHM configuration namelist, by default "mhm.nml"
+    namelist_mhm_param : str, optional
+        path to mHM parameter namelist, by default "mhm_parameter.nml"
+    namelist_mhm_output : str, optional
+        path to mHM output namelist, by default "mhm_outputs.nml"
+    namelist_mrm_output : str, optional
+        path to mRM output namelist, by default "mrm_outputs.nml"
+    cwd : str, optional
+        desired working directory, by default "."
+    input_names : list of str, optional
+        Names of input variables coupled via FINAM, by default None
+    meteo_timestep : int, optional
+        meteo coupling time-step in hours (1 or 24), by default None
+    ignore_input_grid : bool, optional
+        use any input grid without checking compatibility, by default False
+
+    Raises
+    ------
+    ValueError
+        If a given input name is invalid.
+    ValueError
+        If the given meteo time-step is invalid
+    """
+
+    def __init__(
+        self,
+        namelist_mhm="mhm.nml",
+        namelist_mhm_param="mhm_parameter.nml",
+        namelist_mhm_output="mhm_outputs.nml",
+        namelist_mrm_output="mrm_outputs.nml",
+        cwd=".",
+        input_names=None,
+        meteo_timestep=None,
+        ignore_input_grid=False,
+    ):
+        super().__init__()
+        self.gridspec = {}
+        self.no_data = None
+        self.number_of_horizons = None
+        self.config = f90nml.read(Path(cwd) / namelist_mhm).todict()
+        # check mrm case
+        case = self.config.get("processselection", {}).get("processcase", [])
+        mrm_set = case[7] if len(case) >= 8 else None
+        self.mrm_active = mrm_set is not None and mrm_set > 0
+        self.OUTPUT_NAMES = None
+        self.INPUT_NAMES = (
+            [] if input_names is None else [n.upper() for n in input_names]
+        )
+        for in_name in self.INPUT_NAMES:
+            if in_name not in INPUT_UNITS:
+                msg = f"mHM: input '{in_name}' is not available."
+                raise ValueError(msg)
+        self.namelist_mhm = namelist_mhm
+        self.namelist_mhm_param = namelist_mhm_param
+        self.namelist_mhm_output = namelist_mhm_output
+        self.namelist_mrm_output = namelist_mrm_output
+        self.cwd = cwd  # needed for @fm.tools.execute_in_cwd
+        # mHM always has hourly stepping
+        self.step = timedelta(hours=1)
+        self.meteo_timestep = meteo_timestep
+        self.meteo_inputs = _get_meteo_inputs(self.INPUT_NAMES)
+        self.ignore_input_grid = ignore_input_grid
+
+        if self.meteo_inputs and self.meteo_timestep not in HOURS_TO_TIMESTEP:
+            msg = (
+                "mHM: found meteo inputs but meteo time-step not valid, "
+                f"got {self.meteo_timestep}"
+            )
+            raise ValueError(msg)
+
+    @property
+    def next_time(self):
+        """Next pull time."""
+        return self.time + self.step
+
+    @property
+    def horizons(self):
+        """Iterator for all horizons starting at 1."""
+        return range(1, self.number_of_horizons + 1)
+
+    @fm.tools.execute_in_cwd
+    def _initialize(self):
+        # only show errors
+        mhm.model.set_verbosity(level=1)
+        # configure coupling
+        if self.meteo_inputs:
+            kwargs = {f"meteo_expect_{var}": True for var in self.meteo_inputs}
+            kwargs["couple_case"] = 1
+            kwargs["meteo_timestep"] = self.meteo_timestep
+            mhm.model.config_coupling(**kwargs)
+        # init
+        mhm.model.init(
+            namelist_mhm=self.namelist_mhm,
+            namelist_mhm_param=self.namelist_mhm_param,
+            namelist_mhm_output=self.namelist_mhm_output,
+            namelist_mrm_output=self.namelist_mrm_output,
+            cwd=".",
+        )
+        # disable file output of mHM
+        mhm.model.disable_output()
+        mhm.run.prepare()
+        # only one domain possible
+        mhm.run.prepare_domain()
+        self.number_of_horizons = mhm.get.number_of_horizons()
+        # prepare outputs
+        self.OUTPUT_NAMES = list(OUTPUT_META)
+        if self.mrm_active:
+            self.OUTPUT_NAMES += list(MRM_OUTPUT_META)
+        self.OUTPUT_NAMES += [
+            _horizon_name(var, horizon)
+            for var in OUTPUT_HORIZONS_META
+            for horizon in self.horizons
+        ]
+        self.OUTPUT_NAMES += list(OUTPUT_CALC_META)
+        self.OUTPUT_NAMES += [
+            _horizon_name(var, horizon)
+            for var in OUTPUT_CALC_HORIZONS_META
+            for horizon in self.horizons
+        ]
+        # get start time
+        year, month, day, hour = mhm.run.current_time()
+        self.time = datetime(year=year, month=month, day=max(day, 0), hour=max(hour, 0))
+        # first time step compensate by negative values in mHM
+        if day < 0 or hour < 0:
+            self.time += timedelta(days=min(day, 0), hours=min(hour, 0))
+
+        # store Grid specifications
+        # get grid info l0 (swap rows/cols to get "ij" indexing)
+        nrows, ncols, __, xll, yll, cell_size, no_data = mhm.get.l0_domain_info()
+        self.no_data = no_data
+        self.gridspec["L0"] = fm.EsriGrid(
+            ncols=ncols, nrows=nrows, cellsize=cell_size, xllcorner=xll, yllcorner=yll
+        )
+        # get grid info l1 (swap rows/cols to get "ij" indexing)
+        nrows, ncols, __, xll, yll, cell_size, no_data = mhm.get.l1_domain_info()
+        self.gridspec["L1"] = fm.EsriGrid(
+            ncols=ncols, nrows=nrows, cellsize=cell_size, xllcorner=xll, yllcorner=yll
+        )
+        if self.mrm_active:
+            # get grid info l11 (swap rows/cols to get "ij" indexing)
+            nrows, ncols, __, xll, yll, cell_size, no_data = mhm.get.l11_domain_info()
+            self.gridspec["L11"] = fm.EsriGrid(
+                ncols=ncols,
+                nrows=nrows,
+                cellsize=cell_size,
+                xllcorner=xll,
+                yllcorner=yll,
+            )
+        # get grid info l2 (swap rows/cols to get "ij" indexing)
+        nrows, ncols, __, xll, yll, cell_size, no_data = mhm.get.l2_domain_info()
+        self.gridspec["L2"] = fm.EsriGrid(
+            ncols=ncols, nrows=nrows, cellsize=cell_size, xllcorner=xll, yllcorner=yll
+        )
+        for var, meta in OUTPUT_META.items():
+            grid_name = _get_grid_name(var)
+            self.outputs.add(
+                name=var,
+                time=self.time,
+                grid=self.gridspec[grid_name],
+                missing_value=self.no_data,
+                _FillValue=self.no_data,
+                **meta,
+            )
+        if self.mrm_active:
+            for var, meta in MRM_OUTPUT_META.items():
+                grid_name = _get_grid_name(var)
+                self.outputs.add(
+                    name=var,
+                    time=self.time,
+                    grid=self.gridspec[grid_name],
+                    missing_value=self.no_data,
+                    _FillValue=self.no_data,
+                    **meta,
+                )
+        for var, meta in OUTPUT_CALC_META.items():
+            grid_name = _get_grid_name(var)
+            self.outputs.add(
+                name=var,
+                time=self.time,
+                grid=self.gridspec[grid_name],
+                missing_value=self.no_data,
+                _FillValue=self.no_data,
+                **meta,
+            )
+        for var, meta in OUTPUT_HORIZONS_META.items():
+            grid_name = _get_grid_name(var)
+            for horizon in self.horizons:
+                # add horizon number to long name
+                n_meta = {
+                    att: val.format(n=horizon) if att == "long_name" else val
+                    for att, val in meta.items()
+                }
+                self.outputs.add(
+                    name=_horizon_name(var, horizon),
+                    time=self.time,
+                    grid=self.gridspec[grid_name],
+                    missing_value=self.no_data,
+                    _FillValue=self.no_data,
+                    **n_meta,
+                )
+        for var, meta in OUTPUT_CALC_HORIZONS_META.items():
+            grid_name = _get_grid_name(var)
+            for horizon in self.horizons:
+                # add horizon number to long name
+                n_meta = {
+                    att: val.format(n=horizon) if att == "long_name" else val
+                    for att, val in meta.items()
+                }
+                self.outputs.add(
+                    name=_horizon_name(var, horizon),
+                    time=self.time,
+                    grid=self.gridspec[grid_name],
+                    missing_value=self.no_data,
+                    _FillValue=self.no_data,
+                    **n_meta,
+                )
+        for var in self.INPUT_NAMES:
+            grid_name = _get_grid_name(var)
+            self.inputs.add(
+                name=var,
+                time=self.time,
+                grid=None if self.ignore_input_grid else self.gridspec[grid_name],
+                missing_value=self.no_data,
+                _FillValue=self.no_data,
+                units=INPUT_UNITS[var].format(
+                    ts=HOURS_TO_TIMESTEP[self.meteo_timestep]
+                ),
+            )
+        self.create_connector()
+
+    def _connect(self, start_time):
+        push_data = {var: mhm.get_variable(var) for var in OUTPUT_META}
+        if self.mrm_active:
+            push_data.update({var: mhm.get_variable(var) for var in MRM_OUTPUT_META})
+        push_data.update({var: func() for var, func in OUTPUT_CALC.items()})
+        push_data.update(
+            {
+                _horizon_name(var, horizon): mhm.get_variable(var, index=horizon)
+                for var in OUTPUT_HORIZONS_META
+                for horizon in self.horizons
+            }
+        )
+        push_data.update(
+            {
+                _horizon_name(var, horizon): func(horizon)
+                for var, func in OUTPUT_CALC_HORIZON.items()
+                for horizon in self.horizons
+            }
+        )
+        self.try_connect(start_time=start_time, push_data=push_data)
+
+    @fm.tools.execute_in_cwd
+    def _update(self):
+        # Don't run further than mHM can
+        if mhm.run.finished():
+            return
+        # set meteo data
+        if self.meteo_inputs:
+            # every hour or every 24 hours
+            if self.time.hour % self.meteo_timestep == 0:
+                kwargs = {
+                    var: self.inputs[name].pull_data(self.next_time)[0].magnitude
+                    for var, name in self.meteo_inputs.items()
+                }
+                kwargs["time"] = self.time
+                mhm.set_meteo(**kwargs)
+        # run mhm
+        mhm.run.do_time_step()
+        # update time
+        year, month, day, hour = mhm.run.current_time()
+        self.time = datetime(year=year, month=month, day=day, hour=hour)
+        # push outputs
+        for var in OUTPUT_META:
+            if not self.outputs[var].has_targets:
+                continue
+            self.outputs[var].push_data(
+                data=mhm.get_variable(var),
+                time=self.time,
+            )
+        if self.mrm_active:
+            for var in OUTPUT_META:
+                if not self.outputs[var].has_targets:
+                    continue
+                self.outputs[var].push_data(
+                    data=mhm.get_variable(var),
+                    time=self.time,
+                )
+        for var, func in OUTPUT_CALC.items():
+            if not self.outputs[var].has_targets:
+                continue
+            self.outputs[var].push_data(
+                data=func(),
+                time=self.time,
+            )
+        for var in OUTPUT_HORIZONS_META:
+            for horizon in self.horizons:
+                name = _horizon_name(var, horizon)
+                if not self.outputs[name].has_targets:
+                    continue
+                self.outputs[name].push_data(
+                    data=mhm.get_variable(var, index=horizon),
+                    time=self.time,
+                )
+        for var, func in OUTPUT_CALC_HORIZON.items():
+            for horizon in self.horizons:
+                name = _horizon_name(var, horizon)
+                if not self.outputs[name].has_targets:
+                    continue
+                self.outputs[name].push_data(
+                    data=func(horizon),
+                    time=self.time,
+                )
+
+    @fm.tools.execute_in_cwd
+    def _finalize(self):
+        mhm.run.finalize_domain()
+        mhm.run.finalize()
+        mhm.model.finalize()
diff --git a/src/finam_mhm/constants.py b/src/finam_mhm/constants.py
new file mode 100644
index 0000000000000000000000000000000000000000..bcb9c68e74897fc56d90f82e5940990e13416ff2
--- /dev/null
+++ b/src/finam_mhm/constants.py
@@ -0,0 +1,261 @@
+"""
+Common constants giving information about available IO and their meta-data.
+
+Constants
+=========
+
+.. autosummary::
+
+    OUTPUT_META
+    OUTPUT_HORIZONS_META
+    OUTPUT_CALC_META
+    OUTPUT_CALC_HORIZONS_META
+    MRM_OUTPUT_META
+    INPUT_UNITS
+
+----
+
+.. autodata:: OUTPUT_META
+    :no-value:
+.. pprint:: OUTPUT_META
+
+.. autodata:: OUTPUT_HORIZONS_META
+    :no-value:
+.. pprint:: OUTPUT_HORIZONS_META
+
+.. autodata:: OUTPUT_CALC_META
+    :no-value:
+.. pprint:: OUTPUT_CALC_META
+
+.. autodata:: OUTPUT_CALC_HORIZONS_META
+    :no-value:
+.. pprint:: OUTPUT_CALC_HORIZONS_META
+
+.. autodata:: MRM_OUTPUT_META
+    :no-value:
+.. pprint:: MRM_OUTPUT_META
+
+.. autodata:: INPUT_UNITS
+    :no-value:
+.. pprint:: INPUT_UNITS
+
+"""
+# pylint: disable=R1735
+import mhm
+import numpy as np
+
+OUTPUT_META = {
+    "L0_GRIDDED_LAI": dict(units="1", long_name="leaf area index"),
+    "L1_FSEALED": dict(units="1", long_name="Fraction of sealed area"),
+    "L1_FNOTSEALED": dict(units="1", long_name="Fraction of unsealed area"),
+    "L1_INTER": dict(units="mm / h", long_name="Interception"),  # interception (1)
+    "L1_SNOWPACK": dict(units="mm / h", long_name="Snowpack"),  # snowpack (2)
+    "L1_SEALSTW": dict(
+        units="mm / h", long_name="Retention storage of impervious areas"
+    ),  # sealedSTW (6)
+    "L1_UNSATSTW": dict(units="mm / h", long_name="upper soil storage"),  # unsatSTW (7)
+    "L1_SATSTW": dict(units="mm / h", long_name="groundwater storage"),  # satSTW (8)
+    "L1_NEUTRONS": dict(
+        units="mm / h", long_name="Ground Albedo Neutrons"
+    ),  # neutrons (18)
+    "L1_PET_CALC": dict(
+        units="mm / h", long_name="potential evapotranspiration"
+    ),  # PET (9)
+    "L1_AETCANOPY": dict(
+        units="mm / h", long_name="Real evaporation intensity from canopy"
+    ),
+    "L1_AETSEALED": dict(
+        units="mm / h", long_name="Real evap. from free water surfaces"
+    ),
+    "L1_TOTAL_RUNOFF": dict(units="mm / h", long_name="Generated runoff"),  # Q (11)
+    "L1_RUNOFFSEAL": dict(
+        units="mm / h", long_name="Direct runoff from impervious areas"
+    ),
+    "L1_FASTRUNOFF": dict(units="mm / h", long_name="Fast runoff component"),
+    "L1_SLOWRUNOFF": dict(units="mm / h", long_name="Slow runoff component"),
+    "L1_BASEFLOW": dict(units="mm / h", long_name="Baseflow"),
+    "L1_PERCOL": dict(units="mm / h", long_name="Percolation"),
+    "L1_PREEFFECT": dict(
+        units="mm / h", long_name="Effective precip. depth"
+    ),  # preEffect (20)
+    "L1_SOILMOIST_VOL_ALL": dict(
+        units="1", long_name="average soil moisture over all layers"
+    ),  # SM_Lall (5)
+}
+"""meta information about available outputs in mHM."""
+
+MRM_OUTPUT_META = {
+    "L11_QMOD": dict(units="m^3 / s", long_name="Simulated discharge"),
+    "L11_QOUT": dict(units="m^3 / s", long_name="Total outflow from cells"),
+}
+"""meta information about available outputs in mRM."""
+
+OUTPUT_HORIZONS_META = {
+    "L1_SOILMOIST": dict(
+        units="mm", long_name="soil water content of soil layer {n}"
+    ),  # SWC_Lxx (3)
+    "L1_SOILMOIST_VOL": dict(
+        units="mm / mm", long_name="volumetric soil moisture of soil layer {n}"
+    ),  # SM_Lxx (4)
+    "L1_SOILMOISTSAT": dict(
+        units="mm", long_name="saturation soil moisture of soil layer {n}"
+    ),
+    "L1_AETSOIL": dict(units="mm / h", long_name="actual ET  of soil layer {n}"),
+    "L1_INFILSOIL": dict(
+        units="mm / h", long_name="infiltration intensity of soil layer {n}"
+    ),
+    # missing
+    # L1_MELT
+    # L1_RAIN
+    # L1_SNOW
+    # L1_THROUGHFALL
+}
+"""meta information about available outputs per horizon in mHM."""
+
+OUTPUT_CALC_META = {
+    # sum(aETSoil(horizons)) * fNotSealed + aETCanopy + aETSealed * fSealed
+    "L1_AET": dict(units="mm / h", long_name="actual Evapotranspiration"),  # aET (10)
+    # runoffSeal * fSealed
+    "L1_QD": dict(
+        units="mm / h", long_name="direct runoff generated by every cell (runoffSeal)"
+    ),  # QD (12)
+    # fastRunoff * fNotSealed
+    "L1_QIF": dict(
+        units="mm / h", long_name="fast interflow generated by every cell (fastRunoff)"
+    ),  # QIf (13)
+    # slowRunoff * fNotSealed
+    "L1_QIS": dict(
+        units="mm / h", long_name="slow interflow generated by every cell (slowRunoff)"
+    ),  # QIs (14)
+    # baseflow * fNotSealed
+    "L1_QB": dict(
+        units="mm / h", long_name="baseflow generated by every cell"
+    ),  # QB (15)
+    # percol * fNotSealed
+    "L1_RECHARGE": dict(
+        units="mm / h", long_name="groundwater recharge"
+    ),  # recharge (16)
+}
+"""meta information about calculated outputs in mHM."""
+
+OUTPUT_CALC_HORIZONS_META = {
+    # infilSoil(horizon) * fNotSealed
+    "L1_SOIL_INFIL": dict(
+        units="mm / h", long_name="infiltration flux from soil layer {n}"
+    ),  # soil_infil_Lxx (17)
+    # aETSoil(horizon) * fNotSealed
+    "L1_AET": dict(
+        units="mm / h", long_name="actual Evapotranspiration from soil layer {n}"
+    ),  # aET_Lxx (19)
+}
+"""meta information about calculated outputs per horizon in mHM."""
+
+INPUT_UNITS = {
+    # "L0_GRIDDED_LAI": "1",
+    "METEO_PRE": "mm / {ts}",
+    "METEO_TEMP": "degC",
+    "METEO_PET": "mm / {ts}",
+    "METEO_TMIN": "degC",
+    "METEO_TMAX": "degC",
+    "METEO_NETRAD": "W m-2",
+    "METEO_ABSVAPPRESS": "Pa",
+    "METEO_WINDSPEED": "m s-1",
+    "METEO_SSRD": "W m-2",
+    "METEO_STRD": "W m-2",
+    "METEO_TANN": "degC",
+}
+"""units of the available inputs in mHM."""
+
+HOURS_TO_TIMESTEP = {1: "h", 24: "d"}
+"""timestep string from hours."""
+
+
+def _fill_var(var, grid="l1"):
+    grid_info = getattr(mhm.get, grid + "_domain_info")()
+    # mask in mHM is the opposite in numpy (selection)
+    sel = mhm.get_mask(grid, indexing="xy", selection=True)
+    sel = sel.ravel(order="F")
+    output = np.ma.empty_like(sel, dtype=float)
+    output.fill_value = grid_info[-1]
+    output.mask = ~sel
+    output[sel] = var
+    return output.reshape((grid_info[0], grid_info[1]), order="C")
+
+
+def _L1_AET():
+    # sum(aETSoil(horizons)) * fNotSealed + aETCanopy + aETSealed * fSealed
+    fsealed = mhm.get_variable("L1_FSEALED", compressed=True)
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    aetcanopy = mhm.get_variable("L1_AETCANOPY", compressed=True)
+    aetsealed = mhm.get_variable("L1_AETSEALED", compressed=True)
+    horizons = mhm.get.number_of_horizons()
+
+    sum_aetsoil = np.zeros_like(fsealed, dtype=float)
+    for n in range(1, horizons + 1):
+        sum_aetsoil += mhm.get_variable("L1_AETSOIL", index=n, compressed=True)
+
+    return _fill_var(sum_aetsoil * fnotsealed + aetcanopy + aetsealed * fsealed)
+
+
+def _L1_QD():
+    # runoffSeal * fSealed
+    fsealed = mhm.get_variable("L1_FSEALED", compressed=True)
+    runoffseal = mhm.get_variable("L1_RUNOFFSEAL", compressed=True)
+    return _fill_var(runoffseal * fsealed)
+
+
+def _L1_QIF():
+    # fastRunoff * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    fastrunoff = mhm.get_variable("L1_FASTRUNOFF", compressed=True)
+    return _fill_var(fastrunoff * fnotsealed)
+
+
+def _L1_QIS():
+    # slowRunoff * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    slowrunoff = mhm.get_variable("L1_SLOWRUNOFF", compressed=True)
+    return _fill_var(slowrunoff * fnotsealed)
+
+
+def _L1_QB():
+    # baseflow * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    baseflow = mhm.get_variable("L1_BASEFLOW", compressed=True)
+    return _fill_var(baseflow * fnotsealed)
+
+
+def _L1_RECHARGE():
+    # percol * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    percol = mhm.get_variable("L1_PERCOL", compressed=True)
+    return _fill_var(percol * fnotsealed)
+
+
+def _L1_SOIL_INFIL_N(n):
+    # infilSoil(horizon) * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    infilsoil = mhm.get_variable("L1_INFILSOIL", index=n, compressed=True)
+    return _fill_var(infilsoil * fnotsealed)
+
+
+def _L1_AET_N(n):
+    # aETSoil(horizon) * fNotSealed
+    fnotsealed = mhm.get_variable("L1_FNOTSEALED", compressed=True)
+    aetsoil = mhm.get_variable("L1_AETSOIL", index=n, compressed=True)
+    return _fill_var(aetsoil * fnotsealed)
+
+
+OUTPUT_CALC = {
+    "L1_AET": _L1_AET,
+    "L1_QD": _L1_QD,
+    "L1_QIF": _L1_QIF,
+    "L1_QIS": _L1_QIS,
+    "L1_QB": _L1_QB,
+    "L1_RECHARGE": _L1_RECHARGE,
+}
+
+OUTPUT_CALC_HORIZON = {
+    "L1_SOIL_INFIL": _L1_SOIL_INFIL_N,
+    "L1_AET": _L1_AET_N,
+}
diff --git a/src/finam_mhm_module/__init__.py b/src/finam_mhm_module/__init__.py
deleted file mode 100644
index 23a644a2e30ef39961df939476eee7ce3b5439e7..0000000000000000000000000000000000000000
--- a/src/finam_mhm_module/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from .mhm import Mhm
diff --git a/src/finam_mhm_module/mhm.py b/src/finam_mhm_module/mhm.py
deleted file mode 100644
index c2b0fe3d4e7dc105d343106ec6ff64a5220bd715..0000000000000000000000000000000000000000
--- a/src/finam_mhm_module/mhm.py
+++ /dev/null
@@ -1,163 +0,0 @@
-"""
-FINAM mHM module.
-"""
-from datetime import datetime
-
-import mhm_pybind as mp
-import numpy as np
-from finam.core.interfaces import ComponentStatus
-from finam.core.sdk import ATimeComponent, Input, Output
-from finam.data.grid import Grid, GridSpec
-from finam.tools.cwd_helper import execute_in_cwd
-
-
-class Mhm(ATimeComponent):
-    OUTPUT_NAMES = [
-        "L0_GRIDDED_LAI",
-        "L1_FSEALED",
-        "L1_FNOTSEALED",
-        "L1_INTER",
-        "L1_SNOWPACK",
-        "L1_SEALSTW",
-        "L1_UNSATSTW",
-        "L1_SATSTW",
-        "L1_NEUTRONS",
-        "L1_PET_CALC",
-        "L1_AETCANOPY",
-        "L1_AETSEALED",
-        "L1_TOTAL_RUNOFF",
-        "L1_RUNOFFSEAL",
-        "L1_FASTRUNOFF",
-        "L1_SLOWRUNOFF",
-        "L1_BASEFLOW",
-        "L1_PERCOL",
-        "L1_PREEFFECT",
-        "L1_SOILMOIST_VOL_ALL",
-        "L11_QMOD",
-        "L11_QOUT",
-        "L11_QTIN",
-        "L11_QTR",
-    ]
-
-    def __init__(
-        self,
-        namelist_mhm="mhm.nml",
-        namelist_mhm_param="mhm_parameter.nml",
-        namelist_mhm_output="mhm_outputs.nml",
-        namelist_mrm_output="mrm_outputs.nml",
-        cwd=".",
-        input_names=None,
-    ):
-        self.INPUT_NAMES = [] if input_names is None else list(input_names)
-        super(Mhm, self).__init__()
-        self.namelist_mhm = namelist_mhm
-        self.namelist_mhm_param = namelist_mhm_param
-        self.namelist_mhm_output = namelist_mhm_output
-        self.namelist_mrm_output = namelist_mrm_output
-        self.cwd = cwd  # needed for @execute_in_cwd
-        self._status = ComponentStatus.CREATED
-
-    @execute_in_cwd
-    def initialize(self):
-        super().initialize()
-        mp.mhm.init(
-            namelist_mhm=self.namelist_mhm,
-            namelist_mhm_param=self.namelist_mhm_param,
-            namelist_mhm_output=self.namelist_mhm_output,
-            namelist_mrm_output=self.namelist_mrm_output,
-            cwd=".",
-        )
-        mp.run.prepare()
-        mp.run.prepare_domain()
-        # set time
-        year, month, day, hour = mp.run.current_time()
-        hour = max(hour, 0)  # fix for first time step
-        self._time = datetime(year=year, month=month, day=day, hour=hour)
-        self.gridspec = {}
-        # get grid info l0 (swap rows/cols to get "ij" indexing)
-        nrows, ncols, __, xll, yll, cell_size, no_data = mp.get.l0_domain_info()
-        self.no_data = no_data
-        self.gridspec["L0"] = GridSpec(
-            ncols=ncols, nrows=nrows, cell_size=cell_size, xll=xll, yll=yll
-        )
-        # get grid info l1 (swap rows/cols to get "ij" indexing)
-        nrows, ncols, __, xll, yll, cell_size, no_data = mp.get.l1_domain_info()
-        self.gridspec["L1"] = GridSpec(
-            ncols=ncols, nrows=nrows, cell_size=cell_size, xll=xll, yll=yll
-        )
-        # get grid info l11 (swap rows/cols to get "ij" indexing)
-        nrows, ncols, __, xll, yll, cell_size, no_data = mp.get.l11_domain_info()
-        self.gridspec["L11"] = GridSpec(
-            ncols=ncols, nrows=nrows, cell_size=cell_size, xll=xll, yll=yll
-        )
-        # get grid info l2 (swap rows/cols to get "ij" indexing)
-        nrows, ncols, __, xll, yll, cell_size, no_data = mp.get.l2_domain_info()
-        self.gridspec["L2"] = GridSpec(
-            ncols=ncols, nrows=nrows, cell_size=cell_size, xll=xll, yll=yll
-        )
-        for var in self.OUTPUT_NAMES:
-            self.outputs[var] = Output()
-        for var in self.INPUT_NAMES:
-            self.inputs[var] = Input()
-
-        self._status = ComponentStatus.INITIALIZED
-
-    def connect(self):
-        super().connect()
-        for var in self.OUTPUT_NAMES:
-            if not self.outputs[var].has_targets:
-                continue
-            self.outputs[var].push_data(
-                data=Grid(
-                    spec=self.gridspec[var.split("_")[0]],
-                    no_data=self.no_data,
-                    # flip upside down to use lower-left corner as origin
-                    data=np.flipud(
-                        mp.get_variable(var, indexing="ij").filled()
-                    ).reshape(-1),
-                ),
-                time=self.time,
-            )
-        self._status = ComponentStatus.CONNECTED
-
-    def validate(self):
-        super().validate()
-        # TODO: add checks if connected outputs are compatible with process selection
-        self._status = ComponentStatus.VALIDATED
-
-    @execute_in_cwd
-    def update(self):
-        super().update()
-
-        # Don't run further than mHM can
-        if mp.run.finished():
-            return
-        mp.run.do_time_step()
-        mp.run.write_output()  # do we want this here?
-        # update time
-        year, month, day, hour = mp.run.current_time()
-        self._time = datetime(year=year, month=month, day=day, hour=hour)
-        # push outputs
-        for var in self.OUTPUT_NAMES:
-            if not self.outputs[var].has_targets:
-                continue
-            self.outputs[var].push_data(
-                data=Grid(
-                    spec=self.gridspec[var.split("_")[0]],
-                    no_data=self.no_data,
-                    # flip upside down to use lower-left corner as origin
-                    data=np.flipud(
-                        mp.get_variable(var, indexing="ij").filled()
-                    ).reshape(-1),
-                ),
-                time=self.time,
-            )
-        self._status = ComponentStatus.UPDATED
-
-    @execute_in_cwd
-    def finalize(self):
-        super().finalize()
-        mp.run.finalize_domain()
-        mp.run.finalize()
-        mp.mhm.finalize()
-        self._status = ComponentStatus.FINALIZED
diff --git a/tests/test_files/ref_runoff.csv b/tests/test_files/ref_runoff.csv
new file mode 100644
index 0000000000000000000000000000000000000000..ef781c4c01769479ec5f96a9f071ad99f4f39092
--- /dev/null
+++ b/tests/test_files/ref_runoff.csv
@@ -0,0 +1,8762 @@
+Time,Runoff
+1990-01-01T00:00:00,0.0
+1990-01-01T01:00:00,0.03881198974680196
+1990-01-01T02:00:00,0.03877945663847809
+1990-01-01T03:00:00,0.038746996660143106
+1990-01-01T04:00:00,0.03871460956252078
+1990-01-01T05:00:00,0.038682295097249776
+1990-01-01T06:00:00,0.038650053016880244
+1990-01-01T07:00:00,0.03861788307487044
+1990-01-01T08:00:00,0.038585785025583325
+1990-01-01T09:00:00,0.03855375862428313
+1990-01-01T10:00:00,0.03852180362713212
+1990-01-01T11:00:00,0.038489919791187086
+1990-01-01T12:00:00,0.03845810687439613
+1990-01-01T13:00:00,0.03842636463559529
+1990-01-01T14:00:00,0.03839469283450518
+1990-01-01T15:00:00,0.038363091231727785
+1990-01-01T16:00:00,0.038331559588743076
+1990-01-01T17:00:00,0.03830009766790579
+1990-01-01T18:00:00,0.03826870523244217
+1990-01-01T19:00:00,0.03823738204644666
+1990-01-01T20:00:00,0.0382061278748787
+1990-01-01T21:00:00,0.0381749424835595
+1990-01-01T22:00:00,0.038143825639168835
+1990-01-01T23:00:00,0.0381127771092418
+1990-01-02T00:00:00,0.03808179666216566
+1990-01-02T01:00:00,0.03805088406717661
+1990-01-02T02:00:00,0.038020039094356715
+1990-01-02T03:00:00,0.03798926151463063
+1990-01-02T04:00:00,0.037958551099762566
+1990-01-02T05:00:00,0.037927907622353034
+1990-01-02T06:00:00,0.03789733085583588
+1990-01-02T07:00:00,0.03786682057447505
+1990-01-02T08:00:00,0.037836376553361514
+1990-01-02T09:00:00,0.03780599856841026
+1990-01-02T10:00:00,0.0377756863963571
+1990-01-02T11:00:00,0.03774543981475573
+1990-01-02T12:00:00,0.03771525860197459
+1990-01-02T13:00:00,0.03768514253719386
+1990-01-02T14:00:00,0.03765509140040244
+1990-01-02T15:00:00,0.037625104972394914
+1990-01-02T16:00:00,0.03759518303476856
+1990-01-02T17:00:00,0.037565325369920334
+1990-01-02T18:00:00,0.03753553176104393
+1990-01-02T19:00:00,0.03750580199212677
+1990-01-02T20:00:00,0.037476135847947054
+1990-01-02T21:00:00,0.03744653311407085
+1990-01-02T22:00:00,0.03741699357684907
+1990-01-02T23:00:00,0.03738751702341465
+1990-01-03T00:00:00,0.03735810324167954
+1990-01-03T01:00:00,0.03732875202033187
+1990-01-03T02:00:00,0.03729946314883301
+1990-01-03T03:00:00,0.03727023641741473
+1990-01-03T04:00:00,0.03724107161707628
+1990-01-03T05:00:00,0.03721196853958156
+1990-01-03T06:00:00,0.037182926977456274
+1990-01-03T07:00:00,0.03715394672398507
+1990-01-03T08:00:00,0.03712502757320873
+1990-01-03T09:00:00,0.03709616931992134
+1990-01-03T10:00:00,0.03706737175966748
+1990-01-03T11:00:00,0.03703863468873947
+1990-01-03T12:00:00,0.037009957904174495
+1990-01-03T13:00:00,0.036981341203751926
+1990-01-03T14:00:00,0.0369527843859905
+1990-01-03T15:00:00,0.036924287250145564
+1990-01-03T16:00:00,0.03689584959620637
+1990-01-03T17:00:00,0.03686747122489329
+1990-01-03T18:00:00,0.03683915193765514
+1990-01-03T19:00:00,0.03681089153666642
+1990-01-03T20:00:00,0.03678268982482465
+1990-01-03T21:00:00,0.03675454660574768
+1990-01-03T22:00:00,0.03672646168377094
+1990-01-03T23:00:00,0.03669843486394486
+1990-01-04T00:00:00,0.03667046595203215
+1990-01-04T01:00:00,0.036642554754505154
+1990-01-04T02:00:00,0.03661470107854323
+1990-01-04T03:00:00,0.03658690473203007
+1990-01-04T04:00:00,0.03655916552355115
+1990-01-04T05:00:00,0.03653148326239105
+1990-01-04T06:00:00,0.03650385775853089
+1990-01-04T07:00:00,0.03647628882264571
+1990-01-04T08:00:00,0.0364487762661019
+1990-01-04T09:00:00,0.03642131990095463
+1990-01-04T10:00:00,0.0363939195399453
+1990-01-04T11:00:00,0.03636657499649893
+1990-01-04T12:00:00,0.036339286084721686
+1990-01-04T13:00:00,0.036312052619398294
+1990-01-04T14:00:00,0.03628487441598953
+1990-01-04T15:00:00,0.03625775129062971
+1990-01-04T16:00:00,0.0362306830601242
+1990-01-04T17:00:00,0.03620366954194684
+1990-01-04T18:00:00,0.036176710554237566
+1990-01-04T19:00:00,0.03614980591579987
+1990-01-04T20:00:00,0.0361229554460983
+1990-01-04T21:00:00,0.03609615896525611
+1990-01-04T22:00:00,0.03606941629405265
+1990-01-04T23:00:00,0.036042727253921096
+1990-01-05T00:00:00,0.03601609166694588
+1990-01-05T01:00:00,0.03598950935586035
+1990-01-05T02:00:00,0.03596298014404432
+1990-01-05T03:00:00,0.03593650385552165
+1990-01-05T04:00:00,0.035910080314957904
+1990-01-05T05:00:00,0.03588370934765792
+1990-01-05T06:00:00,0.03585739077956344
+1990-01-05T07:00:00,0.03583112443725076
+1990-01-05T08:00:00,0.035804910147928325
+1990-01-05T09:00:00,0.035778747739434444
+1990-01-05T10:00:00,0.035752637040234875
+1990-01-05T11:00:00,0.035726577879420546
+1990-01-05T12:00:00,0.03570057008670522
+1990-01-05T13:00:00,0.035674613492423145
+1990-01-05T14:00:00,0.035648707927526814
+1990-01-05T15:00:00,0.035622853223584564
+1990-01-05T16:00:00,0.03559704921277841
+1990-01-05T17:00:00,0.03557129572790166
+1990-01-05T18:00:00,0.03554559260235669
+1990-01-05T19:00:00,0.0355199396701527
+1990-01-05T20:00:00,0.03549433676590337
+1990-01-05T21:00:00,0.03546878372482473
+1990-01-05T22:00:00,0.035443280382732846
+1990-01-05T23:00:00,0.035417826576041596
+1990-01-06T00:00:00,0.03539242214176048
+1990-01-06T01:00:00,0.03536706691749236
+1990-01-06T02:00:00,0.03534176074143132
+1990-01-06T03:00:00,0.035316503452360384
+1990-01-06T04:00:00,0.03529129488964941
+1990-01-06T05:00:00,0.035266134893252844
+1990-01-06T06:00:00,0.035241023303707604
+1990-01-06T07:00:00,0.03521595996213086
+1990-01-06T08:00:00,0.035190970964183804
+1990-01-06T09:00:00,0.03516602984837446
+1990-01-06T10:00:00,0.03514113645773408
+1990-01-06T11:00:00,0.035116290635864904
+1990-01-06T12:00:00,0.03509149222693804
+1990-01-06T13:00:00,0.035066741075691396
+1990-01-06T14:00:00,0.035042037027427524
+1990-01-06T15:00:00,0.03501737992801155
+1990-01-06T16:00:00,0.034992769623869074
+1990-01-06T17:00:00,0.03496820596198411
+1990-01-06T18:00:00,0.034943688789896954
+1990-01-06T19:00:00,0.0349192179557022
+1990-01-06T20:00:00,0.03489476690306113
+1990-01-06T21:00:00,0.03487036193629
+1990-01-06T22:00:00,0.034846002904946716
+1990-01-06T23:00:00,0.03482168965913592
+1990-01-07T00:00:00,0.03479742204950705
+1990-01-07T01:00:00,0.0347731999272522
+1990-01-07T02:00:00,0.034749023144104205
+1990-01-07T03:00:00,0.03472489155233458
+1990-01-07T04:00:00,0.034700805004751555
+1990-01-07T05:00:00,0.03467676335469805
+1990-01-07T06:00:00,0.03465276645604969
+1990-01-07T07:00:00,0.034628814163212875
+1990-01-07T08:00:00,0.034605046801656415
+1990-01-07T09:00:00,0.03458132411371421
+1990-01-07T10:00:00,0.034557645956143794
+1990-01-07T11:00:00,0.03453401218622091
+1990-01-07T12:00:00,0.03451042266173765
+1990-01-07T13:00:00,0.03448687724100052
+1990-01-07T14:00:00,0.03446337578282855
+1990-01-07T15:00:00,0.03515658963218348
+1990-01-07T16:00:00,0.035697892270959944
+1990-01-07T17:00:00,0.03567452185849418
+1990-01-07T18:00:00,0.03565119484895687
+1990-01-07T19:00:00,0.03562791110370123
+1990-01-07T20:00:00,0.03432313357129447
+1990-01-07T21:00:00,0.03429978675375839
+1990-01-07T22:00:00,0.034276482434225174
+1990-01-07T23:00:00,0.034253220475279934
+1990-01-08T00:00:00,0.034230000740006206
+1990-01-08T01:00:00,0.034206886586222576
+1990-01-08T02:00:00,0.034589790808278585
+1990-01-08T03:00:00,0.03498518919229251
+1990-01-08T04:00:00,0.034962200445029214
+1990-01-08T05:00:00,0.034939253231046706
+1990-01-08T06:00:00,0.03491634741671062
+1990-01-08T07:00:00,0.03489348286887108
+1990-01-08T08:00:00,0.038304772121248526
+1990-01-08T09:00:00,0.03746753781246853
+1990-01-08T10:00:00,0.03744504001866722
+1990-01-08T11:00:00,0.03742258538574416
+1990-01-08T12:00:00,0.0374001737917164
+1990-01-08T13:00:00,0.0373778051150297
+1990-01-08T14:00:00,0.037355479234556906
+1990-01-08T15:00:00,0.03733319602959646
+1990-01-08T16:00:00,0.03731095537987094
+1990-01-08T17:00:00,0.03728875716552549
+1990-01-08T18:00:00,0.03726660126712638
+1990-01-08T19:00:00,0.03724448756565951
+1990-01-08T20:00:00,0.03378827320212253
+1990-01-08T21:00:00,0.034580665273087646
+1990-01-08T22:00:00,0.03455840345342808
+1990-01-08T23:00:00,0.03453618084914201
+1990-01-09T00:00:00,0.03451399733499532
+1990-01-09T01:00:00,0.03366737426675555
+1990-01-09T02:00:00,0.0336451953050308
+1990-01-09T03:00:00,0.03362305508814367
+1990-01-09T04:00:00,0.03360095349227592
+1990-01-09T05:00:00,0.03357889039405732
+1990-01-09T06:00:00,0.03355686567056402
+1990-01-09T07:00:00,0.03353487919931686
+1990-01-09T08:00:00,0.03351295049032772
+1990-01-09T09:00:00,0.03349105974144727
+1990-01-09T10:00:00,0.03346920683168972
+1990-01-09T11:00:00,0.03344739164050681
+1990-01-09T12:00:00,0.033425614047786205
+1990-01-09T13:00:00,0.03340387393384983
+1990-01-09T14:00:00,0.033382171179452316
+1990-01-09T15:00:00,0.033360505665779375
+1990-01-09T16:00:00,0.03333887727444622
+1990-01-09T17:00:00,0.03331728588749592
+1990-01-09T18:00:00,0.03329573138739788
+1990-01-09T19:00:00,0.03327421365704625
+1990-01-09T20:00:00,0.03325271297493439
+1990-01-09T21:00:00,0.03323124887800009
+1990-01-09T22:00:00,0.033209821250233716
+1990-01-09T23:00:00,0.033188429976044743
+1990-01-10T00:00:00,0.03316707494026021
+1990-01-10T01:00:00,0.033145756028123106
+1990-01-10T02:00:00,0.03312447312529094
+1990-01-10T03:00:00,0.03310322611783413
+1990-01-10T04:00:00,0.033082014892234474
+1990-01-10T05:00:00,0.033060839335383674
+1990-01-10T06:00:00,0.03303969933458177
+1990-01-10T07:00:00,0.03301859477753567
+1990-01-10T08:00:00,0.032997525552357625
+1990-01-10T09:00:00,0.03297649154756372
+1990-01-10T10:00:00,0.03295549265207237
+1990-01-10T11:00:00,0.032934528755202905
+1990-01-10T12:00:00,0.03291359974667397
+1990-01-10T13:00:00,0.03289270551660215
+1990-01-10T14:00:00,0.03287184595550045
+1990-01-10T15:00:00,0.032851020954276826
+1990-01-10T16:00:00,0.032830230404232726
+1990-01-10T17:00:00,0.03280947419706167
+1990-01-10T18:00:00,0.03278875222484774
+1990-01-10T19:00:00,0.0327680643800642
+1990-01-10T20:00:00,0.03274741055557199
+1990-01-10T21:00:00,0.03272679064461835
+1990-01-10T22:00:00,0.03270620454083536
+1990-01-10T23:00:00,0.032685652138238507
+1990-01-11T00:00:00,0.0326651333312253
+1990-01-11T01:00:00,0.032644648014573854
+1990-01-11T02:00:00,0.03262419608344145
+1990-01-11T03:00:00,0.032603777433363144
+1990-01-11T04:00:00,0.032583391960250396
+1990-01-11T05:00:00,0.03256303956038966
+1990-01-11T06:00:00,0.032542720130441
+1990-01-11T07:00:00,0.032522433567436684
+1990-01-11T08:00:00,0.03250217976877986
+1990-01-11T09:00:00,0.03248195863224315
+1990-01-11T10:00:00,0.03246177005596726
+1990-01-11T11:00:00,0.03244161393845971
+1990-01-11T12:00:00,0.032421490178593346
+1990-01-11T13:00:00,0.03240139867560513
+1990-01-11T14:00:00,0.03238133932909468
+1990-01-11T15:00:00,0.032361312039022976
+1990-01-11T16:00:00,0.032341316705711054
+1990-01-11T17:00:00,0.03232135322983862
+1990-01-11T18:00:00,0.032301421512442766
+1990-01-11T19:00:00,0.03228152145491663
+1990-01-11T20:00:00,0.032261652959008076
+1990-01-11T21:00:00,0.032241815926818386
+1990-01-11T22:00:00,0.03222201026080098
+1990-01-11T23:00:00,0.03220223586376009
+1990-01-12T00:00:00,0.03218249263884944
+1990-01-12T01:00:00,0.03216278048957103
+1990-01-12T02:00:00,0.03214309931977376
+1990-01-12T03:00:00,0.03212344903365221
+1990-01-12T04:00:00,0.03210382953574538
+1990-01-12T05:00:00,0.03208424073093529
+1990-01-12T06:00:00,0.03206468252444591
+1990-01-12T07:00:00,0.03204515482184172
+1990-01-12T08:00:00,0.032025657529026565
+1990-01-12T09:00:00,0.032006190552242346
+1990-01-12T10:00:00,0.031986753798067785
+1990-01-12T11:00:00,0.03196734717341718
+1990-01-12T12:00:00,0.03194797058553919
+1990-01-12T13:00:00,0.031928623942015566
+1990-01-12T14:00:00,0.03190930715075993
+1990-01-12T15:00:00,0.03189002012001658
+1990-01-12T16:00:00,0.031870762758359206
+1990-01-12T17:00:00,0.03185153497468974
+1990-01-12T18:00:00,0.031832336678237115
+1990-01-12T19:00:00,0.031813167778556056
+1990-01-12T20:00:00,0.03179402818552587
+1990-01-12T21:00:00,0.03177491780934928
+1990-01-12T22:00:00,0.03175583656055119
+1990-01-12T23:00:00,0.03173678434997754
+1990-01-13T00:00:00,0.03171776108879406
+1990-01-13T01:00:00,0.03169876668848517
+1990-01-13T02:00:00,0.03167980106085274
+1990-01-13T03:00:00,0.031660864118014935
+1990-01-13T04:00:00,0.03164195577240505
+1990-01-13T05:00:00,0.03162307593677038
+1990-01-13T06:00:00,0.031604224524171005
+1990-01-13T07:00:00,0.03158540144797866
+1990-01-13T08:00:00,0.03156660662187561
+1990-01-13T09:00:00,0.03154783995985346
+1990-01-13T10:00:00,0.031529101376212065
+1990-01-13T11:00:00,0.03151039078555832
+1990-01-13T12:00:00,0.0314917081028051
+1990-01-13T13:00:00,0.03147305324317012
+1990-01-13T14:00:00,0.03145442612217475
+1990-01-13T15:00:00,0.03143582665564298
+1990-01-13T16:00:00,0.03141725475970023
+1990-01-13T17:00:00,0.03139871035077229
+1990-01-13T18:00:00,0.03138019334558421
+1990-01-13T19:00:00,0.03136170366115914
+1990-01-13T20:00:00,0.0313432412148173
+1990-01-13T21:00:00,0.03132480592417484
+1990-01-13T22:00:00,0.031306397707142775
+1990-01-13T23:00:00,0.03128801648192588
+1990-01-14T00:00:00,0.031269662167021636
+1990-01-14T01:00:00,0.031251334681219094
+1990-01-14T02:00:00,0.031233033943597846
+1990-01-14T03:00:00,0.03121475987352697
+1990-01-14T04:00:00,0.031196512390663917
+1990-01-14T05:00:00,0.031178291414953454
+1990-01-14T06:00:00,0.031160096866626637
+1990-01-14T07:00:00,0.031141928666199747
+1990-01-14T08:00:00,0.031123786734473205
+1990-01-14T09:00:00,0.031105670992530563
+1990-01-14T10:00:00,0.031087581361737438
+1990-01-14T11:00:00,0.031069517763740492
+1990-01-14T12:00:00,0.031051480120466397
+1990-01-14T13:00:00,0.031033468354120766
+1990-01-14T14:00:00,0.031015482387187165
+1990-01-14T15:00:00,0.030997522142426074
+1990-01-14T16:00:00,0.030979587542873867
+1990-01-14T17:00:00,0.030961678511841808
+1990-01-14T18:00:00,0.030943794972915023
+1990-01-14T19:00:00,0.03092593684995147
+1990-01-14T20:00:00,0.03090810406708101
+1990-01-14T21:00:00,0.03089029654870432
+1990-01-14T22:00:00,0.030872514219491935
+1990-01-14T23:00:00,0.030854757004383244
+1990-01-15T00:00:00,0.030837024828585528
+1990-01-15T01:00:00,0.03081931761757294
+1990-01-15T02:00:00,0.030801635297085524
+1990-01-15T03:00:00,0.030783977793128275
+1990-01-15T04:00:00,0.030766345031970104
+1990-01-15T05:00:00,0.0307487369401429
+1990-01-15T06:00:00,0.03073115344444058
+1990-01-15T07:00:00,0.03071359447191808
+1990-01-15T08:00:00,0.03069605994989042
+1990-01-15T09:00:00,0.030678549805931765
+1990-01-15T10:00:00,0.030661063967874422
+1990-01-15T11:00:00,0.030643602363807938
+1990-01-15T12:00:00,0.030626164922078106
+1990-01-15T13:00:00,0.030608751571286077
+1990-01-15T14:00:00,0.030591362240287388
+1990-01-15T15:00:00,0.030573996858191
+1990-01-15T16:00:00,0.03055665535435844
+1990-01-15T17:00:00,0.030539337658402783
+1990-01-15T18:00:00,0.030522043700187795
+1990-01-15T19:00:00,0.030504773409826987
+1990-01-15T20:00:00,0.030487526717682685
+1990-01-15T21:00:00,0.03047030355436511
+1990-01-15T22:00:00,0.030453103850731522
+1990-01-15T23:00:00,0.030435927537885217
+1990-01-16T00:00:00,0.0304187745471747
+1990-01-16T01:00:00,0.030401909216305117
+1990-01-16T02:00:00,0.03038506868931809
+1990-01-16T03:00:00,0.030368252904639174
+1990-01-16T04:00:00,0.03035146180092198
+1990-01-16T05:00:00,0.032698009807658246
+1990-01-16T06:00:00,0.033864783328252754
+1990-01-16T07:00:00,0.03384806590161046
+1990-01-16T08:00:00,0.03726551792432257
+1990-01-16T09:00:00,0.03724912664729425
+1990-01-16T10:00:00,0.037232765787867605
+1990-01-16T11:00:00,0.03721643532759398
+1990-01-16T12:00:00,0.03720013524784488
+1990-01-16T13:00:00,0.03718386552981699
+1990-01-16T14:00:00,0.037167626154537434
+1990-01-16T15:00:00,0.03715141710286936
+1990-01-16T16:00:00,0.03713405985127104
+1990-01-16T17:00:00,0.03709325276371361
+1990-01-16T18:00:00,0.03705291502557678
+1990-01-16T19:00:00,0.03701304676134456
+1990-01-16T20:00:00,0.03353944805018178
+1990-01-16T21:00:00,0.03360692351918079
+1990-01-16T22:00:00,0.03359031203114691
+1990-01-16T23:00:00,0.0335737247603726
+1990-01-17T00:00:00,0.033557161649716435
+1990-01-17T01:00:00,0.04063229272788776
+1990-01-17T02:00:00,0.04541915097641848
+1990-01-17T03:00:00,0.04792008911800785
+1990-01-17T04:00:00,0.047905464108802545
+1990-01-17T05:00:00,0.047890926630811986
+1990-01-17T06:00:00,0.04787647777604432
+1990-01-17T07:00:00,0.04786211863670431
+1990-01-17T08:00:00,0.060284498600740755
+1990-01-17T09:00:00,0.059756374758765045
+1990-01-17T10:00:00,0.059744042611331226
+1990-01-17T11:00:00,0.059731945914628784
+1990-01-17T12:00:00,0.059720090289453916
+1990-01-17T13:00:00,0.059708481377448074
+1990-01-17T14:00:00,0.059697124844053207
+1990-01-17T15:00:00,0.05968602638156259
+1990-01-17T16:00:00,0.05967519171225366
+1990-01-17T17:00:00,0.05966462659159007
+1990-01-17T18:00:00,0.05896098156550232
+1990-01-17T19:00:00,0.03784794060597149
+1990-01-17T20:00:00,0.03655172514638266
+1990-01-17T21:00:00,0.03705252997075398
+1990-01-17T22:00:00,0.03703780692207678
+1990-01-17T23:00:00,0.03702311785351371
+1990-01-18T00:00:00,0.03700846277190481
+1990-01-18T01:00:00,0.029689072534868983
+1990-01-18T02:00:00,0.029672814358023127
+1990-01-18T03:00:00,0.02965657694443191
+1990-01-18T04:00:00,0.0296403602347175
+1990-01-18T05:00:00,0.029624164169712284
+1990-01-18T06:00:00,0.029607988690458106
+1990-01-18T07:00:00,0.02959183373820549
+1990-01-18T08:00:00,0.029575699254412866
+1990-01-18T09:00:00,0.029559585180745824
+1990-01-18T10:00:00,0.02954349145907634
+1990-01-18T11:00:00,0.029527418031482042
+1990-01-18T12:00:00,0.02951136484024541
+1990-01-18T13:00:00,0.029495331827853077
+1990-01-18T14:00:00,0.029479318936995035
+1990-01-18T15:00:00,0.029463326110563907
+1990-01-18T16:00:00,0.029447353291654217
+1990-01-18T17:00:00,0.02943140042356163
+1990-01-18T18:00:00,0.029415467449782226
+1990-01-18T19:00:00,0.029399554314011738
+1990-01-18T20:00:00,0.02938366096014487
+1990-01-18T21:00:00,0.029367787332274513
+1990-01-18T22:00:00,0.029351933374691042
+1990-01-18T23:00:00,0.02933609903188162
+1990-01-19T00:00:00,0.029320284248529414
+1990-01-19T01:00:00,0.02930448896951293
+1990-01-19T02:00:00,0.02928871313990526
+1990-01-19T03:00:00,0.029272956704973402
+1990-01-19T04:00:00,0.029257219610177514
+1990-01-19T05:00:00,0.02924150180117023
+1990-01-19T06:00:00,0.029225803223795956
+1990-01-19T07:00:00,0.029210123824090148
+1990-01-19T08:00:00,0.02919446354827861
+1990-01-19T09:00:00,0.029178822342776828
+1990-01-19T10:00:00,0.02916320015418924
+1990-01-19T11:00:00,0.029147596929308562
+1990-01-19T12:00:00,0.029132012615115083
+1990-01-19T13:00:00,0.029116447158776
+1990-01-19T14:00:00,0.02910090050764471
+1990-01-19T15:00:00,0.029085372609260144
+1990-01-19T16:00:00,0.02906986341134607
+1990-01-19T17:00:00,0.02905437286181043
+1990-01-19T18:00:00,0.029038900908744652
+1990-01-19T19:00:00,0.02902344750042301
+1990-01-19T20:00:00,0.0290080125853019
+1990-01-19T21:00:00,0.028992596112019226
+1990-01-19T22:00:00,0.028977198029393695
+1990-01-19T23:00:00,0.028961818286424166
+1990-01-20T00:00:00,0.028946456832289004
+1990-01-20T01:00:00,0.02893111361634542
+1990-01-20T02:00:00,0.02891578858812879
+1990-01-20T03:00:00,0.028900481697352032
+1990-01-20T04:00:00,0.02888519289390494
+1990-01-20T05:00:00,0.02886992212785354
+1990-01-20T06:00:00,0.028854669349439442
+1990-01-20T07:00:00,0.028839434509079206
+1990-01-20T08:00:00,0.02882421755736369
+1990-01-20T09:00:00,0.028809018445057413
+1990-01-20T10:00:00,0.028793837123097923
+1990-01-20T11:00:00,0.028778673542595175
+1990-01-20T12:00:00,0.028763527654830864
+1990-01-20T13:00:00,0.02874839941125783
+1990-01-20T14:00:00,0.028733288763499423
+1990-01-20T15:00:00,0.028718195663348864
+1990-01-20T16:00:00,0.028703120062768657
+1990-01-20T17:00:00,0.028688061913889933
+1990-01-20T18:00:00,0.028673021169011836
+1990-01-20T19:00:00,0.028657997780600932
+1990-01-20T20:00:00,0.02864299170129058
+1990-01-20T21:00:00,0.028628002883880333
+1990-01-20T22:00:00,0.028613031281335296
+1990-01-20T23:00:00,0.028598076846785576
+1990-01-21T00:00:00,0.028583139533525617
+1990-01-21T01:00:00,0.028568842718970953
+1990-01-21T02:00:00,0.028924891990936976
+1990-01-21T03:00:00,0.031341621131876204
+1990-01-21T04:00:00,0.031327378227451706
+1990-01-21T05:00:00,0.03131315320891092
+1990-01-21T06:00:00,0.031298946034429696
+1990-01-21T07:00:00,0.031284756662336495
+1990-01-21T08:00:00,0.03470524371152274
+1990-01-21T09:00:00,0.03469188281410702
+1990-01-21T10:00:00,0.03467854763640847
+1990-01-21T11:00:00,0.03466523810945585
+1990-01-21T12:00:00,0.03465195416464105
+1990-01-21T13:00:00,0.03246578410582746
+1990-01-21T14:00:00,0.02838825535574309
+1990-01-21T15:00:00,0.0283735412431886
+1990-01-21T16:00:00,0.028358843621161738
+1990-01-21T17:00:00,0.02834416244531908
+1990-01-21T18:00:00,0.02832949767147231
+1990-01-21T19:00:00,0.02831484925558767
+1990-01-21T20:00:00,0.028300217153785407
+1990-01-21T21:00:00,0.028285601322339204
+1990-01-21T22:00:00,0.0282710017176756
+1990-01-21T23:00:00,0.028256418296373462
+1990-01-22T00:00:00,0.028241851015163404
+1990-01-22T01:00:00,0.028227299830927248
+1990-01-22T02:00:00,0.02821276470069745
+1990-01-22T03:00:00,0.02819824558165658
+1990-01-22T04:00:00,0.028183742431136742
+1990-01-22T05:00:00,0.028169255206619056
+1990-01-22T06:00:00,0.0281547838657331
+1990-01-22T07:00:00,0.028140328366256344
+1990-01-22T08:00:00,0.02812588866611366
+1990-01-22T09:00:00,0.028111464723376747
+1990-01-22T10:00:00,0.028097056496263585
+1990-01-22T11:00:00,0.028082663943137944
+1990-01-22T12:00:00,0.028068287022508805
+1990-01-22T13:00:00,0.028053925693029873
+1990-01-22T14:00:00,0.028039579913499
+1990-01-22T15:00:00,0.028025249642857707
+1990-01-22T16:00:00,0.028010934840190616
+1990-01-22T17:00:00,0.027996635464724966
+1990-01-22T18:00:00,0.02798235147583005
+1990-01-22T19:00:00,0.027968082833016744
+1990-01-22T20:00:00,0.027953829495936947
+1990-01-22T21:00:00,0.027939591424383094
+1990-01-22T22:00:00,0.027925368578287632
+1990-01-22T23:00:00,0.0279111609177225
+1990-01-23T00:00:00,0.027896968402898646
+1990-01-23T01:00:00,0.02788400718406134
+1990-01-23T02:00:00,0.04935032723412676
+1990-01-23T03:00:00,0.05102678432453961
+1990-01-23T04:00:00,0.05101848100652238
+1990-01-23T05:00:00,0.051010362767152734
+1990-01-23T06:00:00,0.05100243236573025
+1990-01-23T07:00:00,0.050994692584379026
+1990-01-23T08:00:00,0.05504579910989387
+1990-01-23T09:00:00,0.05367393733245511
+1990-01-23T10:00:00,0.05366766218825193
+1990-01-23T11:00:00,0.05366163858214848
+1990-01-23T12:00:00,0.05365587065264854
+1990-01-23T13:00:00,0.05365036258339716
+1990-01-23T14:00:00,0.05364511860460967
+1990-01-23T15:00:00,0.05364014299446276
+1990-01-23T16:00:00,0.05363544008044549
+1990-01-23T17:00:00,0.05363101424066817
+1990-01-23T18:00:00,0.05362686990512689
+1990-01-23T19:00:00,0.05362301155692201
+1990-01-23T20:00:00,0.04956027785147642
+1990-01-23T21:00:00,0.050921164442044455
+1990-01-23T22:00:00,0.05091695215996281
+1990-01-23T23:00:00,0.05091298350672652
+1990-01-24T00:00:00,0.050909261830697716
+1990-01-24T01:00:00,0.04046356178913047
+1990-01-24T02:00:00,0.04050302934789318
+1990-01-24T03:00:00,0.04049488589388442
+1990-01-24T04:00:00,0.04048682466174028
+1990-01-24T05:00:00,0.04047884614379148
+1990-01-24T06:00:00,0.040470950835670184
+1990-01-24T07:00:00,0.04046313923632878
+1990-01-24T08:00:00,0.04269885472692871
+1990-01-24T09:00:00,0.04170807851176493
+1990-01-24T10:00:00,0.041701201032993865
+1990-01-24T11:00:00,0.04169442577286821
+1990-01-24T12:00:00,0.04168775344391375
+1990-01-24T13:00:00,0.04168118476368718
+1990-01-24T14:00:00,0.04167472045479613
+1990-01-24T15:00:00,0.041668361244917754
+1990-01-24T16:00:00,0.04166210786681564
+1990-01-24T17:00:00,0.041655961058355215
+1990-01-24T18:00:00,0.041649921562517664
+1990-01-24T19:00:00,0.041643990127412114
+1990-01-24T20:00:00,0.03939451905828629
+1990-01-24T21:00:00,0.04037182254670149
+1990-01-24T22:00:00,0.0403654211181982
+1990-01-24T23:00:00,0.0403591125558463
+1990-01-25T00:00:00,0.04035289742095827
+1990-01-25T01:00:00,0.053248227224118885
+1990-01-25T02:00:00,0.0532292474732111
+1990-01-25T03:00:00,0.053232095069547916
+1990-01-25T04:00:00,0.05323532858482444
+1990-01-25T05:00:00,0.053238953717188786
+1990-01-25T06:00:00,0.0532429762285353
+1990-01-25T07:00:00,0.05324740194435212
+1990-01-25T08:00:00,0.05774020729109211
+1990-01-25T09:00:00,0.056592724534719446
+1990-01-25T10:00:00,0.05660115746195456
+1990-01-25T11:00:00,0.056610141300173555
+1990-01-25T12:00:00,0.05661968510583402
+1990-01-25T13:00:00,0.056629798037415933
+1990-01-25T14:00:00,0.05664048935440752
+1990-01-25T15:00:00,0.056651768416184925
+1990-01-25T16:00:00,0.056663644680788126
+1990-01-25T17:00:00,0.056676127703595175
+1990-01-25T18:00:00,0.05668922713589719
+1990-01-25T19:00:00,0.056702952723376644
+1990-01-25T20:00:00,0.05222818175808114
+1990-01-25T21:00:00,0.05339503185388113
+1990-01-25T22:00:00,0.05340701684269913
+1990-01-25T23:00:00,0.05341951731001461
+1990-01-26T00:00:00,0.053432540166497094
+1990-01-26T01:00:00,0.033531440367181364
+1990-01-26T02:00:00,0.033557889105508894
+1990-01-26T03:00:00,0.03354929668724394
+1990-01-26T04:00:00,0.033540737309193276
+1990-01-26T05:00:00,0.0335322109917278
+1990-01-26T06:00:00,0.03352371775540866
+1990-01-26T07:00:00,0.0335152576209861
+1990-01-26T08:00:00,0.034533064201249956
+1990-01-26T09:00:00,0.03365006691826098
+1990-01-26T10:00:00,0.03364188430711621
+1990-01-26T11:00:00,0.033633736081300464
+1990-01-26T12:00:00,0.0336256222676243
+1990-01-26T13:00:00,0.03361754289308773
+1990-01-26T14:00:00,0.03360949798487893
+1990-01-26T15:00:00,0.03360148757037302
+1990-01-26T16:00:00,0.03359351167713081
+1990-01-26T17:00:00,0.03358557033289752
+1990-01-26T18:00:00,0.03357766356560157
+1990-01-26T19:00:00,0.03356979140335332
+1990-01-26T20:00:00,0.03253565420779281
+1990-01-26T21:00:00,0.03340244509563501
+1990-01-26T22:00:00,0.033394489127842784
+1990-01-26T23:00:00,0.033386566641167154
+1990-01-27T00:00:00,0.033378677659393514
+1990-01-27T01:00:00,0.027578931642878224
+1990-01-27T02:00:00,0.027563902533196037
+1990-01-27T03:00:00,0.02754889240654984
+1990-01-27T04:00:00,0.027533901208938526
+1990-01-27T05:00:00,0.027518928886551868
+1990-01-27T06:00:00,0.027503975385769847
+1990-01-27T07:00:00,0.027489040653161923
+1990-01-27T08:00:00,0.027474124635486357
+1990-01-27T09:00:00,0.027459227279689514
+1990-01-27T10:00:00,0.027444348532905182
+1990-01-27T11:00:00,0.027429488342453876
+1990-01-27T12:00:00,0.027414646655842145
+1990-01-27T13:00:00,0.027399823420761905
+1990-01-27T14:00:00,0.027385018585089755
+1990-01-27T15:00:00,0.0273702320968863
+1990-01-27T16:00:00,0.027355463904395468
+1990-01-27T17:00:00,0.027340713956043858
+1990-01-27T18:00:00,0.027325982200440045
+1990-01-27T19:00:00,0.027311268586373928
+1990-01-27T20:00:00,0.027296573062816066
+1990-01-27T21:00:00,0.027281895578917012
+1990-01-27T22:00:00,0.02726723608400665
+1990-01-27T23:00:00,0.027252594527593543
+1990-01-28T00:00:00,0.027237970859364278
+1990-01-28T01:00:00,0.03143462928805816
+1990-01-28T02:00:00,0.04793957657571299
+1990-01-28T03:00:00,0.04795102269422125
+1990-01-28T04:00:00,0.047962840092677844
+1990-01-28T05:00:00,0.04797503249458336
+1990-01-28T06:00:00,0.04798760363844694
+1990-01-28T07:00:00,0.0480005572772878
+1990-01-28T08:00:00,0.05164923602854729
+1990-01-28T09:00:00,0.05024577175446249
+1990-01-28T10:00:00,0.05026312311386265
+1990-01-28T11:00:00,0.05028096737059737
+1990-01-28T12:00:00,0.050299309815705046
+1990-01-28T13:00:00,0.05031815575786776
+1990-01-28T14:00:00,0.05033751052251815
+1990-01-28T15:00:00,0.050357379450938586
+1990-01-28T16:00:00,0.050377767899353124
+1990-01-28T17:00:00,0.050398681238013
+1990-01-28T18:00:00,0.05042012485027597
+1990-01-28T19:00:00,0.050442104131680335
+1990-01-28T20:00:00,0.04682819544011409
+1990-01-28T21:00:00,0.04826777966466991
+1990-01-28T22:00:00,0.0482874811179909
+1990-01-28T23:00:00,0.04830763172780797
+1990-01-29T00:00:00,0.04832823541777796
+1990-01-29T01:00:00,0.02761516655938149
+1990-01-29T02:00:00,0.027599322316643023
+1990-01-29T03:00:00,0.02758350029795884
+1990-01-29T04:00:00,0.02756770043736724
+1990-01-29T05:00:00,0.02755192266914157
+1990-01-29T06:00:00,0.02753616692778932
+1990-01-29T07:00:00,0.027520433148051263
+1990-01-29T08:00:00,0.03469870340233703
+1990-01-29T09:00:00,0.03356361311622469
+1990-01-29T10:00:00,0.031233886434714735
+1990-01-29T11:00:00,0.0285246490178439
+1990-01-29T12:00:00,0.0285108162690433
+1990-01-29T13:00:00,0.028497002100964595
+1990-01-29T14:00:00,0.028483206462122535
+1990-01-29T15:00:00,0.028469429301214707
+1990-01-29T16:00:00,0.02845567056712087
+1990-01-29T17:00:00,0.028441930208902292
+1990-01-29T18:00:00,0.028428208175801082
+1990-01-29T19:00:00,0.02841450441723952
+1990-01-29T20:00:00,0.027364059715164826
+1990-01-29T21:00:00,0.02734852138512672
+1990-01-29T22:00:00,0.027333004421243753
+1990-01-29T23:00:00,0.027317508760584665
+1990-01-30T00:00:00,0.02730203434044209
+1990-01-30T01:00:00,0.029203725398038973
+1990-01-30T02:00:00,0.029201315528207133
+1990-01-30T03:00:00,0.02918937720442764
+1990-01-30T04:00:00,0.02917745600422529
+1990-01-30T05:00:00,0.02916555188766375
+1990-01-30T06:00:00,0.029153664814951897
+1990-01-30T07:00:00,0.0291417947464433
+1990-01-30T08:00:00,0.028705910619379046
+1990-01-30T09:00:00,0.02719059495204784
+1990-01-30T10:00:00,0.027175268070502547
+1990-01-30T11:00:00,0.027159961962149863
+1990-01-30T12:00:00,0.027144676566152406
+1990-01-30T13:00:00,0.02712941182188898
+1990-01-30T14:00:00,0.027114167668953804
+1990-01-30T15:00:00,0.027098944047155724
+1990-01-30T16:00:00,0.027083740896517387
+1990-01-30T17:00:00,0.027068558157274495
+1990-01-30T18:00:00,0.027053395769875012
+1990-01-30T19:00:00,0.027038253674978367
+1990-01-30T20:00:00,0.027023131813454702
+1990-01-30T21:00:00,0.02737832569549027
+1990-01-30T22:00:00,0.027845782410685752
+1990-01-30T23:00:00,0.02783226722657343
+1990-01-31T00:00:00,0.027818769179549865
+1990-01-31T01:00:00,0.028912439220300436
+1990-01-31T02:00:00,0.02882965246796675
+1990-01-31T03:00:00,0.02881809080500925
+1990-01-31T04:00:00,0.02880654505750038
+1990-01-31T05:00:00,0.02879501518942789
+1990-01-31T06:00:00,0.02878350116491001
+1990-01-31T07:00:00,0.028772002948194986
+1990-01-31T08:00:00,0.02912422766511488
+1990-01-31T09:00:00,0.027486924215799645
+1990-01-31T10:00:00,0.027473151273502975
+1990-01-31T11:00:00,0.02745939565530782
+1990-01-31T12:00:00,0.0274456573129741
+1990-01-31T13:00:00,0.027431936198432035
+1990-01-31T14:00:00,0.027418232263781508
+1990-01-31T15:00:00,0.02740454546129144
+1990-01-31T16:00:00,0.027390875743399185
+1990-01-31T17:00:00,0.027377223062709906
+1990-01-31T18:00:00,0.02736358737199595
+1990-01-31T19:00:00,0.02734996862419626
+1990-01-31T20:00:00,0.026972656653611357
+1990-01-31T21:00:00,0.02858491622585621
+1990-01-31T22:00:00,0.028573677798633203
+1990-01-31T23:00:00,0.028562454473237964
+1990-02-01T00:00:00,0.028551246216580242
+1990-02-01T01:00:00,0.03473922612613232
+1990-02-01T02:00:00,0.034799879211451994
+1990-02-01T03:00:00,0.034800423850817025
+1990-02-01T04:00:00,0.034801035395388855
+1990-02-01T05:00:00,0.03480171401249333
+1990-02-01T06:00:00,0.03480245986935539
+1990-02-01T07:00:00,0.034803273133093775
+1990-02-01T08:00:00,0.03480415397071584
+1990-02-01T09:00:00,0.033660775914141454
+1990-02-01T10:00:00,0.03365956013182694
+1990-02-01T11:00:00,0.03365839505154839
+1990-02-01T12:00:00,0.033657280765617734
+1990-02-01T13:00:00,0.03365621736629287
+1990-02-01T14:00:00,0.03365520494577514
+1990-02-01T15:00:00,0.03365424359620679
+1990-02-01T16:00:00,0.033653333409668466
+1990-02-01T17:00:00,0.03365247447817671
+1990-02-01T18:00:00,0.033651666893681466
+1990-02-01T19:00:00,0.03365091074806359
+1990-02-01T20:00:00,0.03365020613313236
+1990-02-01T21:00:00,0.03479400369671765
+1990-02-01T22:00:00,0.03479575914555031
+1990-02-01T23:00:00,0.03479758430953148
+1990-02-02T00:00:00,0.03479947935378841
+1990-02-02T01:00:00,0.04737388971381877
+1990-02-02T02:00:00,0.047414551785551484
+1990-02-02T03:00:00,0.04744380504557395
+1990-02-02T04:00:00,0.04747357400930938
+1990-02-02T05:00:00,0.04750386260427604
+1990-02-02T06:00:00,0.04753467475148954
+1990-02-02T07:00:00,0.04756601436492809
+1990-02-02T08:00:00,0.04759788535100054
+1990-02-02T09:00:00,0.04658110978050232
+1990-02-02T10:00:00,0.04661156363687388
+1990-02-02T11:00:00,0.04664250318703783
+1990-02-02T12:00:00,0.04667393169890801
+1990-02-02T13:00:00,0.046705852431922615
+1990-02-02T14:00:00,0.04673826863665068
+1990-02-02T15:00:00,0.046771183554401255
+1990-02-02T16:00:00,0.0468046004168356
+1990-02-02T17:00:00,0.04683852244558229
+1990-02-02T18:00:00,0.04687295285185544
+1990-02-02T19:00:00,0.0469078948360761
+1990-02-02T20:00:00,0.04694335158749682
+1990-02-02T21:00:00,0.04802888485477323
+1990-02-02T22:00:00,0.04806825381594882
+1990-02-02T23:00:00,0.04810820922060639
+1990-02-03T00:00:00,0.04814875479395608
+1990-02-03T01:00:00,0.02771138362862067
+1990-02-03T02:00:00,0.02758581605536978
+1990-02-03T03:00:00,0.02756913605880921
+1990-02-03T04:00:00,0.02755248271583099
+1990-02-03T05:00:00,0.027535855943748584
+1990-02-03T06:00:00,0.02751925566017249
+1990-02-03T07:00:00,0.027502681783009124
+1990-02-03T08:00:00,0.02748613423045977
+1990-02-03T09:00:00,0.0273084537662666
+1990-02-03T10:00:00,0.027291507017957132
+1990-02-03T11:00:00,0.027274587423556883
+1990-02-03T12:00:00,0.027257694898667632
+1990-02-03T13:00:00,0.027240829359194422
+1990-02-03T14:00:00,0.027223990721344467
+1990-02-03T15:00:00,0.027207178901626026
+1990-02-03T16:00:00,0.02719039381684729
+1990-02-03T17:00:00,0.02717363538411529
+1990-02-03T18:00:00,0.02715690352083477
+1990-02-03T19:00:00,0.02714019814470712
+1990-02-03T20:00:00,0.027123519173729238
+1990-02-03T21:00:00,0.027106866526192496
+1990-02-03T22:00:00,0.0270902401206816
+1990-02-03T23:00:00,0.02707363987607356
+1990-02-04T00:00:00,0.02705706571153656
+1990-02-04T01:00:00,0.027040517546528923
+1990-02-04T02:00:00,0.027023995300798017
+1990-02-04T03:00:00,0.027007498894379204
+1990-02-04T04:00:00,0.02699102824759478
+1990-02-04T05:00:00,0.026974583281052907
+1990-02-04T06:00:00,0.02695816391564656
+1990-02-04T07:00:00,0.026941770072552475
+1990-02-04T08:00:00,0.026925401673230123
+1990-02-04T09:00:00,0.026909058639420634
+1990-02-04T10:00:00,0.026892740893145792
+1990-02-04T11:00:00,0.026876448356706977
+1990-02-04T12:00:00,0.026860180952684144
+1990-02-04T13:00:00,0.0268439386039348
+1990-02-04T14:00:00,0.02682772123359297
+1990-02-04T15:00:00,0.02681152876506819
+1990-02-04T16:00:00,0.026795361122044472
+1990-02-04T17:00:00,0.02677921822847933
+1990-02-04T18:00:00,0.02676310000860273
+1990-02-04T19:00:00,0.026747006386916114
+1990-02-04T20:00:00,0.02673093728819138
+1990-02-04T21:00:00,0.026714892637469914
+1990-02-04T22:00:00,0.02669887236006155
+1990-02-04T23:00:00,0.026682876381543645
+1990-02-05T00:00:00,0.026666904627760016
+1990-02-05T01:00:00,0.026650957024820055
+1990-02-05T02:00:00,0.026635033499097648
+1990-02-05T03:00:00,0.02661913397723027
+1990-02-05T04:00:00,0.026603258386117996
+1990-02-05T05:00:00,0.026587406652922523
+1990-02-05T06:00:00,0.026571578705066216
+1990-02-05T07:00:00,0.026555774470231146
+1990-02-05T08:00:00,0.026539993876358147
+1990-02-05T09:00:00,0.02652423685164583
+1990-02-05T10:00:00,0.02650850332454967
+1990-02-05T11:00:00,0.026492793223781036
+1990-02-05T12:00:00,0.02647710647830625
+1990-02-05T13:00:00,0.02646144301734567
+1990-02-05T14:00:00,0.026445802770372735
+1990-02-05T15:00:00,0.02643018566711304
+1990-02-05T16:00:00,0.026414591637543387
+1990-02-05T17:00:00,0.026399020611890915
+1990-02-05T18:00:00,0.026383472520632105
+1990-02-05T19:00:00,0.026367947294491923
+1990-02-05T20:00:00,0.026352444864442878
+1990-02-05T21:00:00,0.02633696516170411
+1990-02-05T22:00:00,0.026321508117740488
+1990-02-05T23:00:00,0.026306073664261704
+1990-02-06T00:00:00,0.026290661733221383
+1990-02-06T01:00:00,0.02627527225681617
+1990-02-06T02:00:00,0.02625990516748483
+1990-02-06T03:00:00,0.026244560397907384
+1990-02-06T04:00:00,0.02622923788100419
+1990-02-06T05:00:00,0.02621393754993509
+1990-02-06T06:00:00,0.026198659338098503
+1990-02-06T07:00:00,0.02618340317913056
+1990-02-06T08:00:00,0.02616816900690422
+1990-02-06T09:00:00,0.026152956755528423
+1990-02-06T10:00:00,0.026137766359347184
+1990-02-06T11:00:00,0.02612259775293876
+1990-02-06T12:00:00,0.026107450871114775
+1990-02-06T13:00:00,0.026092325648919362
+1990-02-06T14:00:00,0.026077222021628314
+1990-02-06T15:00:00,0.026062139924748227
+1990-02-06T16:00:00,0.026047079294015642
+1990-02-06T17:00:00,0.026032040065396226
+1990-02-06T18:00:00,0.0260170221750839
+1990-02-06T19:00:00,0.02600202555950001
+1990-02-06T20:00:00,0.02598705015529251
+1990-02-06T21:00:00,0.025972095899335093
+1990-02-06T22:00:00,0.025957162728726394
+1990-02-06T23:00:00,0.02594225058078914
+1990-02-07T00:00:00,0.025927359393069345
+1990-02-07T01:00:00,0.025912489103335462
+1990-02-07T02:00:00,0.025897639649577604
+1990-02-07T03:00:00,0.025882810970006692
+1990-02-07T04:00:00,0.025868003003053665
+1990-02-07T05:00:00,0.025853215687368668
+1990-02-07T06:00:00,0.025838448961820245
+1990-02-07T07:00:00,0.025823702765494522
+1990-02-07T08:00:00,0.025808977037694445
+1990-02-07T09:00:00,0.025794271717938938
+1990-02-07T10:00:00,0.025779586745962136
+1990-02-07T11:00:00,0.025764922061712596
+1990-02-07T12:00:00,0.025750277605352485
+1990-02-07T13:00:00,0.025735653317256836
+1990-02-07T14:00:00,0.025721049138012715
+1990-02-07T15:00:00,0.0257064650084185
+1990-02-07T16:00:00,0.02569190086948304
+1990-02-07T17:00:00,0.025677356662424943
+1990-02-07T18:00:00,0.025662832328671756
+1990-02-07T19:00:00,0.02564832780985924
+1990-02-07T20:00:00,0.02563384304783057
+1990-02-07T21:00:00,0.02561937798463559
+1990-02-07T22:00:00,0.025604932562530065
+1990-02-07T23:00:00,0.02559050672397489
+1990-02-08T00:00:00,0.025576100411635373
+1990-02-08T01:00:00,0.025561713568380464
+1990-02-08T02:00:00,0.025547346137282014
+1990-02-08T03:00:00,0.02553299806161403
+1990-02-08T04:00:00,0.025526658232466082
+1990-02-08T05:00:00,0.025526681614038815
+1990-02-08T06:00:00,0.025526738746135605
+1990-02-08T07:00:00,0.029168985166052784
+1990-02-08T08:00:00,0.031047111725356562
+1990-02-08T09:00:00,0.029290152211907356
+1990-02-08T10:00:00,0.02928571238693398
+1990-02-08T11:00:00,0.029281291059322104
+1990-02-08T12:00:00,0.029276888227991547
+1990-02-08T13:00:00,0.029272503891877594
+1990-02-08T14:00:00,0.029268138049930795
+1990-02-08T15:00:00,0.029263790701116725
+1990-02-08T16:00:00,0.02925946184441581
+1990-02-08T17:00:00,0.029255151478823085
+1990-02-08T18:00:00,0.029250859603348
+1990-02-08T19:00:00,0.029246586217014214
+1990-02-08T20:00:00,0.029242331318859373
+1990-02-08T21:00:00,0.03099533547439736
+1990-02-08T22:00:00,0.030995872474362064
+1990-02-08T23:00:00,0.030996443544417718
+1990-02-09T00:00:00,0.030997048720116688
+1990-02-09T01:00:00,0.02546240907753872
+1990-02-09T02:00:00,0.025447946701283617
+1990-02-09T03:00:00,0.025433504214241124
+1990-02-09T04:00:00,0.025419081557857524
+1990-02-09T05:00:00,0.025404678673787304
+1990-02-09T06:00:00,0.02539029550389237
+1990-02-09T07:00:00,0.025375931990241265
+1990-02-09T08:00:00,0.025361588075108438
+1990-02-09T09:00:00,0.02534726370097349
+1990-02-09T10:00:00,0.025332958810520386
+1990-02-09T11:00:00,0.025318673346636747
+1990-02-09T12:00:00,0.025304407252413078
+1990-02-09T13:00:00,0.025290160471142017
+1990-02-09T14:00:00,0.025275932946317616
+1990-02-09T15:00:00,0.025261724621634587
+1990-02-09T16:00:00,0.02524753544098756
+1990-02-09T17:00:00,0.02523336534847036
+1990-02-09T18:00:00,0.025219214288375282
+1990-02-09T19:00:00,0.025205082205192332
+1990-02-09T20:00:00,0.02519096904360854
+1990-02-09T21:00:00,0.025176874748507206
+1990-02-09T22:00:00,0.025162799264967197
+1990-02-09T23:00:00,0.02514874253826224
+1990-02-10T00:00:00,0.025134704513860153
+1990-02-10T01:00:00,0.02512068513742221
+1990-02-10T02:00:00,0.02510668435480237
+1990-02-10T03:00:00,0.025092702112046592
+1990-02-10T04:00:00,0.025078738355392146
+1990-02-10T05:00:00,0.025064793031266876
+1990-02-10T06:00:00,0.025050866086288537
+1990-02-10T07:00:00,0.025036957467264066
+1990-02-10T08:00:00,0.06386980416934566
+1990-02-10T09:00:00,0.06561310903488328
+1990-02-10T10:00:00,0.06571422156715512
+1990-02-10T11:00:00,0.06581790877123647
+1990-02-10T12:00:00,0.06592420076456444
+1990-02-10T13:00:00,0.06603312755690288
+1990-02-10T14:00:00,0.06614471902506905
+1990-02-10T15:00:00,0.0662590048893667
+1990-02-10T16:00:00,0.06637601469152446
+1990-02-10T17:00:00,0.052678741201910226
+1990-02-10T18:00:00,0.0493262760613903
+1990-02-10T19:00:00,0.049389958333895104
+1990-02-10T20:00:00,0.026181497729526094
+1990-02-10T21:00:00,0.026164806741717034
+1990-02-10T22:00:00,0.02614814357906901
+1990-02-10T23:00:00,0.02613150815405008
+1990-02-11T00:00:00,0.02611490037944344
+1990-02-11T01:00:00,0.026098320168346296
+1990-02-11T02:00:00,0.02608176743416867
+1990-02-11T03:00:00,0.026065242090632258
+1990-02-11T04:00:00,0.0260487440517693
+1990-02-11T05:00:00,0.026032273231921383
+1990-02-11T06:00:00,0.02601582954573838
+1990-02-11T07:00:00,0.025999412908177217
+1990-02-11T08:00:00,0.047415025645826926
+1990-02-11T09:00:00,0.046466741820774995
+1990-02-11T10:00:00,0.04652287666593034
+1990-02-11T11:00:00,0.046579669222757025
+1990-02-11T12:00:00,0.04663712243133984
+1990-02-11T13:00:00,0.04669523921101172
+1990-02-11T14:00:00,0.0467540224598914
+1990-02-11T15:00:00,0.04681347505443422
+1990-02-11T16:00:00,0.04687359984899558
+1990-02-11T17:00:00,0.04693439967540673
+1990-02-11T18:00:00,0.04699587734256247
+1990-02-11T19:00:00,0.04705803563602033
+1990-02-11T20:00:00,0.02668633411100921
+1990-02-11T21:00:00,0.026668204904344777
+1990-02-11T22:00:00,0.026650108593687865
+1990-02-11T23:00:00,0.026632045072968073
+1990-02-12T00:00:00,0.026614014236498774
+1990-02-12T01:00:00,0.02659601597897569
+1990-02-12T02:00:00,0.026578050195475475
+1990-02-12T03:00:00,0.026560116781454302
+1990-02-12T04:00:00,0.02654221563274648
+1990-02-12T05:00:00,0.026524346645563027
+1990-02-12T06:00:00,0.0265065097164903
+1990-02-12T07:00:00,0.026488704742488586
+1990-02-12T08:00:00,0.0619869386188728
+1990-02-12T09:00:00,0.06138962813145775
+1990-02-12T10:00:00,0.0615139987148863
+1990-02-12T11:00:00,0.061640578662806214
+1990-02-12T12:00:00,0.061769383394265076
+1990-02-12T13:00:00,0.06190042813273522
+1990-02-12T14:00:00,0.062033727900252925
+1990-02-12T15:00:00,0.06216929751186427
+1990-02-12T16:00:00,0.062307151570359556
+1990-02-12T17:00:00,0.06244730446128107
+1990-02-12T18:00:00,0.06258977034818979
+1990-02-12T19:00:00,0.06273456316817841
+1990-02-12T20:00:00,0.02805700892957715
+1990-02-12T21:00:00,0.02803543066385267
+1990-02-12T22:00:00,0.028013897237527067
+1990-02-12T23:00:00,0.02799240850086009
+1990-02-13T00:00:00,0.02797096430465729
+1990-02-13T01:00:00,0.0869458346065885
+1990-02-13T02:00:00,0.08711856726305031
+1990-02-13T03:00:00,0.08739694715886138
+1990-02-13T04:00:00,0.08768265137031432
+1990-02-13T05:00:00,0.0879757493109126
+1990-02-13T06:00:00,0.08827630839421267
+1990-02-13T07:00:00,0.08858439399058526
+1990-02-13T08:00:00,0.10645646476589529
+1990-02-13T09:00:00,0.10537157201258553
+1990-02-13T10:00:00,0.10580612523017427
+1990-02-13T11:00:00,0.10625360533364454
+1990-02-13T12:00:00,0.10671412911065858
+1990-02-13T13:00:00,0.10718780752246199
+1990-02-13T14:00:00,0.10767474564723417
+1990-02-13T15:00:00,0.10817504263477498
+1990-02-13T16:00:00,0.10868879167184874
+1990-02-13T17:00:00,0.10921607995756143
+1990-02-13T18:00:00,0.10975698868819322
+1990-02-13T19:00:00,0.11031159305094915
+1990-02-13T20:00:00,0.09328293242182081
+1990-02-13T21:00:00,0.09523576189742812
+1990-02-13T22:00:00,0.09569027903768784
+1990-02-13T23:00:00,0.09615314763165617
+1990-02-14T00:00:00,0.09662438757012838
+1990-02-14T01:00:00,0.1519809572723814
+1990-02-14T02:00:00,0.15301395357954176
+1990-02-14T03:00:00,0.15404927673313684
+1990-02-14T04:00:00,0.15511841789313863
+1990-02-14T05:00:00,0.15622146536307813
+1990-02-14T06:00:00,0.15735847782285212
+1990-02-14T07:00:00,0.15852948487123153
+1990-02-14T08:00:00,0.1705850822223458
+1990-02-14T09:00:00,0.135922436679704
+1990-02-14T10:00:00,0.13689611527999168
+1990-02-14T11:00:00,0.1378898104232269
+1990-02-14T12:00:00,0.13890346575769058
+1990-02-14T13:00:00,0.13993701566744515
+1990-02-14T14:00:00,0.14099038550227505
+1990-02-14T15:00:00,0.1420634918127442
+1990-02-14T16:00:00,0.14315624258980594
+1990-02-14T17:00:00,0.14426853750841856
+1990-02-14T18:00:00,0.14941083388662899
+1990-02-14T19:00:00,0.15531704421293385
+1990-02-14T20:00:00,0.16128798801866912
+1990-02-14T21:00:00,0.16867444773777474
+1990-02-14T22:00:00,0.17487023074801172
+1990-02-14T23:00:00,0.181129852201446
+1990-02-15T00:00:00,0.18745214325063714
+1990-02-15T01:00:00,0.12224109153228005
+1990-02-15T02:00:00,0.1231743855924739
+1990-02-15T03:00:00,0.12416033777976328
+1990-02-15T04:00:00,0.12514630935339577
+1990-02-15T05:00:00,0.12613228764778217
+1990-02-15T06:00:00,0.12711825996801818
+1990-02-15T07:00:00,0.12810421359160334
+1990-02-15T08:00:00,0.12909013577014433
+1990-02-15T09:00:00,0.1282586495345598
+1990-02-15T10:00:00,0.1291038354364517
+1990-02-15T11:00:00,0.1299490144318855
+1990-02-15T12:00:00,0.13079417600557083
+1990-02-15T13:00:00,0.13163930963635181
+1990-02-15T14:00:00,0.1324844047982656
+1990-02-15T15:00:00,0.13332945096159107
+1990-02-15T16:00:00,0.1341744375938868
+1990-02-15T17:00:00,0.135019354161019
+1990-02-15T18:00:00,0.1358641901281787
+1990-02-15T19:00:00,0.13670893496088926
+1990-02-15T20:00:00,0.137553578126003
+1990-02-15T21:00:00,0.14022107189336713
+1990-02-15T22:00:00,0.14121164920430823
+1990-02-15T23:00:00,0.14220196600699642
+1990-02-16T00:00:00,0.14319200970937265
+1990-02-16T01:00:00,0.11898707364927698
+1990-02-16T02:00:00,0.11793798094052732
+1990-02-16T03:00:00,0.11689696307871034
+1990-02-16T04:00:00,0.11586395800397585
+1990-02-16T05:00:00,0.11483890413649546
+1990-02-16T06:00:00,0.11382174037272434
+1990-02-16T07:00:00,0.11281240608169177
+1990-02-16T08:00:00,0.11883708549111444
+1990-02-16T09:00:00,0.11735832443711659
+1990-02-16T10:00:00,0.11685037133906026
+1990-02-16T11:00:00,0.11634682179884101
+1990-02-16T12:00:00,0.11584764193774112
+1990-02-16T13:00:00,0.1153527981373852
+1990-02-16T14:00:00,0.11486225703772207
+1990-02-16T15:00:00,0.11437598553502143
+1990-02-16T16:00:00,0.1138939507798871
+1990-02-16T17:00:00,0.11341612017528552
+1990-02-16T18:00:00,0.11294246137458937
+1990-02-16T19:00:00,0.11247294227963692
+1990-02-16T20:00:00,0.10602861261894732
+1990-02-16T21:00:00,0.10508080204982503
+1990-02-16T22:00:00,0.10414028750822757
+1990-02-16T23:00:00,0.10320701295666594
+1990-02-17T00:00:00,0.10228092279078317
+1990-02-17T01:00:00,0.11767029536518808
+1990-02-17T02:00:00,0.1179784291074575
+1990-02-17T03:00:00,0.1173269228768375
+1990-02-17T04:00:00,0.10604076095005295
+1990-02-17T05:00:00,0.1054107767865003
+1990-02-17T06:00:00,0.10478584205260334
+1990-02-17T07:00:00,0.1041659180212563
+1990-02-17T08:00:00,0.1035509662637201
+1990-02-17T09:00:00,0.10101903013772828
+1990-02-17T10:00:00,0.10025638898961631
+1990-02-17T11:00:00,0.09949967724257308
+1990-02-17T12:00:00,0.09874884941056715
+1990-02-17T13:00:00,0.09800386035856164
+1990-02-17T14:00:00,0.09726466529978575
+1990-02-17T15:00:00,0.0965312197930277
+1990-02-17T16:00:00,0.09580347973994872
+1990-02-17T17:00:00,0.09508140138241797
+1990-02-17T18:00:00,0.09436494129986842
+1990-02-17T19:00:00,0.09365405640667357
+1990-02-17T20:00:00,0.09294870394954438
+1990-02-17T21:00:00,0.09417109218557726
+1990-02-17T22:00:00,0.09363452778634337
+1990-02-17T23:00:00,0.09310229701622207
+1990-02-18T00:00:00,0.09257436666014394
+1990-02-18T01:00:00,0.08850748750908298
+1990-02-18T02:00:00,0.08769671085651339
+1990-02-18T03:00:00,0.08689217733013803
+1990-02-18T04:00:00,0.08609383902689682
+1990-02-18T05:00:00,0.08530164841357676
+1990-02-18T06:00:00,0.08451555832393612
+1990-02-18T07:00:00,0.08373552195585111
+1990-02-18T08:00:00,0.0829614928684847
+1990-02-18T09:00:00,0.08219342497947785
+1990-02-18T10:00:00,0.08143127256216239
+1990-02-18T11:00:00,0.08067499024279613
+1990-02-18T12:00:00,0.0799245329978191
+1990-02-18T13:00:00,0.07917985615113175
+1990-02-18T14:00:00,0.07844091537139393
+1990-02-18T15:00:00,0.07770766666934542
+1990-02-18T16:00:00,0.07698006639514718
+1990-02-18T17:00:00,0.07625807123574355
+1990-02-18T18:00:00,0.07554163821224481
+1990-02-18T19:00:00,0.07483072467733055
+1990-02-18T20:00:00,0.07412528831267325
+1990-02-18T21:00:00,0.07342528712638159
+1990-02-18T22:00:00,0.07273067945046448
+1990-02-18T23:00:00,0.07204142393831431
+1990-02-19T00:00:00,0.07135747956221014
+1990-02-19T01:00:00,0.07067880561084044
+1990-02-19T02:00:00,0.07000536168684515
+1990-02-19T03:00:00,0.06933710770437672
+1990-02-19T04:00:00,0.06867400388668063
+1990-02-19T05:00:00,0.06801601076369464
+1990-02-19T06:00:00,0.0673630891696666
+1990-02-19T07:00:00,0.06671520024079124
+1990-02-19T08:00:00,0.06607230541286517
+1990-02-19T09:00:00,0.06543436641896039
+1990-02-19T10:00:00,0.06480134528711579
+1990-02-19T11:00:00,0.0641732043380468
+1990-02-19T12:00:00,0.06354990618287298
+1990-02-19T13:00:00,0.06293141372086328
+1990-02-19T14:00:00,0.06231769013719896
+1990-02-19T15:00:00,0.06170869890075397
+1990-02-19T16:00:00,0.061104403761892814
+1990-02-19T17:00:00,0.06050476875028537
+1990-02-19T18:00:00,0.06015083836022602
+1990-02-19T19:00:00,0.060058405351518795
+1990-02-19T20:00:00,0.05996625935569168
+1990-02-19T21:00:00,0.05987439932780274
+1990-02-19T22:00:00,0.059782824226825744
+1990-02-19T23:00:00,0.05969153301563539
+1990-02-20T00:00:00,0.05960052466099242
+1990-02-20T01:00:00,0.05950979813352894
+1990-02-20T02:00:00,0.05941935240773367
+1990-02-20T03:00:00,0.059329186461937376
+1990-02-20T04:00:00,0.05923929927829823
+1990-02-20T05:00:00,0.05914968984278733
+1990-02-20T06:00:00,0.05906035714517428
+1990-02-20T07:00:00,0.05897130017901266
+1990-02-20T08:00:00,0.05888251794162579
+1990-02-20T09:00:00,0.058794009434092354
+1990-02-20T10:00:00,0.05870577366123222
+1990-02-20T11:00:00,0.058617809631592195
+1990-02-20T12:00:00,0.05853011635743194
+1990-02-20T13:00:00,0.058442692854709835
+1990-02-20T14:00:00,0.05835553814306901
+1990-02-20T15:00:00,0.05826865124582334
+1990-02-20T16:00:00,0.05818203118994351
+1990-02-20T17:00:00,0.05809567700604318
+1990-02-20T18:00:00,0.058009587728365196
+1990-02-20T19:00:00,0.057923762394767764
+1990-02-20T20:00:00,0.05783820004671078
+1990-02-20T21:00:00,0.05775289972924219
+1990-02-20T22:00:00,0.05766786049098435
+1990-02-20T23:00:00,0.05758308138412055
+1990-02-21T00:00:00,0.05749856146438139
+1990-02-21T01:00:00,0.05741429979103148
+1990-02-21T02:00:00,0.05733029542685591
+1990-02-21T03:00:00,0.05724654743814703
+1990-02-21T04:00:00,0.05716305489469106
+1990-02-21T05:00:00,0.05707981686975492
+1990-02-21T06:00:00,0.05699683244007296
+1990-02-21T07:00:00,0.05691410068583394
+1990-02-21T08:00:00,0.05683162069066781
+1990-02-21T09:00:00,0.056749391541632735
+1990-02-21T10:00:00,0.056667412329202124
+1990-02-21T11:00:00,0.05658568214725167
+1990-02-21T12:00:00,0.05650420009304645
+1990-02-21T13:00:00,0.05642296526722806
+1990-02-21T14:00:00,0.0563419767738019
+1990-02-21T15:00:00,0.056261233720124385
+1990-02-21T16:00:00,0.05618073521689019
+1990-02-21T17:00:00,0.05610048037811976
+1990-02-21T18:00:00,0.05602046832114656
+1990-02-21T19:00:00,0.055940698166604595
+1990-02-21T20:00:00,0.05586116903841594
+1990-02-21T21:00:00,0.05578188006377818
+1990-02-21T22:00:00,0.055702830373152164
+1990-02-21T23:00:00,0.055624019100249486
+1990-02-22T00:00:00,0.055545445382020275
+1990-02-22T01:00:00,0.055467108358640924
+1990-02-22T02:00:00,0.05538900717350181
+1990-02-22T03:00:00,0.05531114097319523
+1990-02-22T04:00:00,0.05523350890750315
+1990-02-22T05:00:00,0.05515611012938526
+1990-02-22T06:00:00,0.05507894379496685
+1990-02-22T07:00:00,0.05500200906352686
+1990-02-22T08:00:00,0.05492530509748596
+1990-02-22T09:00:00,0.05484883106239461
+1990-02-22T10:00:00,0.05477258612692124
+1990-02-22T11:00:00,0.05469656946284048
+1990-02-22T12:00:00,0.054620780245021344
+1990-02-22T13:00:00,0.05454521765141557
+1990-02-22T14:00:00,0.05446988086304591
+1990-02-22T15:00:00,0.05439476906399454
+1990-02-22T16:00:00,0.054319881441391465
+1990-02-22T17:00:00,0.05424521718540302
+1990-02-22T18:00:00,0.05417077548922031
+1990-02-22T19:00:00,0.05409655554904784
+1990-02-22T20:00:00,0.054022556564092064
+1990-02-22T21:00:00,0.05394877773655006
+1990-02-22T22:00:00,0.05387521827159819
+1990-02-22T23:00:00,0.05380187737738086
+1990-02-23T00:00:00,0.053728754264999234
+1990-02-23T01:00:00,0.05365584814850015
+1990-02-23T02:00:00,0.053583158244864856
+1990-02-23T03:00:00,0.05351068377399798
+1990-02-23T04:00:00,0.0534384239587165
+1990-02-23T05:00:00,0.053366378024738675
+1990-02-23T06:00:00,0.05329454520067305
+1990-02-23T07:00:00,0.05322292471800763
+1990-02-23T08:00:00,0.05315151581109887
+1990-02-23T09:00:00,0.05308031771716092
+1990-02-23T10:00:00,0.05300932967625477
+1990-02-23T11:00:00,0.05293855093127749
+1990-02-23T12:00:00,0.05286798072795152
+1990-02-23T13:00:00,0.05279761831481401
+1990-02-23T14:00:00,0.052727462943206106
+1990-02-23T15:00:00,0.052657513867262425
+1990-02-23T16:00:00,0.052587770343900456
+1990-02-23T17:00:00,0.05251823163281004
+1990-02-23T18:00:00,0.05244889699644291
+1990-02-23T19:00:00,0.05237976570000223
+1990-02-23T20:00:00,0.052310837011432215
+1990-02-23T21:00:00,0.052242110201407746
+1990-02-23T22:00:00,0.05217358454332407
+1990-02-23T23:00:00,0.05210525931328652
+1990-02-24T00:00:00,0.052037133790100276
+1990-02-24T01:00:00,0.051969207255260094
+1990-02-24T02:00:00,0.051901478992940286
+1990-02-24T03:00:00,0.051833948289984444
+1990-02-24T04:00:00,0.05176661443589546
+1990-02-24T05:00:00,0.051699476722825405
+1990-02-24T06:00:00,0.05163253444556558
+1990-02-24T07:00:00,0.051565786901536494
+1990-02-24T08:00:00,0.051499233390777985
+1990-02-24T09:00:00,0.051432873215939263
+1990-02-24T10:00:00,0.0513667056822691
+1990-02-24T11:00:00,0.051300730097606
+1990-02-24T12:00:00,0.0512349457723684
+1990-02-24T13:00:00,0.05116935201954494
+1990-02-24T14:00:00,0.05110394815468477
+1990-02-24T15:00:00,0.05103873349588781
+1990-02-24T16:00:00,0.05097370736379525
+1990-02-24T17:00:00,0.050908869081579794
+1990-02-24T18:00:00,0.050844217974936226
+1990-02-24T19:00:00,0.05077975337207183
+1990-02-24T20:00:00,0.05071547460369689
+1990-02-24T21:00:00,0.05065138100301527
+1990-02-24T22:00:00,0.050587471905715
+1990-02-24T23:00:00,0.050523746649958866
+1990-02-25T00:00:00,0.050460204576375116
+1990-02-25T01:00:00,0.050396845028048094
+1990-02-25T02:00:00,0.05033366735050902
+1990-02-25T03:00:00,0.0502706708917267
+1990-02-25T04:00:00,0.05020785500209839
+1990-02-25T05:00:00,0.05014521903444057
+1990-02-25T06:00:00,0.05008276234397985
+1990-02-25T07:00:00,0.050020484288343846
+1990-02-25T08:00:00,0.04995838422755216
+1990-02-25T09:00:00,0.049896461524007285
+1990-02-25T10:00:00,0.04983471554248571
+1990-02-25T11:00:00,0.04977314565012883
+1990-02-25T12:00:00,0.04971175121643419
+1990-02-25T13:00:00,0.04965053161324639
+1990-02-25T14:00:00,0.049589486214748436
+1990-02-25T15:00:00,0.04952861439745278
+1990-02-25T16:00:00,0.04946791554019257
+1990-02-25T17:00:00,0.049407389024112916
+1990-02-25T18:00:00,0.049347034232662124
+1990-02-25T19:00:00,0.04928685055158305
+1990-02-25T20:00:00,0.049226837368904416
+1990-02-25T21:00:00,0.049166994074932226
+1990-02-25T22:00:00,0.04910732006224109
+1990-02-25T23:00:00,0.0490478147256658
+1990-02-26T00:00:00,0.04898847746229268
+1990-02-26T01:00:00,0.07074526004147468
+1990-02-26T02:00:00,0.10674821252119734
+1990-02-26T03:00:00,0.10751625560510175
+1990-02-26T04:00:00,0.10829375964645001
+1990-02-26T05:00:00,0.10908060418659545
+1990-02-26T06:00:00,0.10987666857248587
+1990-02-26T07:00:00,0.11068183202230833
+1990-02-26T08:00:00,0.11149597368987914
+1990-02-26T09:00:00,0.11069735646032156
+1990-02-26T10:00:00,0.11150320376735114
+1990-02-26T11:00:00,0.11231713605167243
+1990-02-26T12:00:00,0.11313904242843949
+1990-02-26T13:00:00,0.11396881222270154
+1990-02-26T14:00:00,0.11480633501553669
+1990-02-26T15:00:00,0.11565150068831148
+1990-02-26T16:00:00,0.1165041994650436
+1990-02-26T17:00:00,0.11736432195285815
+1990-02-26T18:00:00,0.11966088189372646
+1990-02-26T19:00:00,0.12414696373425146
+1990-02-26T20:00:00,0.1286441631296484
+1990-02-26T21:00:00,0.13489876739924947
+1990-02-26T22:00:00,0.13956855016296987
+1990-02-26T23:00:00,0.14424917985042976
+1990-02-27T00:00:00,0.14894006406440125
+1990-02-27T01:00:00,0.15437305120172218
+1990-02-27T02:00:00,0.1590964210676026
+1990-02-27T03:00:00,0.16387608714504664
+1990-02-27T04:00:00,0.16866419532066787
+1990-02-27T05:00:00,0.17346017242684653
+1990-02-27T06:00:00,0.17826345358896217
+1990-02-27T07:00:00,0.18307348224440934
+1990-02-27T08:00:00,0.18788971015373096
+1990-02-27T09:00:00,0.19053270543474904
+1990-02-27T10:00:00,0.195154021622552
+1990-02-27T11:00:00,0.1997787438863626
+1990-02-27T12:00:00,0.20440641462479578
+1990-02-27T13:00:00,0.2090365834920091
+1990-02-27T14:00:00,0.2136688073725774
+1990-02-27T15:00:00,0.21830265035216406
+1990-02-27T16:00:00,0.22293768368425898
+1990-02-27T17:00:00,0.22757348575324052
+1990-02-27T18:00:00,0.2322096420340111
+1990-02-27T19:00:00,0.2368457450484459
+1990-02-27T20:00:00,0.24148139431888582
+1990-02-27T21:00:00,0.2483104000678258
+1990-02-27T22:00:00,0.2531644991811403
+1990-02-27T23:00:00,0.2580177122342142
+1990-02-28T00:00:00,0.2628696176149058
+1990-02-28T01:00:00,0.2546386113067523
+1990-02-28T02:00:00,0.25816836852801656
+1990-02-28T03:00:00,0.2616753329606048
+1990-02-28T04:00:00,0.26517731338151207
+1990-02-28T05:00:00,0.26867414428606
+1990-02-28T06:00:00,0.27216566316873536
+1990-02-28T07:00:00,0.2756517104945073
+1990-02-28T08:00:00,0.27913212966989287
+1990-02-28T09:00:00,0.280561324172313
+1990-02-28T10:00:00,0.2838152616738065
+1990-02-28T11:00:00,0.2870631850849418
+1990-02-28T12:00:00,0.2903049711879117
+1990-02-28T13:00:00,0.2935404991323765
+1990-02-28T14:00:00,0.2967696504105838
+1990-02-28T15:00:00,0.2999923088324511
+1990-02-28T16:00:00,0.30320836050062305
+1990-02-28T17:00:00,0.30641769378552286
+1990-02-28T18:00:00,0.30962019930041035
+1990-02-28T19:00:00,0.31281576987646265
+1990-02-28T20:00:00,0.31600430053788986
+1990-02-28T21:00:00,0.32123976940441956
+1990-02-28T22:00:00,0.32463708495695387
+1990-02-28T23:00:00,0.32802676178273027
+1990-03-01T00:00:00,0.33140868546828245
+1990-03-01T01:00:00,0.2837524210235733
+1990-03-01T02:00:00,0.28153134566113597
+1990-03-01T03:00:00,0.2793273372216152
+1990-03-01T04:00:00,0.277140263910105
+1990-03-01T05:00:00,0.2749699949562283
+1990-03-01T06:00:00,0.27281640060612106
+1990-03-01T07:00:00,0.2706793521144795
+1990-03-01T08:00:00,0.28346750062466947
+1990-03-01T09:00:00,0.28101077114988593
+1990-03-01T10:00:00,0.28039600948682514
+1990-03-01T11:00:00,0.27514033790720277
+1990-03-01T12:00:00,0.26844273462722157
+1990-03-01T13:00:00,0.26672908654701777
+1990-03-01T14:00:00,0.2650287345270381
+1990-03-01T15:00:00,0.26334157602699515
+1990-03-01T16:00:00,0.2616675093023462
+1990-03-01T17:00:00,0.2600064333980762
+1990-03-01T18:00:00,0.2583582481425282
+1990-03-01T19:00:00,0.2567228541412835
+1990-03-01T20:00:00,0.2524617124429826
+1990-03-01T21:00:00,0.2504828122234726
+1990-03-01T22:00:00,0.24851910870254615
+1990-03-01T23:00:00,0.24657048461904177
+1990-03-02T00:00:00,0.24463682362265146
+1990-03-02T01:00:00,0.24271801026679915
+1990-03-02T02:00:00,0.24081393000157555
+1990-03-02T03:00:00,0.23892446916672844
+1990-03-02T04:00:00,0.23704951498470755
+1990-03-02T05:00:00,0.2351889555537651
+1990-03-02T06:00:00,0.23334267984111004
+1990-03-02T07:00:00,0.2315105776761161
+1990-03-02T08:00:00,0.22969253974358345
+1990-03-02T09:00:00,0.22788845757705328
+1990-03-02T10:00:00,0.22609822355217518
+1990-03-02T11:00:00,0.22432173088012594
+1990-03-02T12:00:00,0.22255887360108126
+1990-03-02T13:00:00,0.2208095465777374
+1990-03-02T14:00:00,0.21907364548888514
+1990-03-02T15:00:00,0.2173510668230332
+1990-03-02T16:00:00,0.21564170787208256
+1990-03-02T17:00:00,0.21394546672504977
+1990-03-02T18:00:00,0.21226224226184004
+1990-03-02T19:00:00,0.21059193414706956
+1990-03-02T20:00:00,0.20893444282393553
+1990-03-02T21:00:00,0.20728966950813518
+1990-03-02T22:00:00,0.20565751618183203
+1990-03-02T23:00:00,0.20403788558767005
+1990-03-03T00:00:00,0.20243068122283428
+1990-03-03T01:00:00,0.20083580733315856
+1990-03-03T02:00:00,0.1992531689072794
+1990-03-03T03:00:00,0.19768267167083592
+1990-03-03T04:00:00,0.196124222080715
+1990-03-03T05:00:00,0.19457772731934192
+1990-03-03T06:00:00,0.1930430952890161
+1990-03-03T07:00:00,0.19152023460629047
+1990-03-03T08:00:00,0.19000905459639603
+1990-03-03T09:00:00,0.18850946528770962
+1990-03-03T10:00:00,0.18702137740626484
+1990-03-03T11:00:00,0.18554470237030715
+1990-03-03T12:00:00,0.18407935228489036
+1990-03-03T13:00:00,0.18262523993651655
+1990-03-03T14:00:00,0.18118227878781784
+1990-03-03T15:00:00,0.1797503829722797
+1990-03-03T16:00:00,0.1783294672890058
+1990-03-03T17:00:00,0.1769194471975241
+1990-03-03T18:00:00,0.17552023881263343
+1990-03-03T19:00:00,0.17413175889929078
+1990-03-03T20:00:00,0.1727539248675387
+1990-03-03T21:00:00,0.17138665476747234
+1990-03-03T22:00:00,0.17002986728424604
+1990-03-03T23:00:00,0.16868348173311934
+1990-03-04T00:00:00,0.16734741805454148
+1990-03-04T01:00:00,0.16602159680927495
+1990-03-04T02:00:00,0.1647059391735568
+1990-03-04T03:00:00,0.16340036693429819
+1990-03-04T04:00:00,0.1621048024843217
+1990-03-04T05:00:00,0.1608191688176359
+1990-03-04T06:00:00,0.15954338952474664
+1990-03-04T07:00:00,0.1582773887880061
+1990-03-04T08:00:00,0.15731595514272792
+1990-03-04T09:00:00,0.1563617569821638
+1990-03-04T10:00:00,0.1554147237508076
+1990-03-04T11:00:00,0.15447478652006208
+1990-03-04T12:00:00,0.15354187797921084
+1990-03-04T13:00:00,0.15261593242710683
+1990-03-04T14:00:00,0.1516968857648697
+1990-03-04T15:00:00,0.15078467548998814
+1990-03-04T16:00:00,0.14987924069236447
+1990-03-04T17:00:00,0.1489805220529847
+1990-03-04T18:00:00,0.148088461845729
+1990-03-04T19:00:00,0.14720300393976993
+1990-03-04T20:00:00,0.14603233183070724
+1990-03-04T21:00:00,0.14487062953879185
+1990-03-04T22:00:00,0.14371782809568648
+1990-03-04T23:00:00,0.14257385906689102
+1990-03-05T00:00:00,0.14143865454758253
+1990-03-05T01:00:00,0.1403121471584876
+1990-03-05T02:00:00,0.13919427004178722
+1990-03-05T03:00:00,0.1380849568570535
+1990-03-05T04:00:00,0.13698414177721843
+1990-03-05T05:00:00,0.1358917594845742
+1990-03-05T06:00:00,0.13480774516680494
+1990-03-05T07:00:00,0.13373203451304938
+1990-03-05T08:00:00,0.13328800188206896
+1990-03-05T09:00:00,0.1328468658539919
+1990-03-05T10:00:00,0.13240860668804158
+1990-03-05T11:00:00,0.13225258974809115
+1990-03-05T12:00:00,0.13126820161786773
+1990-03-05T13:00:00,0.13022021972800707
+1990-03-05T14:00:00,0.12918026436064234
+1990-03-05T15:00:00,0.12814827384639632
+1990-03-05T16:00:00,0.12712418699286562
+1990-03-05T17:00:00,0.12610794308090612
+1990-03-05T18:00:00,0.12509948186094744
+1990-03-05T19:00:00,0.12409874354933643
+1990-03-05T20:00:00,0.12310566882470902
+1990-03-05T21:00:00,0.12212019882439087
+1990-03-05T22:00:00,0.12114227514082594
+1990-03-05T23:00:00,0.12017183981803324
+1990-03-06T00:00:00,0.11920883534809099
+1990-03-06T01:00:00,0.11825320466764871
+1990-03-06T02:00:00,0.11730489115446643
+1990-03-06T03:00:00,0.1163638386239809
+1990-03-06T04:00:00,0.11542999132589903
+1990-03-06T05:00:00,0.11450329394081757
+1990-03-06T06:00:00,0.11358369157686954
+1990-03-06T07:00:00,0.11267112976639694
+1990-03-06T08:00:00,0.11176555446264926
+1990-03-06T09:00:00,0.1108669120365082
+1990-03-06T10:00:00,0.10997514927323755
+1990-03-06T11:00:00,0.10909021336925907
+1990-03-06T12:00:00,0.10821205192895318
+1990-03-06T13:00:00,0.10734061296148481
+1990-03-06T14:00:00,0.10647584487765428
+1990-03-06T15:00:00,0.10561769648677256
+1990-03-06T16:00:00,0.10476611699356102
+1990-03-06T17:00:00,0.10392105599507574
+1990-03-06T18:00:00,0.10308246347765558
+1990-03-06T19:00:00,0.10225028981389411
+1990-03-06T20:00:00,0.1014244857596355
+1990-03-06T21:00:00,0.10060500245099377
+1990-03-06T22:00:00,0.09979179140139528
+1990-03-06T23:00:00,0.09898480449864455
+1990-03-07T00:00:00,0.09818399400201286
+1990-03-07T01:00:00,0.09738931253934961
+1990-03-07T02:00:00,0.09660071310421667
+1990-03-07T03:00:00,0.0958181490530445
+1990-03-07T04:00:00,0.09504157410231115
+1990-03-07T05:00:00,0.0942709423257429
+1990-03-07T06:00:00,0.09350620815153698
+1990-03-07T07:00:00,0.09274732635960596
+1990-03-07T08:00:00,0.09199425207884362
+1990-03-07T09:00:00,0.09124694078441259
+1990-03-07T10:00:00,0.09050534829505262
+1990-03-07T11:00:00,0.08976943077041032
+1990-03-07T12:00:00,0.08903914470838961
+1990-03-07T13:00:00,0.0883144469425229
+1990-03-07T14:00:00,0.08759529463936302
+1990-03-07T15:00:00,0.08688164529589522
+1990-03-07T16:00:00,0.08617345673696962
+1990-03-07T17:00:00,0.08547068711275373
+1990-03-07T18:00:00,0.08477329489620475
+1990-03-07T19:00:00,0.08408123888056196
+1990-03-07T20:00:00,0.0833944781768581
+1990-03-07T21:00:00,0.08271297221145099
+1990-03-07T22:00:00,0.0820366807235738
+1990-03-07T23:00:00,0.08136556376290471
+1990-03-08T00:00:00,0.08069958168715585
+1990-03-08T01:00:00,0.08003869515968043
+1990-03-08T02:00:00,0.07938286514709923
+1990-03-08T03:00:00,0.07873205291694527
+1990-03-08T04:00:00,0.07808622003532693
+1990-03-08T05:00:00,0.0774453283646096
+1990-03-08T06:00:00,0.07680934006111498
+1990-03-08T07:00:00,0.07617821757283881
+1990-03-08T08:00:00,0.07555192363718613
+1990-03-08T09:00:00,0.07493042127872446
+1990-03-08T10:00:00,0.07431367380695426
+1990-03-08T11:00:00,0.07370164481409727
+1990-03-08T12:00:00,0.07309429817290157
+1990-03-08T13:00:00,0.07249159803446417
+1990-03-08T14:00:00,0.0723544691452207
+1990-03-08T15:00:00,0.07225706074857795
+1990-03-08T16:00:00,0.07215994103029225
+1990-03-08T17:00:00,0.07206310894626074
+1990-03-08T18:00:00,0.07196656345629014
+1990-03-08T19:00:00,0.07187030352408191
+1990-03-08T20:00:00,0.07177432811721741
+1990-03-08T21:00:00,0.07167863620714333
+1990-03-08T22:00:00,0.07158322676915686
+1990-03-08T23:00:00,0.07148809878239111
+1990-03-09T00:00:00,0.07139325122980071
+1990-03-09T01:00:00,0.07129868309814714
+1990-03-09T02:00:00,0.07120439337798437
+1990-03-09T03:00:00,0.07111038106364445
+1990-03-09T04:00:00,0.07101664515322322
+1990-03-09T05:00:00,0.07092318464856597
+1990-03-09T06:00:00,0.07082999855525329
+1990-03-09T07:00:00,0.0707370858825869
+1990-03-09T08:00:00,0.07064444564357546
+1990-03-09T09:00:00,0.07055207685492057
+1990-03-09T10:00:00,0.07045997853700281
+1990-03-09T11:00:00,0.07036814971386773
+1990-03-09T12:00:00,0.07027658941321192
+1990-03-09T13:00:00,0.07018529666636929
+1990-03-09T14:00:00,0.07009427050829718
+1990-03-09T15:00:00,0.07000350997756262
+1990-03-09T16:00:00,0.06991301411632875
+1990-03-09T17:00:00,0.06982278197034104
+1990-03-09T18:00:00,0.06973281258891387
+1990-03-09T19:00:00,0.06964310502491684
+1990-03-09T20:00:00,0.06955365833476146
+1990-03-09T21:00:00,0.06946447157838757
+1990-03-09T22:00:00,0.06937554381925008
+1990-03-09T23:00:00,0.0692868741243056
+1990-03-10T00:00:00,0.0691984615639992
+1990-03-10T01:00:00,0.06911030521225116
+1990-03-10T02:00:00,0.0690224041464438
+1990-03-10T03:00:00,0.0689347574474084
+1990-03-10T04:00:00,0.06884736419941212
+1990-03-10T05:00:00,0.06876022349014493
+1990-03-10T06:00:00,0.06867333441070672
+1990-03-10T07:00:00,0.06858669605559432
+1990-03-10T08:00:00,0.0685003075226887
+1990-03-10T09:00:00,0.06841416791324204
+1990-03-10T10:00:00,0.06832827633186511
+1990-03-10T11:00:00,0.0682426318865144
+1990-03-10T12:00:00,0.06815723368847956
+1990-03-10T13:00:00,0.06807208085237071
+1990-03-10T14:00:00,0.06798717249610589
+1990-03-10T15:00:00,0.06790250774089857
+1990-03-10T16:00:00,0.0678273285732701
+1990-03-10T17:00:00,0.06775621493268942
+1990-03-10T18:00:00,0.06768530874942776
+1990-03-10T19:00:00,0.06761460927922586
+1990-03-10T20:00:00,0.06754765888489253
+1990-03-10T21:00:00,0.06750706442305605
+1990-03-10T22:00:00,0.06746660850006732
+1990-03-10T23:00:00,0.06742629062295434
+1990-03-11T00:00:00,0.06738611030057425
+1990-03-11T01:00:00,0.06730324395906326
+1990-03-11T02:00:00,0.06722061384056913
+1990-03-11T03:00:00,0.06713821909716253
+1990-03-11T04:00:00,0.06705605888408023
+1990-03-11T05:00:00,0.0669741323597131
+1990-03-11T06:00:00,0.06689243868559414
+1990-03-11T07:00:00,0.06681097702638658
+1990-03-11T08:00:00,0.06672974654987215
+1990-03-11T09:00:00,0.06664874642693912
+1990-03-11T10:00:00,0.06656797583157062
+1990-03-11T11:00:00,0.0664874339408329
+1990-03-11T12:00:00,0.06640711993486376
+1990-03-11T13:00:00,0.06632703299686077
+1990-03-11T14:00:00,0.06624717231306981
+1990-03-11T15:00:00,0.06616753707277348
+1990-03-11T16:00:00,0.06608812646827968
+1990-03-11T17:00:00,0.06600893969491003
+1990-03-11T18:00:00,0.06592997595098865
+1990-03-11T19:00:00,0.06585123443783063
+1990-03-11T20:00:00,0.06577271435973082
+1990-03-11T21:00:00,0.06569441492395249
+1990-03-11T22:00:00,0.06561633534071623
+1990-03-11T23:00:00,0.06553847482318859
+1990-03-12T00:00:00,0.06546083258747104
+1990-03-12T01:00:00,0.06538340785258888
+1990-03-12T02:00:00,0.06530619984048014
+1990-03-12T03:00:00,0.06522920777598458
+1990-03-12T04:00:00,0.06515243088683272
+1990-03-12T05:00:00,0.06507586840363487
+1990-03-12T06:00:00,0.06499951955987035
+1990-03-12T07:00:00,0.06492338359187651
+1990-03-12T08:00:00,0.06484745973883799
+1990-03-12T09:00:00,0.06477174724277594
+1990-03-12T10:00:00,0.06469624534853735
+1990-03-12T11:00:00,0.0646209533037843
+1990-03-12T12:00:00,0.06454587035898328
+1990-03-12T13:00:00,0.06447099576739473
+1990-03-12T14:00:00,0.06439632878506237
+1990-03-12T15:00:00,0.06432186867080267
+1990-03-12T16:00:00,0.06424761468619444
+1990-03-12T17:00:00,0.06417356609556839
+1990-03-12T18:00:00,0.0640997221659966
+1990-03-12T19:00:00,0.06402608216728237
+1990-03-12T20:00:00,0.06395264537194967
+1990-03-12T21:00:00,0.06387941105523305
+1990-03-12T22:00:00,0.06380637849506732
+1990-03-12T23:00:00,0.0637335469720773
+1990-03-13T00:00:00,0.06366091576956774
+1990-03-13T01:00:00,0.06358848417351315
+1990-03-13T02:00:00,0.0635162514725477
+1990-03-13T03:00:00,0.06344421695795524
+1990-03-13T04:00:00,0.06337237992365921
+1990-03-13T05:00:00,0.06330073966621272
+1990-03-13T06:00:00,0.06322929548478856
+1990-03-13T07:00:00,0.0631580466811694
+1990-03-13T08:00:00,0.06309701596132838
+1990-03-13T09:00:00,0.0630261307523083
+1990-03-13T10:00:00,0.0629554389299583
+1990-03-13T11:00:00,0.06288493980607525
+1990-03-13T12:00:00,0.06281463269501811
+1990-03-13T13:00:00,0.06274451691369833
+1990-03-13T14:00:00,0.06267459178157019
+1990-03-13T15:00:00,0.0626048566206212
+1990-03-13T16:00:00,0.06253531075536253
+1990-03-13T17:00:00,0.062465953512819514
+1990-03-13T18:00:00,0.06239678422252206
+1990-03-13T19:00:00,0.06232780221649534
+1990-03-13T20:00:00,0.06225900682925023
+1990-03-13T21:00:00,0.06219039739777404
+1990-03-13T22:00:00,0.06212197326152106
+1990-03-13T23:00:00,0.06205373376240334
+1990-03-14T00:00:00,0.062032793319875684
+1990-03-14T01:00:00,0.062074570999065375
+1990-03-14T02:00:00,0.062121158418414694
+1990-03-14T03:00:00,0.06579896583187234
+1990-03-14T04:00:00,0.06797775796776508
+1990-03-14T05:00:00,0.06802439387590967
+1990-03-14T06:00:00,0.06807104554898658
+1990-03-14T07:00:00,0.06811771278917463
+1990-03-14T08:00:00,0.0676853283943992
+1990-03-14T09:00:00,0.06492992444674309
+1990-03-14T10:00:00,0.06492834883559379
+1990-03-14T11:00:00,0.06492682659980245
+1990-03-14T12:00:00,0.0649253575439798
+1990-03-14T13:00:00,0.06492394147341263
+1990-03-14T14:00:00,0.06492257819406139
+1990-03-14T15:00:00,0.0649212675125577
+1990-03-14T16:00:00,0.06492000923620198
+1990-03-14T17:00:00,0.0649188031729611
+1990-03-14T18:00:00,0.06491764913146587
+1990-03-14T19:00:00,0.0649165469210087
+1990-03-14T20:00:00,0.06539462483660556
+1990-03-14T21:00:00,0.0681960324386722
+1990-03-14T22:00:00,0.06824367639581352
+1990-03-14T23:00:00,0.06829133129022522
+1990-03-15T00:00:00,0.0683389969397045
+1990-03-15T01:00:00,0.06250660563259913
+1990-03-15T02:00:00,0.06243777662877443
+1990-03-15T03:00:00,0.06236913344316699
+1990-03-15T04:00:00,0.06230067541585568
+1990-03-15T05:00:00,0.06223240188937483
+1990-03-15T06:00:00,0.06216431220870471
+1990-03-15T07:00:00,0.06209640572126249
+1990-03-15T08:00:00,0.06202868177689288
+1990-03-15T09:00:00,0.0619611397278591
+1990-03-15T10:00:00,0.0618937789288337
+1990-03-15T11:00:00,0.06182659873688944
+1990-03-15T12:00:00,0.061759598511490266
+1990-03-15T13:00:00,0.061692777614482296
+1990-03-15T14:00:00,0.0616261354100848
+1990-03-15T15:00:00,0.061559671264881294
+1990-03-15T16:00:00,0.061493384547810545
+1990-03-15T17:00:00,0.06142727463015777
+1990-03-15T18:00:00,0.06136134088554571
+1990-03-15T19:00:00,0.06129558268992585
+1990-03-15T20:00:00,0.061229999421569634
+1990-03-15T21:00:00,0.0611645904610597
+1990-03-15T22:00:00,0.0610993551912812
+1990-03-15T23:00:00,0.06103429299741304
+1990-03-16T00:00:00,0.06096940326691931
+1990-03-16T01:00:00,0.06090468538954059
+1990-03-16T02:00:00,0.06084013875728543
+1990-03-16T03:00:00,0.06077576276442177
+1990-03-16T04:00:00,0.060711556807468425
+1990-03-16T05:00:00,0.06064752028518656
+1990-03-16T06:00:00,0.06058365259857132
+1990-03-16T07:00:00,0.060519953150843284
+1990-03-16T08:00:00,0.06045642134744019
+1990-03-16T09:00:00,0.060393056596008535
+1990-03-16T10:00:00,0.06032985830639522
+1990-03-16T11:00:00,0.06026682589063928
+1990-03-16T12:00:00,0.06020395876296361
+1990-03-16T13:00:00,0.06014125633976674
+1990-03-16T14:00:00,0.060078718039614655
+1990-03-16T15:00:00,0.06001634328323257
+1990-03-16T16:00:00,0.05995413149349685
+1990-03-16T17:00:00,0.05989208209542686
+1990-03-16T18:00:00,0.05983019451617691
+1990-03-16T19:00:00,0.05976846818502823
+1990-03-16T20:00:00,0.059706902533380866
+1990-03-16T21:00:00,0.05964549699474581
+1990-03-16T22:00:00,0.05958425100473698
+1990-03-16T23:00:00,0.059523164001063306
+1990-03-17T00:00:00,0.05946223542352083
+1990-03-17T01:00:00,0.059401464713984865
+1990-03-17T02:00:00,0.05934085131640215
+1990-03-17T03:00:00,0.05928039467678303
+1990-03-17T04:00:00,0.059220094243193716
+1990-03-17T05:00:00,0.059159949465748485
+1990-03-17T06:00:00,0.059099959796602035
+1990-03-17T07:00:00,0.05904012468994175
+1990-03-17T08:00:00,0.05898044360198006
+1990-03-17T09:00:00,0.058920915990946794
+1990-03-17T10:00:00,0.05886154131708162
+1990-03-17T11:00:00,0.05880231904262645
+1990-03-17T12:00:00,0.058743248631817895
+1990-03-17T13:00:00,0.05868432955087978
+1990-03-17T14:00:00,0.058625561268015616
+1990-03-17T15:00:00,0.058566943253401185
+1990-03-17T16:00:00,0.058508474979177126
+1990-03-17T17:00:00,0.05845015591944145
+1990-03-17T18:00:00,0.05839198555024229
+1990-03-17T19:00:00,0.05833396334957048
+1990-03-17T20:00:00,0.058276088797352264
+1990-03-17T21:00:00,0.05821836137544199
+1990-03-17T22:00:00,0.0581607805676149
+1990-03-17T23:00:00,0.058103345859559855
+1990-03-18T00:00:00,0.058046056738872136
+1990-03-18T01:00:00,0.05798891269504628
+1990-03-18T02:00:00,0.057931913219468945
+1990-03-18T03:00:00,0.057875057805411766
+1990-03-18T04:00:00,0.05781834594802426
+1990-03-18T05:00:00,0.057761777144326766
+1990-03-18T06:00:00,0.057705350893203416
+1990-03-18T07:00:00,0.057649066695395115
+1990-03-18T08:00:00,0.05759292405349252
+1990-03-18T09:00:00,0.05753692247192915
+1990-03-18T10:00:00,0.05748106145697439
+1990-03-18T11:00:00,0.057425340516726604
+1990-03-18T12:00:00,0.05736975916110626
+1990-03-18T13:00:00,0.05731431690184907
+1990-03-18T14:00:00,0.05725901325249916
+1990-03-18T15:00:00,0.05720384772840228
+1990-03-18T16:00:00,0.057148819846699006
+1990-03-18T17:00:00,0.057093929126318006
+1990-03-18T18:00:00,0.05703917508796928
+1990-03-18T19:00:00,0.056984557254137536
+1990-03-18T20:00:00,0.05693007514907542
+1990-03-18T21:00:00,0.05687572829879695
+1990-03-18T22:00:00,0.05682151623107082
+1990-03-18T23:00:00,0.05676743847541387
+1990-03-19T00:00:00,0.05671349456308447
+1990-03-19T01:00:00,0.05665968402707596
+1990-03-19T02:00:00,0.05660600640211018
+1990-03-19T03:00:00,0.056552461224630916
+1990-03-19T04:00:00,0.056499048032797455
+1990-03-19T05:00:00,0.05644576636647815
+1990-03-19T06:00:00,0.056392615767243914
+1990-03-19T07:00:00,0.05633959577836195
+1990-03-19T08:00:00,0.056286705944789246
+1990-03-19T09:00:00,0.056233945813166326
+1990-03-19T10:00:00,0.056181314931810854
+1990-03-19T11:00:00,0.05612881285071134
+1990-03-19T12:00:00,0.05607643912152091
+1990-03-19T13:00:00,0.056024193297551
+1990-03-19T14:00:00,0.05597207493376511
+1990-03-19T15:00:00,0.05592008358677264
+1990-03-19T16:00:00,0.0558682188148227
+1990-03-19T17:00:00,0.05581648017779793
+1990-03-19T18:00:00,0.05576486723720834
+1990-03-19T19:00:00,0.05571337955618527
+1990-03-19T20:00:00,0.05566201669947522
+1990-03-19T21:00:00,0.055610778233433834
+1990-03-19T22:00:00,0.05555966372601979
+1990-03-19T23:00:00,0.05550867274678887
+1990-03-20T00:00:00,0.055457804866887894
+1990-03-20T01:00:00,0.05540705965904875
+1990-03-20T02:00:00,0.055356436697582466
+1990-03-20T03:00:00,0.055305935558373265
+1990-03-20T04:00:00,0.05525555581887263
+1990-03-20T05:00:00,0.05520529705809348
+1990-03-20T06:00:00,0.05515515885660425
+1990-03-20T07:00:00,0.05510514079652305
+1990-03-20T08:00:00,0.055055242461511895
+1990-03-20T09:00:00,0.05500546343677086
+1990-03-20T10:00:00,0.05495580330903231
+1990-03-20T11:00:00,0.05490626166655517
+1990-03-20T12:00:00,0.05485683809911917
+1990-03-20T13:00:00,0.054807532198019156
+1990-03-20T14:00:00,0.05475834355605939
+1990-03-20T15:00:00,0.054709271767547855
+1990-03-20T16:00:00,0.054660316428290674
+1990-03-20T17:00:00,0.05461147713558644
+1990-03-20T18:00:00,0.054562753488220615
+1990-03-20T19:00:00,0.05451414508645997
+1990-03-20T20:00:00,0.05446565153204701
+1990-03-20T21:00:00,0.05441727242819441
+1990-03-20T22:00:00,0.054369007379579566
+1990-03-20T23:00:00,0.054320855992339045
+1990-03-21T00:00:00,0.0542728178740631
+1990-03-21T01:00:00,0.054224892633790274
+1990-03-21T02:00:00,0.05417707988200188
+1990-03-21T03:00:00,0.054129379230616684
+1990-03-21T04:00:00,0.05408179029298541
+1990-03-21T05:00:00,0.05403431268388546
+1990-03-21T06:00:00,0.053986946019515515
+1990-03-21T07:00:00,0.05393968991749018
+1990-03-21T08:00:00,0.05389254399683473
+1990-03-21T09:00:00,0.05384550787797976
+1990-03-21T10:00:00,0.05379858118275598
+1990-03-21T11:00:00,0.0537517635343889
+1990-03-21T12:00:00,0.053705054557493595
+1990-03-21T13:00:00,0.05365845387806957
+1990-03-21T14:00:00,0.05361196112349549
+1990-03-21T15:00:00,0.05356557592252406
+1990-03-21T16:00:00,0.0535192979052768
+1990-03-21T17:00:00,0.053473126703239005
+1990-03-21T18:00:00,0.05342706194925456
+1990-03-21T19:00:00,0.05338110327752089
+1990-03-21T20:00:00,0.05333525032358382
+1990-03-21T21:00:00,0.053289502724332645
+1990-03-21T22:00:00,0.05324386011799494
+1990-03-21T23:00:00,0.05319832214413162
+1990-03-22T00:00:00,0.05315288844363198
+1990-03-22T01:00:00,0.053107558658708615
+1990-03-22T02:00:00,0.05306233243289257
+1990-03-22T03:00:00,0.053017209411028304
+1990-03-22T04:00:00,0.052972189239268816
+1990-03-22T05:00:00,0.05296124115976391
+1990-03-22T06:00:00,0.052991808847612724
+1990-03-22T07:00:00,0.05302239553786542
+1990-03-22T08:00:00,0.053046377682746754
+1990-03-22T09:00:00,0.053001248092053053
+1990-03-22T10:00:00,0.052956221402900606
+1990-03-22T11:00:00,0.05291129726254345
+1990-03-22T12:00:00,0.05286647531953518
+1990-03-22T13:00:00,0.05282175522372396
+1990-03-22T14:00:00,0.05277713662624777
+1990-03-22T15:00:00,0.05273261917952953
+1990-03-22T16:00:00,0.0526882025372723
+1990-03-22T17:00:00,0.05264388635445446
+1990-03-22T18:00:00,0.05259967028732494
+1990-03-22T19:00:00,0.0525555539933985
+1990-03-22T20:00:00,0.05251153713145089
+1990-03-22T21:00:00,0.0524773278488964
+1990-03-22T22:00:00,0.052508874212614555
+1990-03-22T23:00:00,0.05254043699978481
+1990-03-23T00:00:00,0.05257201609467572
+1990-03-23T01:00:00,0.0525279167237883
+1990-03-23T02:00:00,0.05248391675793625
+1990-03-23T03:00:00,0.05244001585723687
+1990-03-23T04:00:00,0.05239621368305876
+1990-03-23T05:00:00,0.052352509898017145
+1990-03-23T06:00:00,0.052308904165969214
+1990-03-23T07:00:00,0.05226539615200941
+1990-03-23T08:00:00,0.052221985522464875
+1990-03-23T09:00:00,0.05217867194489079
+1990-03-23T10:00:00,0.05213545508806577
+1990-03-23T11:00:00,0.052092334621987285
+1990-03-23T12:00:00,0.05204931021786712
+1990-03-23T13:00:00,0.052006381548126805
+1990-03-23T14:00:00,0.051963548286393074
+1990-03-23T15:00:00,0.05192081010749338
+1990-03-23T16:00:00,0.05187816668745138
+1990-03-23T17:00:00,0.05183561770348245
+1990-03-23T18:00:00,0.05179316283398924
+1990-03-23T19:00:00,0.05175080175855726
+1990-03-23T20:00:00,0.05170853415795034
+1990-03-23T21:00:00,0.05166635971410635
+1990-03-23T22:00:00,0.051624278110132704
+1990-03-23T23:00:00,0.05158228903030206
+1990-03-24T00:00:00,0.051540392160047924
+1990-03-24T01:00:00,0.05149858718596026
+1990-03-24T02:00:00,0.05145687379578123
+1990-03-24T03:00:00,0.05141525167840087
+1990-03-24T04:00:00,0.05147692348211203
+1990-03-24T05:00:00,0.05154740877136905
+1990-03-24T06:00:00,0.05634266320760871
+1990-03-24T07:00:00,0.058468145030721605
+1990-03-24T08:00:00,0.057952896158860144
+1990-03-24T09:00:00,0.052218549437840135
+1990-03-24T10:00:00,0.05221310503655979
+1990-03-24T11:00:00,0.052207686351210335
+1990-03-24T12:00:00,0.052202293309065076
+1990-03-24T13:00:00,0.05219692583761991
+1990-03-24T14:00:00,0.0521915838645925
+1990-03-24T15:00:00,0.052186267317921496
+1990-03-24T16:00:00,0.05218097612576581
+1990-03-24T17:00:00,0.05217571021650381
+1990-03-24T18:00:00,0.05217046951873253
+1990-03-24T19:00:00,0.05216525396126705
+1990-03-24T20:00:00,0.052746060777949536
+1990-03-24T21:00:00,0.058546519344404226
+1990-03-24T22:00:00,0.05861815836481644
+1990-03-24T23:00:00,0.0586898537739807
+1990-03-25T00:00:00,0.058761604978917026
+1990-03-25T01:00:00,0.05193891078673512
+1990-03-25T02:00:00,0.05189589132357371
+1990-03-25T03:00:00,0.05185296780992252
+1990-03-25T04:00:00,0.051810139918511466
+1990-03-25T05:00:00,0.05176740732327454
+1990-03-25T06:00:00,0.051724769699345356
+1990-03-25T07:00:00,0.051682226723052616
+1990-03-25T08:00:00,0.05165099724906298
+1990-03-25T09:00:00,0.05160861525754506
+1990-03-25T10:00:00,0.05156632704462136
+1990-03-25T11:00:00,0.051524132291006844
+1990-03-25T12:00:00,0.05148203067859065
+1990-03-25T13:00:00,0.051440021890431765
+1990-03-25T14:00:00,0.051398105610754606
+1990-03-25T15:00:00,0.05135628152494465
+1990-03-25T16:00:00,0.05131454931954408
+1990-03-25T17:00:00,0.05127290868224753
+1990-03-25T18:00:00,0.051231359301897664
+1990-03-25T19:00:00,0.05118990086848096
+1990-03-25T20:00:00,0.05114853307312337
+1990-03-25T21:00:00,0.05110725560808611
+1990-03-25T22:00:00,0.051066068166761396
+1990-03-25T23:00:00,0.05102497044366819
+1990-03-26T00:00:00,0.05098396213444798
+1990-03-26T01:00:00,0.05094304293586061
+1990-03-26T02:00:00,0.05090221254578008
+1990-03-26T03:00:00,0.05086147066319039
+1990-03-26T04:00:00,0.050820816988181354
+1990-03-26T05:00:00,0.050780251221944496
+1990-03-26T06:00:00,0.05073977306676891
+1990-03-26T07:00:00,0.05069938222603719
+1990-03-26T08:00:00,0.05065907840422125
+1990-03-26T09:00:00,0.05061886130687837
+1990-03-26T10:00:00,0.05057873064064704
+1990-03-26T11:00:00,0.05053868611324295
+1990-03-26T12:00:00,0.05049872743345499
+1990-03-26T13:00:00,0.05045885431114118
+1990-03-26T14:00:00,0.05041906645722472
+1990-03-26T15:00:00,0.05037936358368998
+1990-03-26T16:00:00,0.05033974540357854
+1990-03-26T17:00:00,0.05030021163098523
+1990-03-26T18:00:00,0.0502607619810542
+1990-03-26T19:00:00,0.05022139616997499
+1990-03-26T20:00:00,0.05018211391497863
+1990-03-26T21:00:00,0.05014291493433373
+1990-03-26T22:00:00,0.05010379894734263
+1990-03-26T23:00:00,0.050064765674337514
+1990-03-27T00:00:00,0.05002581483667654
+1990-03-27T01:00:00,0.049986946156740056
+1990-03-27T02:00:00,0.04994815935792673
+1990-03-27T03:00:00,0.04990945416464979
+1990-03-27T04:00:00,0.04987083030233317
+1990-03-27T05:00:00,0.04983228749740781
+1990-03-27T06:00:00,0.04979382547730782
+1990-03-27T07:00:00,0.04975544397046679
+1990-03-27T08:00:00,0.052529522076229546
+1990-03-27T09:00:00,0.05566329918933857
+1990-03-27T10:00:00,0.051468123256682
+1990-03-27T11:00:00,0.05146907634898391
+1990-03-27T12:00:00,0.051470042152398865
+1990-03-27T13:00:00,0.05147102063677059
+1990-03-27T14:00:00,0.05147201177200451
+1990-03-27T15:00:00,0.05147301552806771
+1990-03-27T16:00:00,0.05147403187498877
+1990-03-27T17:00:00,0.05147506078285766
+1990-03-27T18:00:00,0.05147610222182561
+1990-03-27T19:00:00,0.051477156162104985
+1990-03-27T20:00:00,0.05004846987595112
+1990-03-27T21:00:00,0.05000930133692459
+1990-03-27T22:00:00,0.049970215871680754
+1990-03-27T23:00:00,0.049931213200174004
+1990-03-28T00:00:00,0.04989229304338615
+1990-03-28T01:00:00,0.049853455123322614
+1990-03-28T02:00:00,0.04981469916300859
+1990-03-28T03:00:00,0.049776024886485255
+1990-03-28T04:00:00,0.04973743201880593
+1990-03-28T05:00:00,0.04969892028603233
+1990-03-28T06:00:00,0.049660489415230824
+1990-03-28T07:00:00,0.049622139134468585
+1990-03-28T08:00:00,0.06768663172094114
+1990-03-28T09:00:00,0.06873548483131704
+1990-03-28T10:00:00,0.06900751863630547
+1990-03-28T11:00:00,0.06928073881619186
+1990-03-28T12:00:00,0.06955512812962371
+1990-03-28T13:00:00,0.06983066963911928
+1990-03-28T14:00:00,0.07010734669259762
+1990-03-28T15:00:00,0.07038514290672891
+1990-03-28T16:00:00,0.07066404215189591
+1990-03-28T17:00:00,0.07094402853858585
+1990-03-28T18:00:00,0.07122508640505483
+1990-03-28T19:00:00,0.07150720030612723
+1990-03-28T20:00:00,0.05290006822720237
+1990-03-28T21:00:00,0.05285369168961575
+1990-03-28T22:00:00,0.05280742339368923
+1990-03-28T23:00:00,0.052761262966516974
+1990-03-29T00:00:00,0.052715210036568386
+1990-03-29T01:00:00,0.05266926423368305
+1990-03-29T02:00:00,0.05262342518906552
+1990-03-29T03:00:00,0.0525776925352802
+1990-03-29T04:00:00,0.05253206590624632
+1990-03-29T05:00:00,0.05248654493723277
+1990-03-29T06:00:00,0.052441129264853094
+1990-03-29T07:00:00,0.05239581852706042
+1990-03-29T08:00:00,0.05879460848348457
+1990-03-29T09:00:00,0.058980582712790774
+1990-03-29T10:00:00,0.05884079120193197
+1990-03-29T11:00:00,0.058710976425166976
+1990-03-29T12:00:00,0.058591144218705676
+1990-03-29T13:00:00,0.058481303292729936
+1990-03-29T14:00:00,0.058381465592750446
+1990-03-29T15:00:00,0.05829164674484903
+1990-03-29T16:00:00,0.058211866611087515
+1990-03-29T17:00:00,0.05814214999167581
+1990-03-29T18:00:00,0.058082527525706903
+1990-03-29T19:00:00,0.058033036865059964
+1990-03-29T20:00:00,0.05340979721384009
+1990-03-29T21:00:00,0.053362038624016665
+1990-03-29T22:00:00,0.05331439316484381
+1990-03-29T23:00:00,0.05326686044532327
+1990-03-30T00:00:00,0.05321944007590001
+1990-03-30T01:00:00,0.055843760556458955
+1990-03-30T02:00:00,0.0532519808593192
+1990-03-30T03:00:00,0.05320458385884481
+1990-03-30T04:00:00,0.053157298747295016
+1990-03-30T05:00:00,0.053110125138251106
+1990-03-30T06:00:00,0.053063062646720345
+1990-03-30T07:00:00,0.05301611088913065
+1990-03-30T08:00:00,0.05296926948332527
+1990-03-30T09:00:00,0.052922538048557476
+1990-03-30T10:00:00,0.052875916205485235
+1990-03-30T11:00:00,0.052829403576166015
+1990-03-30T12:00:00,0.05278299978405145
+1990-03-30T13:00:00,0.052736704453982174
+1990-03-30T14:00:00,0.052690517212182576
+1990-03-30T15:00:00,0.05264443768625564
+1990-03-30T16:00:00,0.05259846550517773
+1990-03-30T17:00:00,0.05255260029929348
+1990-03-30T18:00:00,0.05250684170031066
+1990-03-30T19:00:00,0.05246118934129502
+1990-03-30T20:00:00,0.05241564285666525
+1990-03-30T21:00:00,0.052370201882187904
+1990-03-30T22:00:00,0.05232486605497231
+1990-03-30T23:00:00,0.052279635013465546
+1990-03-31T00:00:00,0.05223450839744744
+1990-03-31T01:00:00,0.052189485848025574
+1990-03-31T02:00:00,0.0521445670076303
+1990-03-31T03:00:00,0.05209975152000977
+1990-03-31T04:00:00,0.052055039030224994
+1990-03-31T05:00:00,0.05201042918464497
+1990-03-31T06:00:00,0.05196592163094171
+1990-03-31T07:00:00,0.05192151601808537
+1990-03-31T08:00:00,0.05187721199633945
+1990-03-31T09:00:00,0.05183300921725588
+1990-03-31T10:00:00,0.051788907333670184
+1990-03-31T11:00:00,0.05174490599969673
+1990-03-31T12:00:00,0.05170100487072388
+1990-03-31T13:00:00,0.051657203603409266
+1990-03-31T14:00:00,0.05161350185567498
+1990-03-31T15:00:00,0.051569899286702886
+1990-03-31T16:00:00,0.05152639555692986
+1990-03-31T17:00:00,0.051482990328043106
+1990-03-31T18:00:00,0.05143968326297548
+1990-03-31T19:00:00,0.05139647402590082
+1990-03-31T20:00:00,0.05135336228222927
+1990-03-31T21:00:00,0.05131034769860268
+1990-03-31T22:00:00,0.05126742994289001
+1990-03-31T23:00:00,0.051224608684182674
+1990-04-01T00:00:00,0.051181883592789995
+1990-04-01T01:00:00,0.05113925434023465
+1990-04-01T02:00:00,0.05109672059924812
+1990-04-01T03:00:00,0.05105428204376616
+1990-04-01T04:00:00,0.05101193834892428
+1990-04-01T05:00:00,0.05096968919105326
+1990-04-01T06:00:00,0.05092753424767471
+1990-04-01T07:00:00,0.05088547319749654
+1990-04-01T08:00:00,0.05084350572040856
+1990-04-01T09:00:00,0.050801631497478086
+1990-04-01T10:00:00,0.05075985021094544
+1990-04-01T11:00:00,0.05071816154421967
+1990-04-01T12:00:00,0.05067656518187406
+1990-04-01T13:00:00,0.050635060809641884
+1990-04-01T14:00:00,0.050593648114411985
+1990-04-01T15:00:00,0.050552326784224465
+1990-04-01T16:00:00,0.0505110965082664
+1990-04-01T17:00:00,0.05046995697686756
+1990-04-01T18:00:00,0.05042890788149605
+1990-04-01T19:00:00,0.05038794891475415
+1990-04-01T20:00:00,0.05034707977037398
+1990-04-01T21:00:00,0.05030630014321337
+1990-04-01T22:00:00,0.050265609729251565
+1990-04-01T23:00:00,0.050225008225585045
+1990-04-02T00:00:00,0.05018449533042338
+1990-04-02T01:00:00,0.05014407074308505
+1990-04-02T02:00:00,0.05010373416399327
+1990-04-02T03:00:00,0.050063485294671875
+1990-04-02T04:00:00,0.05002332383774122
+1990-04-02T05:00:00,0.049983249496914045
+1990-04-02T06:00:00,0.04994326197699142
+1990-04-02T07:00:00,0.04990336098385864
+1990-04-02T08:00:00,0.049863546224481206
+1990-04-02T09:00:00,0.04982381740690077
+1990-04-02T10:00:00,0.04978417424023108
+1990-04-02T11:00:00,0.04974461643465402
+1990-04-02T12:00:00,0.0497051437014156
+1990-04-02T13:00:00,0.049665755752821936
+1990-04-02T14:00:00,0.049626452302235356
+1990-04-02T15:00:00,0.049587233064070375
+1990-04-02T16:00:00,0.04954809775378984
+1990-04-02T17:00:00,0.049509046087900944
+1990-04-02T18:00:00,0.049470077783951336
+1990-04-02T19:00:00,0.04943119256052527
+1990-04-02T20:00:00,0.04939239013723968
+1990-04-02T21:00:00,0.049353670234740334
+1990-04-02T22:00:00,0.04931503257469803
+1990-04-02T23:00:00,0.04927647687980467
+1990-04-03T00:00:00,0.04923800287376957
+1990-04-03T01:00:00,0.049199610281315524
+1990-04-03T02:00:00,0.04916129882817512
+1990-04-03T03:00:00,0.04923450767150346
+1990-04-03T04:00:00,0.052419906397368085
+1990-04-03T05:00:00,0.061123279406509565
+1990-04-03T06:00:00,0.06126328559265544
+1990-04-03T07:00:00,0.06140369252677082
+1990-04-03T08:00:00,0.061062027091922676
+1990-04-03T09:00:00,0.057097292732729225
+1990-04-03T10:00:00,0.05718430704929269
+1990-04-03T11:00:00,0.05727145800132223
+1990-04-03T12:00:00,0.05735874445376534
+1990-04-03T13:00:00,0.05744616527655887
+1990-04-03T14:00:00,0.05753371934456308
+1990-04-03T15:00:00,0.057621405537498435
+1990-04-03T16:00:00,0.0577092227398853
+1990-04-03T17:00:00,0.05779716984098621
+1990-04-03T18:00:00,0.05788524573475055
+1990-04-03T19:00:00,0.05797344931976174
+1990-04-03T20:00:00,0.05854450174110645
+1990-04-03T21:00:00,0.06274070304708017
+1990-04-03T22:00:00,0.0628856537613829
+1990-04-03T23:00:00,0.0630309612969554
+1990-04-04T00:00:00,0.06317662218556462
+1990-04-04T01:00:00,0.05152235070353258
+1990-04-04T02:00:00,0.05147815749296899
+1990-04-04T03:00:00,0.05143406568339856
+1990-04-04T04:00:00,0.05139007492683034
+1990-04-04T05:00:00,0.05134618487655539
+1990-04-04T06:00:00,0.051302395187141976
+1990-04-04T07:00:00,0.051258705514430784
+1990-04-04T08:00:00,0.05121511551553016
+1990-04-04T09:00:00,0.05117162484881132
+1990-04-04T10:00:00,0.051128233173903685
+1990-04-04T11:00:00,0.05108494015169013
+1990-04-04T12:00:00,0.05104174544430226
+1990-04-04T13:00:00,0.050998648715115794
+1990-04-04T14:00:00,0.05095564962874584
+1990-04-04T15:00:00,0.05091274785104234
+1990-04-04T16:00:00,0.05086994304908531
+1990-04-04T17:00:00,0.050827234891180365
+1990-04-04T18:00:00,0.050784623046854056
+1990-04-04T19:00:00,0.050742107186849315
+1990-04-04T20:00:00,0.05069968698312089
+1990-04-04T21:00:00,0.050657362108830845
+1990-04-04T22:00:00,0.05061513223834397
+1990-04-04T23:00:00,0.05057299704722335
+1990-04-05T00:00:00,0.050530956212225815
+1990-04-05T01:00:00,0.05048900941129751
+1990-04-05T02:00:00,0.05044715632356945
+1990-04-05T03:00:00,0.05040539662935301
+1990-04-05T04:00:00,0.05036373001013563
+1990-04-05T05:00:00,0.050322156148576276
+1990-04-05T06:00:00,0.05028067472850116
+1990-04-05T07:00:00,0.05023928543489931
+1990-04-05T08:00:00,0.07614087315475951
+1990-04-05T09:00:00,0.06266736099183703
+1990-04-05T10:00:00,0.05544009465380674
+1990-04-05T11:00:00,0.05548801867460118
+1990-04-05T12:00:00,0.05553597396644704
+1990-04-05T13:00:00,0.05558396026855524
+1990-04-05T14:00:00,0.05563197732091558
+1990-04-05T15:00:00,0.0556800248642942
+1990-04-05T16:00:00,0.055728102640231245
+1990-04-05T17:00:00,0.05577621039103842
+1990-04-05T18:00:00,0.055824347859796744
+1990-04-05T19:00:00,0.055872514790354336
+1990-04-05T20:00:00,0.05144278482497891
+1990-04-05T21:00:00,0.05139845889793917
+1990-04-05T22:00:00,0.051354235038315744
+1990-04-05T23:00:00,0.05131011289556719
+1990-04-06T00:00:00,0.05126609212044367
+1990-04-06T01:00:00,0.051250012779700684
+1990-04-06T02:00:00,0.05274900703212204
+1990-04-06T03:00:00,0.052889001870986226
+1990-04-06T04:00:00,0.05287448929746964
+1990-04-06T05:00:00,0.05286001780102783
+1990-04-06T06:00:00,0.052845587253991265
+1990-04-06T07:00:00,0.05283119752913734
+1990-04-06T08:00:00,0.06685179490153259
+1990-04-06T09:00:00,0.0652069728621716
+1990-04-06T10:00:00,0.059289415081773794
+1990-04-06T11:00:00,0.05163098408105292
+1990-04-06T12:00:00,0.0515861001477935
+1990-04-06T13:00:00,0.05154132028168201
+1990-04-06T14:00:00,0.05149664412477036
+1990-04-06T15:00:00,0.051452071320429824
+1990-04-06T16:00:00,0.051407601513346134
+1990-04-06T17:00:00,0.05136323434951458
+1990-04-06T18:00:00,0.051318969476234974
+1990-04-06T19:00:00,0.051274806542106914
+1990-04-06T20:00:00,0.05123074519702483
+1990-04-06T21:00:00,0.0511867850921731
+1990-04-06T22:00:00,0.05114292588002132
+1990-04-06T23:00:00,0.05109916721431938
+1990-04-07T00:00:00,0.05105550875009274
+1990-04-07T01:00:00,0.0510119501436376
+1990-04-07T02:00:00,0.050968491052516184
+1990-04-07T03:00:00,0.05092513113555195
+1990-04-07T04:00:00,0.050881870052824914
+1990-04-07T05:00:00,0.050838707465666905
+1990-04-07T06:00:00,0.05079564303665685
+1990-04-07T07:00:00,0.0507526764296162
+1990-04-07T08:00:00,0.050709807309604164
+1990-04-07T09:00:00,0.050667035342913135
+1990-04-07T10:00:00,0.05062436019706407
+1990-04-07T11:00:00,0.05058178154080185
+1990-04-07T12:00:00,0.050539299044090734
+1990-04-07T13:00:00,0.05049691237810978
+1990-04-07T14:00:00,0.05045462121524828
+1990-04-07T15:00:00,0.050412425229101276
+1990-04-07T16:00:00,0.050370324094464944
+1990-04-07T17:00:00,0.050328317487332214
+1990-04-07T18:00:00,0.050286405084888214
+1990-04-07T19:00:00,0.05024458656550584
+1990-04-07T20:00:00,0.05020286160874128
+1990-04-07T21:00:00,0.05016122989532962
+1990-04-07T22:00:00,0.050119691107180384
+1990-04-07T23:00:00,0.05007824492737317
+1990-04-08T00:00:00,0.05003689104015328
+1990-04-08T01:00:00,0.04999562913092731
+1990-04-08T02:00:00,0.04995445888625886
+1990-04-08T03:00:00,0.04991337999386414
+1990-04-08T04:00:00,0.04987239214260771
+1990-04-08T05:00:00,0.049831495022498166
+1990-04-08T06:00:00,0.04979068832468384
+1990-04-08T07:00:00,0.04974997174144855
+1990-04-08T08:00:00,0.04970934496620736
+1990-04-08T09:00:00,0.04966880769350231
+1990-04-08T10:00:00,0.049628359618998245
+1990-04-08T11:00:00,0.049588000439478586
+1990-04-08T12:00:00,0.04954772985284113
+1990-04-08T13:00:00,0.04950754755809394
+1990-04-08T14:00:00,0.0494674532553511
+1990-04-08T15:00:00,0.049427446645828696
+1990-04-08T16:00:00,0.049387527431840536
+1990-04-08T17:00:00,0.04934769531679422
+1990-04-08T18:00:00,0.04930795000518692
+1990-04-08T19:00:00,0.04926829120260133
+1990-04-08T20:00:00,0.04922871861570164
+1990-04-08T21:00:00,0.04918923195222947
+1990-04-08T22:00:00,0.049149830920999844
+1990-04-08T23:00:00,0.04911051523189715
+1990-04-09T00:00:00,0.04907128459587119
+1990-04-09T01:00:00,0.04903213872493318
+1990-04-09T02:00:00,0.048993077332151705
+1990-04-09T03:00:00,0.048954100131648894
+1990-04-09T04:00:00,0.04891520683859639
+1990-04-09T05:00:00,0.048876397169211445
+1990-04-09T06:00:00,0.048837670840753036
+1990-04-09T07:00:00,0.04879902757151794
+1990-04-09T08:00:00,0.048760467080836846
+1990-04-09T09:00:00,0.048721989089070536
+1990-04-09T10:00:00,0.048683593317605994
+1990-04-09T11:00:00,0.04864527948885258
+1990-04-09T12:00:00,0.04860704732623822
+1990-04-09T13:00:00,0.04856889655420557
+1990-04-09T14:00:00,0.048530826898208264
+1990-04-09T15:00:00,0.0484928380847071
+1990-04-09T16:00:00,0.04845492984116629
+1990-04-09T17:00:00,0.04841710189604971
+1990-04-09T18:00:00,0.04837935397881716
+1990-04-09T19:00:00,0.04834168581992065
+1990-04-09T20:00:00,0.04830409715080068
+1990-04-09T21:00:00,0.04826658770388258
+1990-04-09T22:00:00,0.048229157212572746
+1990-04-09T23:00:00,0.048191805411255104
+1990-04-10T00:00:00,0.04815453203528733
+1990-04-10T01:00:00,0.04811733682099729
+1990-04-10T02:00:00,0.0480802195056794
+1990-04-10T03:00:00,0.048043179827591
+1990-04-10T04:00:00,0.048006217525948754
+1990-04-10T05:00:00,0.047969332340925104
+1990-04-10T06:00:00,0.047932524013644645
+1990-04-10T07:00:00,0.04794096353687847
+1990-04-10T08:00:00,0.04795810171197502
+1990-04-10T09:00:00,0.047921283155444555
+1990-04-10T10:00:00,0.04788454125776463
+1990-04-10T11:00:00,0.04784787576172591
+1990-04-10T12:00:00,0.04781128641106143
+1990-04-10T13:00:00,0.047774772950443106
+1990-04-10T14:00:00,0.047738335125478266
+1990-04-10T15:00:00,0.04770197268270611
+1990-04-10T16:00:00,0.047665685369594236
+1990-04-10T17:00:00,0.047629472934535205
+1990-04-10T18:00:00,0.04759333512684306
+1990-04-10T19:00:00,0.047557271696749864
+1990-04-10T20:00:00,0.04752128239540235
+1990-04-10T21:00:00,0.04749495610446642
+1990-04-10T22:00:00,0.04751540136058578
+1990-04-10T23:00:00,0.047535843734833765
+1990-04-11T00:00:00,0.047556283213332336
+1990-04-11T01:00:00,0.04835827764852591
+1990-04-11T02:00:00,0.051813888119147694
+1990-04-11T03:00:00,0.051848201397634616
+1990-04-11T04:00:00,0.05188251339884416
+1990-04-11T05:00:00,0.0519168240411385
+1990-04-11T06:00:00,0.051951133243525585
+1990-04-11T07:00:00,0.05198544092564951
+1990-04-11T08:00:00,0.05182982549895196
+1990-04-11T09:00:00,0.04780168771722916
+1990-04-11T10:00:00,0.04777632973994153
+1990-04-11T11:00:00,0.047751021808558086
+1990-04-11T12:00:00,0.04772576376176133
+1990-04-11T13:00:00,0.04770055543882048
+1990-04-11T14:00:00,0.04767539667958921
+1990-04-11T15:00:00,0.047650287324503576
+1990-04-11T16:00:00,0.04762522721457977
+1990-04-11T17:00:00,0.047600216191412
+1990-04-11T18:00:00,0.0475752540971703
+1990-04-11T19:00:00,0.04755034077459842
+1990-04-11T20:00:00,0.047528545134605124
+1990-04-11T21:00:00,0.04756350289677321
+1990-04-11T22:00:00,0.0514871092876225
+1990-04-11T23:00:00,0.051822996357547675
+1990-04-12T00:00:00,0.05185794398565186
+1990-04-12T01:00:00,0.04763173263402127
+1990-04-12T02:00:00,0.04759518549949539
+1990-04-12T03:00:00,0.04755871441317959
+1990-04-12T04:00:00,0.04752231911996366
+1990-04-12T05:00:00,0.04748599936567204
+1990-04-12T06:00:00,0.04744975489706031
+1990-04-12T07:00:00,0.0474135854618117
+1990-04-12T08:00:00,0.07802755896538502
+1990-04-12T09:00:00,0.0726915276716158
+1990-04-12T10:00:00,0.05168810620573337
+1990-04-12T11:00:00,0.05172004040184673
+1990-04-12T12:00:00,0.051751970154443744
+1990-04-12T13:00:00,0.05178389541104371
+1990-04-12T14:00:00,0.05181581611954114
+1990-04-12T15:00:00,0.051847732228200924
+1990-04-12T16:00:00,0.05187964368565362
+1990-04-12T17:00:00,0.05191155044089073
+1990-04-12T18:00:00,0.05194345244326021
+1990-04-12T19:00:00,0.05197534964246192
+1990-04-12T20:00:00,0.04855089140858334
+1990-04-12T21:00:00,0.048511903105408614
+1990-04-12T22:00:00,0.04847299943267692
+1990-04-12T23:00:00,0.04843418010363796
+1990-04-13T00:00:00,0.04839544483259441
+1990-04-13T01:00:00,0.07983646197520494
+1990-04-13T02:00:00,0.06410572502737358
+1990-04-13T03:00:00,0.057273363909314694
+1990-04-13T04:00:00,0.05737461166427532
+1990-04-13T05:00:00,0.05747593639504366
+1990-04-13T06:00:00,0.05757733691263213
+1990-04-13T07:00:00,0.05767881203901128
+1990-04-13T08:00:00,0.05743271634634661
+1990-04-13T09:00:00,0.05214547409009149
+1990-04-13T10:00:00,0.0521714623593998
+1990-04-13T11:00:00,0.05219744767213615
+1990-04-13T12:00:00,0.05222342999894845
+1990-04-13T13:00:00,0.052249409310597635
+1990-04-13T14:00:00,0.0522753855779568
+1990-04-13T15:00:00,0.05230135877201039
+1990-04-13T16:00:00,0.052327328863853446
+1990-04-13T17:00:00,0.05235329582469073
+1990-04-13T18:00:00,0.052379259625836054
+1990-04-13T19:00:00,0.052405220238711483
+1990-04-13T20:00:00,0.05277889834171517
+1990-04-13T21:00:00,0.05819461314220523
+1990-04-13T22:00:00,0.0582971591361374
+1990-04-13T23:00:00,0.05839976867082882
+1990-04-14T00:00:00,0.05850244065045915
+1990-04-14T01:00:00,0.0504098160678686
+1990-04-14T02:00:00,0.05036607538095246
+1990-04-14T03:00:00,0.050322435947124405
+1990-04-14T04:00:00,0.05027889741830398
+1990-04-14T05:00:00,0.05023545944769329
+1990-04-14T06:00:00,0.05019212168977228
+1990-04-14T07:00:00,0.0501488838002939
+1990-04-14T08:00:00,0.09043006253494046
+1990-04-14T09:00:00,0.08781487423743808
+1990-04-14T10:00:00,0.08624325781933696
+1990-04-14T11:00:00,0.05952032040475972
+1990-04-14T12:00:00,0.05962915260202516
+1990-04-14T13:00:00,0.05973804016434803
+1990-04-14T14:00:00,0.05984698201184718
+1990-04-14T15:00:00,0.059955977072581094
+1990-04-14T16:00:00,0.06006502428244093
+1990-04-14T17:00:00,0.06017412258504694
+1990-04-14T18:00:00,0.060283270931648
+1990-04-14T19:00:00,0.06039246828102443
+1990-04-14T20:00:00,0.05299174624440122
+1990-04-14T21:00:00,0.05294161125983141
+1990-04-14T22:00:00,0.05289159980781468
+1990-04-14T23:00:00,0.05284171145795869
+1990-04-15T00:00:00,0.05279194578146261
+1990-04-15T01:00:00,0.05274230235111114
+1990-04-15T02:00:00,0.05269278074126854
+1990-04-15T03:00:00,0.052643380527872735
+1990-04-15T04:00:00,0.05259410128842935
+1990-04-15T05:00:00,0.05254494260200586
+1990-04-15T06:00:00,0.05249590404922572
+1990-04-15T07:00:00,0.052446985212262494
+1990-04-15T08:00:00,0.09267659116789577
+1990-04-15T09:00:00,0.09181487472133479
+1990-04-15T10:00:00,0.09250739455709696
+1990-04-15T11:00:00,0.09320502209491019
+1990-04-15T12:00:00,0.093907634617331
+1990-04-15T13:00:00,0.08984721132295229
+1990-04-15T14:00:00,0.06696208230130854
+1990-04-15T15:00:00,0.06712656848708562
+1990-04-15T16:00:00,0.06729116858332289
+1990-04-15T17:00:00,0.06745588023720674
+1990-04-15T18:00:00,0.06762070111346083
+1990-04-15T19:00:00,0.06778562889417108
+1990-04-15T20:00:00,0.05750617999621756
+1990-04-15T21:00:00,0.057444946223446494
+1990-04-15T22:00:00,0.05738387468613413
+1990-04-15T23:00:00,0.05732296481056055
+1990-04-16T00:00:00,0.05726221602513667
+1990-04-16T01:00:00,0.05720162776039613
+1990-04-16T02:00:00,0.0571411994489874
+1990-04-16T03:00:00,0.05708093052566572
+1990-04-16T04:00:00,0.05702082042728521
+1990-04-16T05:00:00,0.05696086859279094
+1990-04-16T06:00:00,0.056901074463211056
+1990-04-16T07:00:00,0.05684143748164894
+1990-04-16T08:00:00,0.08195812559172659
+1990-04-16T09:00:00,0.08049814250976997
+1990-04-16T10:00:00,0.0809193826862114
+1990-04-16T11:00:00,0.08134187777170271
+1990-04-16T12:00:00,0.07708389303542783
+1990-04-16T13:00:00,0.05936214636085666
+1990-04-16T14:00:00,0.05933164958643417
+1990-04-16T15:00:00,0.05930124764719109
+1990-04-16T16:00:00,0.059270940212911814
+1990-04-16T17:00:00,0.05924072695459695
+1990-04-16T18:00:00,0.05921060754445868
+1990-04-16T19:00:00,0.059180581655916185
+1990-04-16T20:00:00,0.058641094152358214
+1990-04-16T21:00:00,0.058577289554022756
+1990-04-16T22:00:00,0.058513656030842603
+1990-04-16T23:00:00,0.05845019297636902
+1990-04-17T00:00:00,0.0583868997864074
+1990-04-17T01:00:00,0.05832377585900882
+1990-04-17T02:00:00,0.05826082059446147
+1990-04-17T03:00:00,0.058198033395282324
+1990-04-17T04:00:00,0.0581354136662087
+1990-04-17T05:00:00,0.05807296081418983
+1990-04-17T06:00:00,0.058010674248378594
+1990-04-17T07:00:00,0.05794855338012322
+1990-04-17T08:00:00,0.09765222482718808
+1990-04-17T09:00:00,0.09701202033783912
+1990-04-17T10:00:00,0.09774720066473894
+1990-04-17T11:00:00,0.0849993352792605
+1990-04-17T12:00:00,0.06845060599660338
+1990-04-17T13:00:00,0.06856506810844204
+1990-04-17T14:00:00,0.06867952364176995
+1990-04-17T15:00:00,0.06879397188602465
+1990-04-17T16:00:00,0.06890841213538197
+1990-04-17T17:00:00,0.0690228436887316
+1990-04-17T18:00:00,0.06913726584965328
+1990-04-17T19:00:00,0.06925167792639297
+1990-04-17T20:00:00,0.0615069862017169
+1990-04-17T21:00:00,0.061436357686234115
+1990-04-17T22:00:00,0.06136592395549886
+1990-04-17T23:00:00,0.06129568431508912
+1990-04-18T00:00:00,0.06122563807316893
+1990-04-18T01:00:00,0.06115578454047864
+1990-04-18T02:00:00,0.06108612303032514
+1990-04-18T03:00:00,0.061016652858572204
+1990-04-18T04:00:00,0.06094737334363082
+1990-04-18T05:00:00,0.06087828380644957
+1990-04-18T06:00:00,0.06080938357050506
+1990-04-18T07:00:00,0.06074067196179233
+1990-04-18T08:00:00,0.08614715833630836
+1990-04-18T09:00:00,0.08476392979719831
+1990-04-18T10:00:00,0.0852105412878704
+1990-04-18T11:00:00,0.08565813375645884
+1990-04-18T12:00:00,0.08114014015560811
+1990-04-18T13:00:00,0.06473801541832812
+1990-04-18T14:00:00,0.06472815430183836
+1990-04-18T15:00:00,0.06471836049775852
+1990-04-18T16:00:00,0.06470863376187053
+1990-04-18T17:00:00,0.06469897385083632
+1990-04-18T18:00:00,0.06468938052219456
+1990-04-18T19:00:00,0.06467985353435736
+1990-04-18T20:00:00,0.06279195997156269
+1990-04-18T21:00:00,0.06271855721231855
+1990-04-18T22:00:00,0.06264535869917374
+1990-04-18T23:00:00,0.06257236370265098
+1990-04-19T00:00:00,0.06249957149599137
+1990-04-19T01:00:00,0.06242698135514411
+1990-04-19T02:00:00,0.06235459255875636
+1990-04-19T03:00:00,0.062282404388163015
+1990-04-19T04:00:00,0.06221041612737648
+1990-04-19T05:00:00,0.06213862706307663
+1990-04-19T06:00:00,0.0620670364846007
+1990-04-19T07:00:00,0.06199564368393325
+1990-04-19T08:00:00,0.06703186764197631
+1990-04-19T09:00:00,0.06820325083540554
+1990-04-19T10:00:00,0.06792592734861795
+1990-04-19T11:00:00,0.06526855447589736
+1990-04-19T12:00:00,0.062251557834128904
+1990-04-19T13:00:00,0.062179813887989745
+1990-04-19T14:00:00,0.0621082681779213
+1990-04-19T15:00:00,0.062036919996877285
+1990-04-19T16:00:00,0.06196576864044511
+1990-04-19T17:00:00,0.06189481340683587
+1990-04-19T18:00:00,0.061824053596874456
+1990-04-19T19:00:00,0.061753488513989666
+1990-04-19T20:00:00,0.061683117464204386
+1990-04-19T21:00:00,0.06161293975612577
+1990-04-19T22:00:00,0.0615429547009355
+1990-04-19T23:00:00,0.0614731616123801
+1990-04-20T00:00:00,0.06140355980676113
+1990-04-20T01:00:00,0.06133414860292565
+1990-04-20T02:00:00,0.06126492732225659
+1990-04-20T03:00:00,0.06119589528866314
+1990-04-20T04:00:00,0.06112705182857122
+1990-04-20T05:00:00,0.061058396270914035
+1990-04-20T06:00:00,0.06098992794712246
+1990-04-20T07:00:00,0.06092164619111582
+1990-04-20T08:00:00,0.06085355033929232
+1990-04-20T09:00:00,0.06078563973051976
+1990-04-20T10:00:00,0.060717913706126225
+1990-04-20T11:00:00,0.060650371609890785
+1990-04-20T12:00:00,0.060583012788034185
+1990-04-20T13:00:00,0.06051583658920977
+1990-04-20T14:00:00,0.0604488423644941
+1990-04-20T15:00:00,0.06038202946737804
+1990-04-20T16:00:00,0.06031539725375744
+1990-04-20T17:00:00,0.06024894508192419
+1990-04-20T18:00:00,0.06018267231255714
+1990-04-20T19:00:00,0.06011657830871304
+1990-04-20T20:00:00,0.06005066243581768
+1990-04-20T21:00:00,0.059984924061656855
+1990-04-20T22:00:00,0.0599193625563675
+1990-04-20T23:00:00,0.059853977292428785
+1990-04-21T00:00:00,0.059788767644653365
+1990-04-21T01:00:00,0.059723732990178476
+1990-04-21T02:00:00,0.05965887270845719
+1990-04-21T03:00:00,0.059594186181249766
+1990-04-21T04:00:00,0.05952967279261481
+1990-04-21T05:00:00,0.05946533192890072
+1990-04-21T06:00:00,0.05940116297873698
+1990-04-21T07:00:00,0.05933716533302559
+1990-04-21T08:00:00,0.0592733383849325
+1990-04-21T09:00:00,0.059209681529879016
+1990-04-21T10:00:00,0.05914619416553339
+1990-04-21T11:00:00,0.05908287569180225
+1990-04-21T12:00:00,0.05901972551082224
+1990-04-21T13:00:00,0.05895674302695156
+1990-04-21T14:00:00,0.0588939276467616
+1990-04-21T15:00:00,0.05883127877902862
+1990-04-21T16:00:00,0.058768795834725385
+1990-04-21T17:00:00,0.05870647822701295
+1990-04-21T18:00:00,0.05864432537123236
+1990-04-21T19:00:00,0.05858233668489648
+1990-04-21T20:00:00,0.05852051158768171
+1990-04-21T21:00:00,0.05845884950141998
+1990-04-21T22:00:00,0.0583973498500905
+1990-04-21T23:00:00,0.05833601205981171
+1990-04-22T00:00:00,0.058274835558833234
+1990-04-22T01:00:00,0.05821381977752782
+1990-04-22T02:00:00,0.05815296414838336
+1990-04-22T03:00:00,0.0580922681059949
+1990-04-22T04:00:00,0.05803173108705672
+1990-04-22T05:00:00,0.057971352530354424
+1990-04-22T06:00:00,0.05791113187675703
+1990-04-22T07:00:00,0.05785106856920915
+1990-04-22T08:00:00,0.057791162052723145
+1990-04-22T09:00:00,0.05773141177437138
+1990-04-22T10:00:00,0.05767181718327843
+1990-04-22T11:00:00,0.05761237773061331
+1990-04-22T12:00:00,0.057553092869581865
+1990-04-22T13:00:00,0.05749396205541903
+1990-04-22T14:00:00,0.05743498474538121
+1990-04-22T15:00:00,0.057376160398738656
+1990-04-22T16:00:00,0.057317488476767896
+1990-04-22T17:00:00,0.05725896844274415
+1990-04-22T18:00:00,0.05720059976193384
+1990-04-22T19:00:00,0.05714238190158707
+1990-04-22T20:00:00,0.05708431433093016
+1990-04-22T21:00:00,0.057026396521158214
+1990-04-22T22:00:00,0.056968627945427654
+1990-04-22T23:00:00,0.05691100807884893
+1990-04-23T00:00:00,0.05685353639847911
+1990-04-23T01:00:00,0.056892169938585285
+1990-04-23T02:00:00,0.06165559587869257
+1990-04-23T03:00:00,0.07296898430814347
+1990-04-23T04:00:00,0.07322204819876346
+1990-04-23T05:00:00,0.07347552487832495
+1990-04-23T06:00:00,0.07372940688628477
+1990-04-23T07:00:00,0.07398368683465521
+1990-04-23T08:00:00,0.07359569704224982
+1990-04-23T09:00:00,0.06983818799478582
+1990-04-23T10:00:00,0.07002099367587293
+1990-04-23T11:00:00,0.0702039392530832
+1990-04-23T12:00:00,0.07038702173767707
+1990-04-23T13:00:00,0.07057023816408844
+1990-04-23T14:00:00,0.07075358558969781
+1990-04-23T15:00:00,0.07093706109461201
+1990-04-23T16:00:00,0.07112066178145104
+1990-04-23T17:00:00,0.0713043847751412
+1990-04-23T18:00:00,0.0714882272227141
+1990-04-23T19:00:00,0.0716721862931118
+1990-04-23T20:00:00,0.07249928479377114
+1990-04-23T21:00:00,0.07669806094303672
+1990-04-23T22:00:00,0.07695697855907117
+1990-04-23T23:00:00,0.07721620290460987
+1990-04-24T00:00:00,0.07747572748236095
+1990-04-24T01:00:00,0.06953466895958015
+1990-04-24T02:00:00,0.06945465979337596
+1990-04-24T03:00:00,0.069543172437443
+1990-04-24T04:00:00,0.06963167891133629
+1990-04-24T05:00:00,0.06972017877668804
+1990-04-24T06:00:00,0.06980867159759441
+1990-04-24T07:00:00,0.0698971569406085
+1990-04-24T08:00:00,0.06966397436206744
+1990-04-24T09:00:00,0.06437329885097692
+1990-04-24T10:00:00,0.06437106907284965
+1990-04-24T11:00:00,0.06436889268951976
+1990-04-24T12:00:00,0.06436676950065738
+1990-04-24T13:00:00,0.0643646993066389
+1990-04-24T14:00:00,0.06436268190854451
+1990-04-24T15:00:00,0.0643607171081555
+1990-04-24T16:00:00,0.06435880470795187
+1990-04-24T17:00:00,0.06435694451110971
+1990-04-24T18:00:00,0.06435513632149865
+1990-04-24T19:00:00,0.06435337994367941
+1990-04-24T20:00:00,0.06467337422262423
+1990-04-24T21:00:00,0.07005134393690313
+1990-04-24T22:00:00,0.07014090752520406
+1990-04-24T23:00:00,0.07023045671700871
+1990-04-25T00:00:00,0.07031999110711928
+1990-04-25T01:00:00,0.06331771496598089
+1990-04-25T02:00:00,0.06321071510906845
+1990-04-25T03:00:00,0.06315113326267556
+1990-04-25T04:00:00,0.06309171733125518
+1990-04-25T05:00:00,0.06303246672514225
+1990-04-25T06:00:00,0.0629733808568651
+1990-04-25T07:00:00,0.0629144591411372
+1990-04-25T08:00:00,0.06281207641843223
+1990-04-25T09:00:00,0.0624034380566209
+1990-04-25T10:00:00,0.06233309865401089
+1990-04-25T11:00:00,0.06226295145828692
+1990-04-25T12:00:00,0.06219299578530368
+1990-04-25T13:00:00,0.062123230953462893
+1990-04-25T14:00:00,0.062053656283703594
+1990-04-25T15:00:00,0.06198427109949255
+1990-04-25T16:00:00,0.061915074726814776
+1990-04-25T17:00:00,0.061846066494164
+1990-04-25T18:00:00,0.0617772457325332
+1990-04-25T19:00:00,0.06170861177540514
+1990-04-25T20:00:00,0.06164016395874299
+1990-04-25T21:00:00,0.06157190162098096
+1990-04-25T22:00:00,0.061503824103015005
+1990-04-25T23:00:00,0.06143593074819342
+1990-04-26T00:00:00,0.06136822090230777
+1990-04-26T01:00:00,0.06130069391358352
+1990-04-26T02:00:00,0.06123334913267084
+1990-04-26T03:00:00,0.06116618591263557
+1990-04-26T04:00:00,0.061099203608950034
+1990-04-26T05:00:00,0.06103240157948393
+1990-04-26T06:00:00,0.06096577918449537
+1990-04-26T07:00:00,0.060899335786621746
+1990-04-26T08:00:00,0.06083307075087087
+1990-04-26T09:00:00,0.06076698344461195
+1990-04-26T10:00:00,0.06070107323756677
+1990-04-26T11:00:00,0.060635339501800674
+1990-04-26T12:00:00,0.06056978161171386
+1990-04-26T13:00:00,0.060504398944032534
+1990-04-26T14:00:00,0.06043919087780005
+1990-04-26T15:00:00,0.06037415679436829
+1990-04-26T16:00:00,0.060309296077388906
+1990-04-26T17:00:00,0.060244608112804625
+1990-04-26T18:00:00,0.06018009228884065
+1990-04-26T19:00:00,0.06011574799599599
+1990-04-26T20:00:00,0.06005157462703496
+1990-04-26T21:00:00,0.05998757157697861
+1990-04-26T22:00:00,0.059923738243096165
+1990-04-26T23:00:00,0.05986007402489661
+1990-04-27T00:00:00,0.05979657832412024
+1990-04-27T01:00:00,0.05973325054473019
+1990-04-27T02:00:00,0.059670090092904145
+1990-04-27T03:00:00,0.05960709637702589
+1990-04-27T04:00:00,0.05954426880767707
+1990-04-27T05:00:00,0.05953662167116413
+1990-04-27T06:00:00,0.05955333251306433
+1990-04-27T07:00:00,0.059570060327582865
+1990-04-27T08:00:00,0.05958327448158942
+1990-04-27T09:00:00,0.059520551754205724
+1990-04-27T10:00:00,0.05945799419100539
+1990-04-27T11:00:00,0.05939560120841937
+1990-04-27T12:00:00,0.05933337222504609
+1990-04-27T13:00:00,0.05927130666164331
+1990-04-27T14:00:00,0.059209403941119974
+1990-04-27T15:00:00,0.059147663488528096
+1990-04-27T16:00:00,0.059086084731054686
+1990-04-27T17:00:00,0.0590246670980137
+1990-04-27T18:00:00,0.05896341002083804
+1990-04-27T19:00:00,0.058902312933071556
+1990-04-27T20:00:00,0.05884137527036108
+1990-04-27T21:00:00,0.05880449214718171
+1990-04-27T22:00:00,0.05882308026804847
+1990-04-27T23:00:00,0.05884167936544439
+1990-04-28T00:00:00,0.05886028936708218
+1990-04-28T01:00:00,0.05879949267992742
+1990-04-28T02:00:00,0.058738854339885495
+1990-04-28T03:00:00,0.058678373788707903
+1990-04-28T04:00:00,0.05861805047021818
+1990-04-28T05:00:00,0.05855788383030417
+1990-04-28T06:00:00,0.05849787331691014
+1990-04-28T07:00:00,0.05843801838002913
+1990-04-28T08:00:00,0.05837831847169521
+1990-04-28T09:00:00,0.05831877304597576
+1990-04-28T10:00:00,0.058259381558963846
+1990-04-28T11:00:00,0.058200143468770546
+1990-04-28T12:00:00,0.05814105823551739
+1990-04-28T13:00:00,0.05808212532132881
+1990-04-28T14:00:00,0.05802334419032454
+1990-04-28T15:00:00,0.057964714308612116
+1990-04-28T16:00:00,0.05790623514427941
+1990-04-28T17:00:00,0.057847906167387164
+1990-04-28T18:00:00,0.05778972684996156
+1990-04-28T19:00:00,0.05773169666598682
+1990-04-28T20:00:00,0.057673815091397844
+1990-04-28T21:00:00,0.05761608160407284
+1990-04-28T22:00:00,0.05755849568382602
+1990-04-28T23:00:00,0.05750105681240033
+1990-04-29T00:00:00,0.05744376447346016
+1990-04-29T01:00:00,0.05738661815258413
+1990-04-29T02:00:00,0.057329617337257895
+1990-04-29T03:00:00,0.05727276151686693
+1990-04-29T04:00:00,0.05721605018268941
+1990-04-29T05:00:00,0.05715948282788907
+1990-04-29T06:00:00,0.05710305894750811
+1990-04-29T07:00:00,0.057046778038460165
+1990-04-29T08:00:00,0.056990639599523184
+1990-04-29T09:00:00,0.056934643131332494
+1990-04-29T10:00:00,0.05687878813637376
+1990-04-29T11:00:00,0.05682307411897604
+1990-04-29T12:00:00,0.056767500585304824
+1990-04-29T13:00:00,0.056712067043355206
+1990-04-29T14:00:00,0.05665677300294489
+1990-04-29T15:00:00,0.05660161797570739
+1990-04-29T16:00:00,0.05654660147508523
+1990-04-29T17:00:00,0.056491723016323055
+1990-04-29T18:00:00,0.05643698211646095
+1990-04-29T19:00:00,0.05638237829432759
+1990-04-29T20:00:00,0.05632791107053357
+1990-04-29T21:00:00,0.05627357996746474
+1990-04-29T22:00:00,0.05621938450927539
+1990-04-29T23:00:00,0.056165324221881786
+1990-04-30T00:00:00,0.056111398632955375
+1990-04-30T01:00:00,0.05605760727191629
+1990-04-30T02:00:00,0.056003949669926716
+1990-04-30T03:00:00,0.05595042535988438
+1990-04-30T04:00:00,0.05589703387641603
+1990-04-30T05:00:00,0.05584377475587087
+1990-04-30T06:00:00,0.05579064753631415
+1990-04-30T07:00:00,0.05573765175752069
+1990-04-30T08:00:00,0.05568478696096845
+1990-04-30T09:00:00,0.05563205268983214
+1990-04-30T10:00:00,0.05557944848897682
+1990-04-30T11:00:00,0.05552697390495156
+1990-04-30T12:00:00,0.05547462848598312
+1990-04-30T13:00:00,0.055422411781969626
+1990-04-30T14:00:00,0.05537032334447429
+1990-04-30T15:00:00,0.05531836272671917
+1990-04-30T16:00:00,0.0552665294835789
+1990-04-30T17:00:00,0.05521482317157452
+1990-04-30T18:00:00,0.0551632433488673
+1990-04-30T19:00:00,0.05511178957525247
+1990-04-30T20:00:00,0.05506046141215322
+1990-04-30T21:00:00,0.05500925842261452
+1990-04-30T22:00:00,0.05495818017129698
+1990-04-30T23:00:00,0.05490722622447088
+1990-05-01T00:00:00,0.05485639615001005
+1990-05-01T01:00:00,0.05480568951738585
+1990-05-01T02:00:00,0.0547551058976612
+1990-05-01T03:00:00,0.054704644863484586
+1990-05-01T04:00:00,0.05465430598908409
+1990-05-01T05:00:00,0.054604088850261495
+1990-05-01T06:00:00,0.05455399302438633
+1990-05-01T07:00:00,0.05450401809038999
+1990-05-01T08:00:00,0.054454163628759905
+1990-05-01T09:00:00,0.05440442922153367
+1990-05-01T10:00:00,0.05435481445229321
+1990-05-01T11:00:00,0.05430531890615902
+1990-05-01T12:00:00,0.05425594216978433
+1990-05-01T13:00:00,0.0542066838313494
+1990-05-01T14:00:00,0.054157543480555785
+1990-05-01T15:00:00,0.05410852070862059
+1990-05-01T16:00:00,0.05405961510827081
+1990-05-01T17:00:00,0.054010826273737635
+1990-05-01T18:00:00,0.053962153800750826
+1990-05-01T19:00:00,0.05391359728653308
+1990-05-01T20:00:00,0.053865156329794425
+1990-05-01T21:00:00,0.053816830530726646
+1990-05-01T22:00:00,0.05376861949099771
+1990-05-01T23:00:00,0.053720522813746216
+1990-05-02T00:00:00,0.05367254010357592
+1990-05-02T01:00:00,0.0536246709665502
+1990-05-02T02:00:00,0.05357691501018654
+1990-05-02T03:00:00,0.05352927184345119
+1990-05-02T04:00:00,0.0534817410767536
+1990-05-02T05:00:00,0.053434322321941105
+1990-05-02T06:00:00,0.05338701519229345
+1990-05-02T07:00:00,0.053339819302517466
+1990-05-02T08:00:00,0.0532927342687417
+1990-05-02T09:00:00,0.0532457597085111
+1990-05-02T10:00:00,0.053198895240781655
+1990-05-02T11:00:00,0.05315214048591516
+1990-05-02T12:00:00,0.053105495065673886
+1990-05-02T13:00:00,0.05305895860321535
+1990-05-02T14:00:00,0.05301253072308712
+1990-05-02T15:00:00,0.052966211051221554
+1990-05-02T16:00:00,0.052919999214930576
+1990-05-02T17:00:00,0.05287389484290059
+1990-05-02T18:00:00,0.05282789756518727
+1990-05-02T19:00:00,0.052782007013210425
+1990-05-02T20:00:00,0.05273622281974889
+1990-05-02T21:00:00,0.05269054461893543
+1990-05-02T22:00:00,0.052644972046251695
+1990-05-02T23:00:00,0.052599504738523095
+1990-05-03T00:00:00,0.05255414233391381
+1990-05-03T01:00:00,0.05250888447192178
+1990-05-03T02:00:00,0.05246373079337363
+1990-05-03T03:00:00,0.05241868094041981
+1990-05-03T04:00:00,0.052373734556529515
+1990-05-03T05:00:00,0.052328891286485824
+1990-05-03T06:00:00,0.05228415077638071
+1990-05-03T07:00:00,0.052239512673610204
+1990-05-03T08:00:00,0.05219497662686944
+1990-05-03T09:00:00,0.05215054228614783
+1990-05-03T10:00:00,0.05210620930272418
+1990-05-03T11:00:00,0.052061977329161895
+1990-05-03T12:00:00,0.052017846019304134
+1990-05-03T13:00:00,0.051973815028269046
+1990-05-03T14:00:00,0.05192988401244493
+1990-05-03T15:00:00,0.05188605262948558
+1990-05-03T16:00:00,0.05184232053830541
+1990-05-03T17:00:00,0.051798687399074866
+1990-05-03T18:00:00,0.051755152873215624
+1990-05-03T19:00:00,0.05171171662339593
+1990-05-03T20:00:00,0.05166837831352595
+1990-05-03T21:00:00,0.051625137608753084
+1990-05-03T22:00:00,0.05158199417545738
+1990-05-03T23:00:00,0.051538947681246845
+1990-05-04T00:00:00,0.051495997794952904
+1990-05-04T01:00:00,0.051453144186625825
+1990-05-04T02:00:00,0.051410386527530105
+1990-05-04T03:00:00,0.05136772449013993
+1990-05-04T04:00:00,0.051325157748134696
+1990-05-04T05:00:00,0.051282685976394425
+1990-05-04T06:00:00,0.05124030885099535
+1990-05-04T07:00:00,0.051198026049205335
+1990-05-04T08:00:00,0.05115583724947951
+1990-05-04T09:00:00,0.05111374213145578
+1990-05-04T10:00:00,0.05107174037595037
+1990-05-04T11:00:00,0.051029831664953486
+1990-05-04T12:00:00,0.05098801568162484
+1990-05-04T13:00:00,0.050946292110289344
+1990-05-04T14:00:00,0.05090466063643267
+1990-05-04T15:00:00,0.050863120946696976
+1990-05-04T16:00:00,0.05082167272887656
+1990-05-04T17:00:00,0.05078031567191352
+1990-05-04T18:00:00,0.05073904946589347
+1990-05-04T19:00:00,0.05069787380204129
+1990-05-04T20:00:00,0.0506567883727168
+1990-05-04T21:00:00,0.050615792871410575
+1990-05-04T22:00:00,0.05057488699273969
+1990-05-04T23:00:00,0.05053407043244348
+1990-05-05T00:00:00,0.05049334288737939
+1990-05-05T01:00:00,0.05045270405551874
+1990-05-05T02:00:00,0.05041215363594263
+1990-05-05T03:00:00,0.050371691328837676
+1990-05-05T04:00:00,0.05033131683549195
+1990-05-05T05:00:00,0.0502910298582909
+1990-05-05T06:00:00,0.050250830100713136
+1990-05-05T07:00:00,0.050210717267326406
+1990-05-05T08:00:00,0.05017069106378354
+1990-05-05T09:00:00,0.05013075119681833
+1990-05-05T10:00:00,0.05009089737424154
+1990-05-05T11:00:00,0.050051129304936846
+1990-05-05T12:00:00,0.05001144669885685
+1990-05-05T13:00:00,0.04997184926701906
+1990-05-05T14:00:00,0.0499323367215019
+1990-05-05T15:00:00,0.04989290877544079
+1990-05-05T16:00:00,0.04985356514302414
+1990-05-05T17:00:00,0.049814305539489435
+1990-05-05T18:00:00,0.0497751296811193
+1990-05-05T19:00:00,0.04973603728523765
+1990-05-05T20:00:00,0.04969702807020568
+1990-05-05T21:00:00,0.04965810175541813
+1990-05-05T22:00:00,0.04961925806129928
+1990-05-05T23:00:00,0.04958049670929921
+1990-05-06T00:00:00,0.04954181742188993
+1990-05-06T01:00:00,0.04950321992256154
+1990-05-06T02:00:00,0.04946470393581844
+1990-05-06T03:00:00,0.04942626918717554
+1990-05-06T04:00:00,0.049387915403154486
+1990-05-06T05:00:00,0.04934964231127988
+1990-05-06T06:00:00,0.049311449640075555
+1990-05-06T07:00:00,0.04927333711906085
+1990-05-06T08:00:00,0.04923530447874683
+1990-05-06T09:00:00,0.049197351450632636
+1990-05-06T10:00:00,0.0491594777672018
+1990-05-06T11:00:00,0.049121683161918506
+1990-05-06T12:00:00,0.04908396736922401
+1990-05-06T13:00:00,0.049046330124532904
+1990-05-06T14:00:00,0.049008771164229525
+1990-05-06T15:00:00,0.04897129022566436
+1990-05-06T16:00:00,0.04893388704715037
+1990-05-06T17:00:00,0.048896561367959425
+1990-05-06T18:00:00,0.04885931292831875
+1990-05-06T19:00:00,0.04882214146940733
+1990-05-06T20:00:00,0.048785046733352336
+1990-05-06T21:00:00,0.048748028463225616
+1990-05-06T22:00:00,0.04871108640304016
+1990-05-06T23:00:00,0.048674220297746575
+1990-05-07T00:00:00,0.0486374298932296
+1990-05-07T01:00:00,0.04860071493630458
+1990-05-07T02:00:00,0.04856407517471406
+1990-05-07T03:00:00,0.04852751035712425
+1990-05-07T04:00:00,0.04856391409179856
+1990-05-07T05:00:00,0.04861425546655493
+1990-05-07T06:00:00,0.053231441614293086
+1990-05-07T07:00:00,0.05596012511196186
+1990-05-07T08:00:00,0.05669188526259322
+1990-05-07T09:00:00,0.050049248140000814
+1990-05-07T10:00:00,0.0500279267481029
+1990-05-07T11:00:00,0.05000665219211185
+1990-05-07T12:00:00,0.04998542432859925
+1990-05-07T13:00:00,0.04996424301465106
+1990-05-07T14:00:00,0.049943108107865584
+1990-05-07T15:00:00,0.049922019466351615
+1990-05-07T16:00:00,0.049900976948726514
+1990-05-07T17:00:00,0.04987998041411426
+1990-05-07T18:00:00,0.049859029722143615
+1990-05-07T19:00:00,0.049838124732946174
+1990-05-07T20:00:00,0.04913633362495308
+1990-05-07T21:00:00,0.0558097116299419
+1990-05-07T22:00:00,0.05586200437958772
+1990-05-07T23:00:00,0.05591447992102902
+1990-05-08T00:00:00,0.055967137548644214
+1990-05-08T01:00:00,0.06211706262034027
+1990-05-08T02:00:00,0.062229475214346436
+1990-05-08T03:00:00,0.06235857214445107
+1990-05-08T04:00:00,0.06248843548143384
+1990-05-08T05:00:00,0.06261906102253169
+1990-05-08T06:00:00,0.06275044453978092
+1990-05-08T07:00:00,0.06288258178065938
+1990-05-08T08:00:00,0.06420529535546847
+1990-05-08T09:00:00,0.057517371126499676
+1990-05-08T10:00:00,0.05757822238059666
+1990-05-08T11:00:00,0.057639269477112155
+1990-05-08T12:00:00,0.057700511542930745
+1990-05-08T13:00:00,0.057761947703296644
+1990-05-08T14:00:00,0.05782357708186197
+1990-05-08T15:00:00,0.05788539880073489
+1990-05-08T16:00:00,0.05794741198052737
+1990-05-08T17:00:00,0.058009615740402726
+1990-05-08T18:00:00,0.058072009198122936
+1990-05-08T19:00:00,0.05813459147009564
+1990-05-08T20:00:00,0.057006843847462435
+1990-05-08T21:00:00,0.06389442571955195
+1990-05-08T22:00:00,0.06403413940867282
+1990-05-08T23:00:00,0.06417455918183773
+1990-05-09T00:00:00,0.06431568052062248
+1990-05-09T01:00:00,0.05102161823937772
+1990-05-09T02:00:00,0.05097853740793288
+1990-05-09T03:00:00,0.0509355541850172
+1990-05-09T04:00:00,0.05089266823659771
+1990-05-09T05:00:00,0.05084987922987115
+1990-05-09T06:00:00,0.05080718683325937
+1990-05-09T07:00:00,0.05076459071640475
+1990-05-09T08:00:00,0.05072209055016562
+1990-05-09T09:00:00,0.050679686006611706
+1990-05-09T10:00:00,0.05063737675901958
+1990-05-09T11:00:00,0.050595162481868156
+1990-05-09T12:00:00,0.050553042850834215
+1990-05-09T13:00:00,0.050511017542787855
+1990-05-09T14:00:00,0.05046908623578807
+1990-05-09T15:00:00,0.050427248609078296
+1990-05-09T16:00:00,0.050385504343081935
+1990-05-09T17:00:00,0.05034385311939799
+1990-05-09T18:00:00,0.050302294620796655
+1990-05-09T19:00:00,0.050260828531214885
+1990-05-09T20:00:00,0.05021945453575208
+1990-05-09T21:00:00,0.050178172320665695
+1990-05-09T22:00:00,0.050136981573366955
+1990-05-09T23:00:00,0.05009588198241647
+1990-05-10T00:00:00,0.05005487323751998
+1990-05-10T01:00:00,0.050013955029524076
+1990-05-10T02:00:00,0.04997312705041188
+1990-05-10T03:00:00,0.04993238899329883
+1990-05-10T04:00:00,0.04989174055242846
+1990-05-10T05:00:00,0.0498511814231681
+1990-05-10T06:00:00,0.04981071130200477
+1990-05-10T07:00:00,0.049770329886540926
+1990-05-10T08:00:00,0.049783229950506526
+1990-05-10T09:00:00,0.049742895690956565
+1990-05-10T10:00:00,0.04970264968480768
+1990-05-10T11:00:00,0.04966249163243148
+1990-05-10T12:00:00,0.04962242123530045
+1990-05-10T13:00:00,0.049582438195983944
+1990-05-10T14:00:00,0.04954254221814395
+1990-05-10T15:00:00,0.04950273300653111
+1990-05-10T16:00:00,0.0494630102669806
+1990-05-10T17:00:00,0.049423373706408064
+1990-05-10T18:00:00,0.04938382303280559
+1990-05-10T19:00:00,0.049344357955237686
+1990-05-10T20:00:00,0.049304978183837264
+1990-05-10T21:00:00,0.04926568342980164
+1990-05-10T22:00:00,0.04922647340538858
+1990-05-10T23:00:00,0.049237959594494375
+1990-05-11T00:00:00,0.049257823970997906
+1990-05-11T01:00:00,0.04925045128981629
+1990-05-11T02:00:00,0.04924527340685544
+1990-05-11T03:00:00,0.0510832765092272
+1990-05-11T04:00:00,0.05178966685446389
+1990-05-11T05:00:00,0.0517846012239353
+1990-05-11T06:00:00,0.05177957280733627
+1990-05-11T07:00:00,0.051774581503360464
+1990-05-11T08:00:00,0.05204014704137074
+1990-05-11T09:00:00,0.04917935618123945
+1990-05-11T10:00:00,0.049140227059911105
+1990-05-11T11:00:00,0.049101182182572305
+1990-05-11T12:00:00,0.04906222126428593
+1990-05-11T13:00:00,0.0490233440211609
+1990-05-11T14:00:00,0.04898455017034819
+1990-05-11T15:00:00,0.04894583943003694
+1990-05-11T16:00:00,0.048907211519450614
+1990-05-11T17:00:00,0.04886866615884309
+1990-05-11T18:00:00,0.048830203069494836
+1990-05-11T19:00:00,0.048791821973709064
+1990-05-11T20:00:00,0.0487535225948079
+1990-05-11T21:00:00,0.04871530465712855
+1990-05-11T22:00:00,0.04867716788601958
+1990-05-11T23:00:00,0.048639112007837076
+1990-05-12T00:00:00,0.0486011367499409
+1990-05-12T01:00:00,0.0485632418406909
+1990-05-12T02:00:00,0.048525427009443255
+1990-05-12T03:00:00,0.048487691986546656
+1990-05-12T04:00:00,0.048450036503338685
+1990-05-12T05:00:00,0.04841246029214206
+1990-05-12T06:00:00,0.048374963086260936
+1990-05-12T07:00:00,0.04833754461997733
+1990-05-12T08:00:00,0.04830020462854741
+1990-05-12T09:00:00,0.048262942848197786
+1990-05-12T10:00:00,0.04822575901612205
+1990-05-12T11:00:00,0.04818865287047699
+1990-05-12T12:00:00,0.048151624150379116
+1990-05-12T13:00:00,0.04811467259590102
+1990-05-12T14:00:00,0.04807779794806781
+1990-05-12T15:00:00,0.048040999948853566
+1990-05-12T16:00:00,0.04800427834117777
+1990-05-12T17:00:00,0.0479676328689018
+1990-05-12T18:00:00,0.04793106327682541
+1990-05-12T19:00:00,0.04789456931068321
+1990-05-12T20:00:00,0.047858150717141196
+1990-05-12T21:00:00,0.04782180724379325
+1990-05-12T22:00:00,0.04778553863915768
+1990-05-12T23:00:00,0.04774934465267378
+1990-05-13T00:00:00,0.0477132250346984
+1990-05-13T01:00:00,0.04767717953650249
+1990-05-13T02:00:00,0.047641207910267686
+1990-05-13T03:00:00,0.04760530990908297
+1990-05-13T04:00:00,0.04757663343465978
+1990-05-13T05:00:00,0.047647180447507764
+1990-05-13T06:00:00,0.04901372224605095
+1990-05-13T07:00:00,0.056150760393980426
+1990-05-13T08:00:00,0.05700072573844492
+1990-05-13T09:00:00,0.05008319181478701
+1990-05-13T10:00:00,0.05007539169909579
+1990-05-13T11:00:00,0.050067624663539465
+1990-05-13T12:00:00,0.050059890621100514
+1990-05-13T13:00:00,0.05005218948501777
+1990-05-13T14:00:00,0.05004452116878553
+1990-05-13T15:00:00,0.05003688558615256
+1990-05-13T16:00:00,0.05002928265112128
+1990-05-13T17:00:00,0.050021712277946724
+1990-05-13T18:00:00,0.050014174381135715
+1990-05-13T19:00:00,0.050006668875445866
+1990-05-13T20:00:00,0.049220370104139266
+1990-05-13T21:00:00,0.056202879225825425
+1990-05-13T22:00:00,0.05627592470313143
+1990-05-13T23:00:00,0.05634920600095161
+1990-05-14T00:00:00,0.05642272194240565
+1990-05-14T01:00:00,0.048023777744083646
+1990-05-14T02:00:00,0.04798666138348122
+1990-05-14T03:00:00,0.04794962279943966
+1990-05-14T04:00:00,0.04791266173059942
+1990-05-14T05:00:00,0.0478757779165589
+1990-05-14T06:00:00,0.04783897109787083
+1990-05-14T07:00:00,0.04780224101603874
+1990-05-14T08:00:00,0.0477655874135134
+1990-05-14T09:00:00,0.047729010033689276
+1990-05-14T10:00:00,0.047692508620901006
+1990-05-14T11:00:00,0.04765608292041991
+1990-05-14T12:00:00,0.04761973267845044
+1990-05-14T13:00:00,0.047583457642126764
+1990-05-14T14:00:00,0.047547257559509254
+1990-05-14T15:00:00,0.047511132179580993
+1990-05-14T16:00:00,0.04747508125224444
+1990-05-14T17:00:00,0.04743910452831787
+1990-05-14T18:00:00,0.047403201759532054
+1990-05-14T19:00:00,0.04736737269852676
+1990-05-14T20:00:00,0.04733161709884745
+1990-05-14T21:00:00,0.047295934714941854
+1990-05-14T22:00:00,0.0472603253021566
+1990-05-14T23:00:00,0.04722478861673385
+1990-05-15T00:00:00,0.04718932441580801
+1990-05-15T01:00:00,0.04715393245740235
+1990-05-15T02:00:00,0.04711861250042567
+1990-05-15T03:00:00,0.047083364304669056
+1990-05-15T04:00:00,0.04704818763080254
+1990-05-15T05:00:00,0.04701308224037185
+1990-05-15T06:00:00,0.04697804789579512
+1990-05-15T07:00:00,0.046943084360359634
+1990-05-15T08:00:00,0.04690819139821861
+1990-05-15T09:00:00,0.04687336877438793
+1990-05-15T10:00:00,0.04683861625474296
+1990-05-15T11:00:00,0.04680393360601531
+1990-05-15T12:00:00,0.04676932059578968
+1990-05-15T13:00:00,0.04673477699250061
+1990-05-15T14:00:00,0.04670030256542938
+1990-05-15T15:00:00,0.04666589708470082
+1990-05-15T16:00:00,0.046631560321280185
+1990-05-15T17:00:00,0.04659729204696997
+1990-05-15T18:00:00,0.046563092034406846
+1990-05-15T19:00:00,0.0465289600570585
+1990-05-15T20:00:00,0.04649489588922056
+1990-05-15T21:00:00,0.046460899306013534
+1990-05-15T22:00:00,0.04642697008337968
+1990-05-15T23:00:00,0.04639310799807997
+1990-05-16T00:00:00,0.04635931282769104
+1990-05-16T01:00:00,0.04632558435060214
+1990-05-16T02:00:00,0.0462919223460121
+1990-05-16T03:00:00,0.04625832659392635
+1990-05-16T04:00:00,0.046224796875153844
+1990-05-16T05:00:00,0.046191332971304115
+1990-05-16T06:00:00,0.04615793466478428
+1990-05-16T07:00:00,0.04612460173879609
+1990-05-16T08:00:00,0.04609133397733287
+1990-05-16T09:00:00,0.04605813116517673
+1990-05-16T10:00:00,0.046024993087895476
+1990-05-16T11:00:00,0.04599191953183975
+1990-05-16T12:00:00,0.04595891028414015
+1990-05-16T13:00:00,0.0459259651327042
+1990-05-16T14:00:00,0.0458930838662136
+1990-05-16T15:00:00,0.04586026627412122
+1990-05-16T16:00:00,0.04582751214664833
+1990-05-16T17:00:00,0.04579482127478166
+1990-05-16T18:00:00,0.04576219345027058
+1990-05-16T19:00:00,0.045729628465624214
+1990-05-16T20:00:00,0.04569712611410873
+1990-05-16T21:00:00,0.04566468618974437
+1990-05-16T22:00:00,0.04563230848730273
+1990-05-16T23:00:00,0.04559999280230393
+1990-05-17T00:00:00,0.045567738931013874
+1990-05-17T01:00:00,0.04553554667044138
+1990-05-17T02:00:00,0.045503415818335495
+1990-05-17T03:00:00,0.04547134617318269
+1990-05-17T04:00:00,0.04543933753420419
+1990-05-17T05:00:00,0.045407389701353114
+1990-05-17T06:00:00,0.04537550247531183
+1990-05-17T07:00:00,0.04534367565748925
+1990-05-17T08:00:00,0.04531190905001807
+1990-05-17T09:00:00,0.045280202455752136
+1990-05-17T10:00:00,0.045248555678263705
+1990-05-17T11:00:00,0.045216968521840796
+1990-05-17T12:00:00,0.04518544079148452
+1990-05-17T13:00:00,0.04515397229290644
+1990-05-17T14:00:00,0.04512256283252591
+1990-05-17T15:00:00,0.04509121221746741
+1990-05-17T16:00:00,0.045059920255558
+1990-05-17T17:00:00,0.04502868675532464
+1990-05-17T18:00:00,0.04499751152599159
+1990-05-17T19:00:00,0.044966394377477854
+1990-05-17T20:00:00,0.04493533512039456
+1990-05-17T21:00:00,0.04490433356604238
+1990-05-17T22:00:00,0.044873389526408985
+1990-05-17T23:00:00,0.04484250281416649
+1990-05-18T00:00:00,0.04481167324266887
+1990-05-18T01:00:00,0.04478090062594948
+1990-05-18T02:00:00,0.04475018477871848
+1990-05-18T03:00:00,0.044719525516360346
+1990-05-18T04:00:00,0.04468892265493133
+1990-05-18T05:00:00,0.044658376011157
+1990-05-18T06:00:00,0.044627885402429714
+1990-05-18T07:00:00,0.044597450646806154
+1990-05-18T08:00:00,0.044567071563004865
+1990-05-18T09:00:00,0.04453674797040378
+1990-05-18T10:00:00,0.04450647968903777
+1990-05-18T11:00:00,0.044476266539596215
+1990-05-18T12:00:00,0.04444610834342052
+1990-05-18T13:00:00,0.04441600492250176
+1990-05-18T14:00:00,0.044385956099478215
+1990-05-18T15:00:00,0.044355961697633
+1990-05-18T16:00:00,0.044326021540891596
+1990-05-18T17:00:00,0.044296135453819566
+1990-05-18T18:00:00,0.044266303261620094
+1990-05-18T19:00:00,0.04423652479013162
+1990-05-18T20:00:00,0.04420679986582553
+1990-05-18T21:00:00,0.044177128315803754
+1990-05-18T22:00:00,0.04414750996779645
+1990-05-18T23:00:00,0.044117944650159634
+1990-05-19T00:00:00,0.044088432191872896
+1990-05-19T01:00:00,0.044058972422537056
+1990-05-19T02:00:00,0.044029565172371866
+1990-05-19T03:00:00,0.0440002102722137
+1990-05-19T04:00:00,0.04397090755351326
+1990-05-19T05:00:00,0.043941656848333295
+1990-05-19T06:00:00,0.04391245798934636
+1990-05-19T07:00:00,0.04388331080983248
+1990-05-19T08:00:00,0.04385421514367698
+1990-05-19T09:00:00,0.04382517082536813
+1990-05-19T10:00:00,0.04379617768999501
+1990-05-19T11:00:00,0.04376723557324523
+1990-05-19T12:00:00,0.04373834431140267
+1990-05-19T13:00:00,0.04370950374134533
+1990-05-19T14:00:00,0.043680713700543085
+1990-05-19T15:00:00,0.04365197402705552
+1990-05-19T16:00:00,0.04362328455952966
+1990-05-19T17:00:00,0.043594645137197886
+1990-05-19T18:00:00,0.04356605559987572
+1990-05-19T19:00:00,0.04353751578795962
+1990-05-19T20:00:00,0.043509025542424896
+1990-05-19T21:00:00,0.04348058470482351
+1990-05-19T22:00:00,0.04345219311728193
+1990-05-19T23:00:00,0.043423850622499024
+1990-05-20T00:00:00,0.04339555706374394
+1990-05-20T01:00:00,0.04336731228485396
+1990-05-20T02:00:00,0.04333911613023238
+1990-05-20T03:00:00,0.043310968444846464
+1990-05-20T04:00:00,0.0432828690742253
+1990-05-20T05:00:00,0.043254817864457736
+1990-05-20T06:00:00,0.043226814662190284
+1990-05-20T07:00:00,0.04319885931462508
+1990-05-20T08:00:00,0.04320650941852018
+1990-05-20T09:00:00,0.043178564907256835
+1990-05-20T10:00:00,0.04315066808525014
+1990-05-20T11:00:00,0.04312281880084483
+1990-05-20T12:00:00,0.043095016902934886
+1990-05-20T13:00:00,0.04306726224096159
+1990-05-20T14:00:00,0.04303955466491146
+1990-05-20T15:00:00,0.0430118940253142
+1990-05-20T16:00:00,0.042984280173240755
+1990-05-20T17:00:00,0.042956712960301215
+1990-05-20T18:00:00,0.04292919223864288
+1990-05-20T19:00:00,0.04290171786094825
+1990-05-20T20:00:00,0.042874289680433
+1990-05-20T21:00:00,0.042846907550844075
+1990-05-20T22:00:00,0.04281957132645764
+1990-05-20T23:00:00,0.04279228086207719
+1990-05-21T00:00:00,0.042765496219842235
+1990-05-21T01:00:00,0.042823638609907365
+1990-05-21T02:00:00,0.046180676183334504
+1990-05-21T03:00:00,0.05255842049726662
+1990-05-21T04:00:00,0.05262188327481377
+1990-05-21T05:00:00,0.05268576580537551
+1990-05-21T06:00:00,0.052750066969861335
+1990-05-21T07:00:00,0.05281478563615374
+1990-05-21T08:00:00,0.05374244609233076
+1990-05-21T09:00:00,0.04863496843550992
+1990-05-21T10:00:00,0.048658740824027207
+1990-05-21T11:00:00,0.04868261627321648
+1990-05-21T12:00:00,0.048706594557872226
+1990-05-21T13:00:00,0.04873067545178535
+1990-05-21T14:00:00,0.048754858727752606
+1990-05-21T15:00:00,0.04877914415758598
+1990-05-21T16:00:00,0.0488035315121221
+1990-05-21T17:00:00,0.04882802056123161
+1990-05-21T18:00:00,0.04885261107382857
+1990-05-21T19:00:00,0.048877302817879824
+1990-05-21T20:00:00,0.04803920394758526
+1990-05-21T21:00:00,0.053238832211881845
+1990-05-21T22:00:00,0.05330771977536038
+1990-05-21T23:00:00,0.05337701212254566
+1990-05-22T00:00:00,0.0534467079661374
+1990-05-22T01:00:00,0.05118636688334943
+1990-05-22T02:00:00,0.05094924497185739
+1990-05-22T03:00:00,0.05099272746313737
+1990-05-22T04:00:00,0.05103639881129373
+1990-05-22T05:00:00,0.05108025846968732
+1990-05-22T06:00:00,0.05112430588890793
+1990-05-22T07:00:00,0.05116854051680703
+1990-05-22T08:00:00,0.051882088675675855
+1990-05-22T09:00:00,0.044479799970598276
+1990-05-22T10:00:00,0.044452029464256304
+1990-05-22T11:00:00,0.044424310213534844
+1990-05-22T12:00:00,0.044396642052878035
+1990-05-22T13:00:00,0.04436902481733188
+1990-05-22T14:00:00,0.04434145834254199
+1990-05-22T15:00:00,0.044313942464751385
+1990-05-22T16:00:00,0.044286477020798284
+1990-05-22T17:00:00,0.044259061848113845
+1990-05-22T18:00:00,0.04423169678472001
+1990-05-22T19:00:00,0.0442043816692273
+1990-05-22T20:00:00,0.043863886020201484
+1990-05-22T21:00:00,0.05057561687065138
+1990-05-22T22:00:00,0.050973173951813604
+1990-05-22T23:00:00,0.05101878805814127
+1990-05-23T00:00:00,0.05106458552944856
+1990-05-23T01:00:00,0.04644723704395275
+1990-05-23T02:00:00,0.046438818608048625
+1990-05-23T03:00:00,0.046434218369067776
+1990-05-23T04:00:00,0.04642964736083731
+1990-05-23T05:00:00,0.046425105520062675
+1990-05-23T06:00:00,0.046420592783587435
+1990-05-23T07:00:00,0.04641610908839285
+1990-05-23T08:00:00,0.04669234427356397
+1990-05-23T09:00:00,0.043977822167067186
+1990-05-23T10:00:00,0.043946797183287006
+1990-05-23T11:00:00,0.04391583127151063
+1990-05-23T12:00:00,0.04388492423804022
+1990-05-23T13:00:00,0.043854075889883784
+1990-05-23T14:00:00,0.04382328603475264
+1990-05-23T15:00:00,0.043792554481058746
+1990-05-23T16:00:00,0.043761881037912065
+1990-05-23T17:00:00,0.04373126551511805
+1990-05-23T18:00:00,0.04370070772317498
+1990-05-23T19:00:00,0.0436702074732714
+1990-05-23T20:00:00,0.043639764577283593
+1990-05-23T21:00:00,0.04360937884777294
+1990-05-23T22:00:00,0.043579050097983484
+1990-05-23T23:00:00,0.04354877814183926
+1990-05-24T00:00:00,0.04351856279394185
+1990-05-24T01:00:00,0.04354729183642217
+1990-05-24T02:00:00,0.052541524574302154
+1990-05-24T03:00:00,0.06189961918417719
+1990-05-24T04:00:00,0.06206843711219487
+1990-05-24T05:00:00,0.062238906261542715
+1990-05-24T06:00:00,0.06241101812831017
+1990-05-24T07:00:00,0.06258476409322784
+1990-05-24T08:00:00,0.06433708640480021
+1990-05-24T09:00:00,0.058968108239887185
+1990-05-24T10:00:00,0.059100114757669846
+1990-05-24T11:00:00,0.05923303131369577
+1990-05-24T12:00:00,0.05936685329923996
+1990-05-24T13:00:00,0.059501576068455485
+1990-05-24T14:00:00,0.059637194939073254
+1990-05-24T15:00:00,0.059773705193118025
+1990-05-24T16:00:00,0.0599111020776391
+1990-05-24T17:00:00,0.06004938080545394
+1990-05-24T18:00:00,0.06018853655590356
+1990-05-24T19:00:00,0.060328564475618074
+1990-05-24T20:00:00,0.058890823679269184
+1990-05-24T21:00:00,0.06458268376187495
+1990-05-24T22:00:00,0.06477599327294435
+1990-05-24T23:00:00,0.06497081227477478
+1990-05-25T00:00:00,0.06516713067269223
+1990-05-25T01:00:00,0.04710824683059466
+1990-05-25T02:00:00,0.047069129246202275
+1990-05-25T03:00:00,0.04703009903264271
+1990-05-25T04:00:00,0.046991155892050086
+1990-05-25T05:00:00,0.04695229952765349
+1990-05-25T06:00:00,0.04691352964377288
+1990-05-25T07:00:00,0.04687484594581497
+1990-05-25T08:00:00,0.04683624814026922
+1990-05-25T09:00:00,0.0467977359347037
+1990-05-25T10:00:00,0.04675930903776116
+1990-05-25T11:00:00,0.04672096715915494
+1990-05-25T12:00:00,0.04668271000966498
+1990-05-25T13:00:00,0.046644537301133826
+1990-05-25T14:00:00,0.046606448746462706
+1990-05-25T15:00:00,0.046568444059607486
+1990-05-25T16:00:00,0.046530522955574805
+1990-05-25T17:00:00,0.046492685150418066
+1990-05-25T18:00:00,0.04645493036123361
+1990-05-25T19:00:00,0.046417258306156776
+1990-05-25T20:00:00,0.04637966870435796
+1990-05-25T21:00:00,0.04634216127603885
+1990-05-25T22:00:00,0.04630473574242849
+1990-05-25T23:00:00,0.046267391825779484
+1990-05-26T00:00:00,0.04623012924936416
+1990-05-26T01:00:00,0.04619294773747072
+1990-05-26T02:00:00,0.046155847015399494
+1990-05-26T03:00:00,0.04611882680945913
+1990-05-26T04:00:00,0.04608188684696286
+1990-05-26T05:00:00,0.04604502685622467
+1990-05-26T06:00:00,0.04600824656655563
+1990-05-26T07:00:00,0.045971545708260134
+1990-05-26T08:00:00,0.04593492401263222
+1990-05-26T09:00:00,0.04589838121195184
+1990-05-26T10:00:00,0.04586191703948117
+1990-05-26T11:00:00,0.04582553122946097
+1990-05-26T12:00:00,0.045789223517106896
+1990-05-26T13:00:00,0.04575299363860592
+1990-05-26T14:00:00,0.04571684133111258
+1990-05-26T15:00:00,0.045680766332745516
+1990-05-26T16:00:00,0.04564476838258373
+1990-05-26T17:00:00,0.04560884722066311
+1990-05-26T18:00:00,0.04557300258797277
+1990-05-26T19:00:00,0.045537234226451534
+1990-05-26T20:00:00,0.0455015418789844
+1990-05-26T21:00:00,0.045465925289398954
+1990-05-26T22:00:00,0.04543038420246193
+1990-05-26T23:00:00,0.04539491836387558
+1990-05-27T00:00:00,0.04535952752027432
+1990-05-27T01:00:00,0.045324211419221154
+1990-05-27T02:00:00,0.04528896980920424
+1990-05-27T03:00:00,0.04525380243963342
+1990-05-27T04:00:00,0.04521870906083679
+1990-05-27T05:00:00,0.04518368942405729
+1990-05-27T06:00:00,0.04514874328144926
+1990-05-27T07:00:00,0.04511387038607503
+1990-05-27T08:00:00,0.04507907049190156
+1990-05-27T09:00:00,0.04504434335379705
+1990-05-27T10:00:00,0.04500968872752756
+1990-05-27T11:00:00,0.04497510636975367
+1990-05-27T12:00:00,0.04494059603802718
+1990-05-27T13:00:00,0.04490615749078769
+1990-05-27T14:00:00,0.0448717904873594
+1990-05-27T15:00:00,0.044837494787947706
+1990-05-27T16:00:00,0.04480327015363598
+1990-05-27T17:00:00,0.04476911634638226
+1990-05-27T18:00:00,0.04473503312901602
+1990-05-27T19:00:00,0.04470102026523484
+1990-05-27T20:00:00,0.044667077519601285
+1990-05-27T21:00:00,0.04463320465753957
+1990-05-27T22:00:00,0.044599401445332386
+1990-05-27T23:00:00,0.044565667650117734
+1990-05-28T00:00:00,0.044532003039885665
+1990-05-28T01:00:00,0.04449840738347514
+1990-05-28T02:00:00,0.04446488045057088
+1990-05-28T03:00:00,0.04443142201170016
+1990-05-28T04:00:00,0.04439803183822972
+1990-05-28T05:00:00,0.04436470970236259
+1990-05-28T06:00:00,0.04433145537713499
+1990-05-28T07:00:00,0.044298268636413236
+1990-05-28T08:00:00,0.044265149254890626
+1990-05-28T09:00:00,0.04423209700808433
+1990-05-28T10:00:00,0.0441991116723324
+1990-05-28T11:00:00,0.04416619302479059
+1990-05-28T12:00:00,0.044133340843429465
+1990-05-28T13:00:00,0.044100554907031166
+1990-05-28T14:00:00,0.04406783499518656
+1990-05-28T15:00:00,0.04403518088829212
+1990-05-28T16:00:00,0.04400259236754695
+1990-05-28T17:00:00,0.04397006921494982
+1990-05-28T18:00:00,0.04393761121329616
+1990-05-28T19:00:00,0.04390521814617506
+1990-05-28T20:00:00,0.04387288979796637
+1990-05-28T21:00:00,0.04384062595383772
+1990-05-28T22:00:00,0.04380842639974159
+1990-05-28T23:00:00,0.043776290922412385
+1990-05-29T00:00:00,0.043744219309363494
+1990-05-29T01:00:00,0.043712211348884436
+1990-05-29T02:00:00,0.04368026683003796
+1990-05-29T03:00:00,0.043648385542657105
+1990-05-29T04:00:00,0.04361656727734239
+1990-05-29T05:00:00,0.043584811825458945
+1990-05-29T06:00:00,0.04355311897913363
+1990-05-29T07:00:00,0.04352148853125225
+1990-05-29T08:00:00,0.04348992027545666
+1990-05-29T09:00:00,0.04345841400614199
+1990-05-29T10:00:00,0.04342696951845389
+1990-05-29T11:00:00,0.04339558660828557
+1990-05-29T12:00:00,0.04336426507227523
+1990-05-29T13:00:00,0.04333300470780309
+1990-05-29T14:00:00,0.04330180531298877
+1990-05-29T15:00:00,0.043270666686688455
+1990-05-29T16:00:00,0.043239588628492184
+1990-05-29T17:00:00,0.043208570938721096
+1990-05-29T18:00:00,0.043177613418424736
+1990-05-29T19:00:00,0.0431467158693783
+1990-05-29T20:00:00,0.04311587809407996
+1990-05-29T21:00:00,0.04308509989574822
+1990-05-29T22:00:00,0.04305438107831911
+1990-05-29T23:00:00,0.04302372144644364
+1990-05-30T00:00:00,0.042993120805485056
+1990-05-30T01:00:00,0.042962578961516236
+1990-05-30T02:00:00,0.042932095721317017
+1990-05-30T03:00:00,0.04290167089237158
+1990-05-30T04:00:00,0.04287130428286583
+1990-05-30T05:00:00,0.04284099570168476
+1990-05-30T06:00:00,0.0428107449584099
+1990-05-30T07:00:00,0.04278055186331663
+1990-05-30T08:00:00,0.042750416227371725
+1990-05-30T09:00:00,0.042720337862230666
+1990-05-30T10:00:00,0.042690316580235144
+1990-05-30T11:00:00,0.0426603521944105
+1990-05-30T12:00:00,0.04263044451846312
+1990-05-30T13:00:00,0.04260059336677801
+1990-05-30T14:00:00,0.04257079855441616
+1990-05-30T15:00:00,0.04254105989711211
+1990-05-30T16:00:00,0.042511377211271406
+1990-05-30T17:00:00,0.04248175031396807
+1990-05-30T18:00:00,0.04245217902294223
+1990-05-30T19:00:00,0.042422663156597484
+1990-05-30T20:00:00,0.04239320253399854
+1990-05-30T21:00:00,0.04236379697486874
+1990-05-30T22:00:00,0.0423344462995876
+1990-05-30T23:00:00,0.04230515032918834
+1990-05-31T00:00:00,0.04227590888535552
+1990-05-31T01:00:00,0.042246721790422534
+1990-05-31T02:00:00,0.04221758886736926
+1990-05-31T03:00:00,0.042188509939819624
+1990-05-31T04:00:00,0.042159484832039254
+1990-05-31T05:00:00,0.04213051336893299
+1990-05-31T06:00:00,0.04210159537604265
+1990-05-31T07:00:00,0.04207273067954452
+1990-05-31T08:00:00,0.04204391910624708
+1990-05-31T09:00:00,0.04201516048358863
+1990-05-31T10:00:00,0.041986454639634976
+1990-05-31T11:00:00,0.041957801403077026
+1990-05-31T12:00:00,0.04192920060322857
+1990-05-31T13:00:00,0.04190065207002383
+1990-05-31T14:00:00,0.0418721556340153
+1990-05-31T15:00:00,0.04184371112637133
+1990-05-31T16:00:00,0.04181531837887392
+1990-05-31T17:00:00,0.041786977223916374
+1990-05-31T18:00:00,0.041758687494501075
+1990-05-31T19:00:00,0.04173044902423719
+1990-05-31T20:00:00,0.04170226164733843
+1990-05-31T21:00:00,0.041674125198620814
+1990-05-31T22:00:00,0.04164603951350041
+1990-05-31T23:00:00,0.04161800442799111
+1990-06-01T00:00:00,0.04159001977870242
+1990-06-01T01:00:00,0.04156208540283723
+1990-06-01T02:00:00,0.04153420113818962
+1990-06-01T03:00:00,0.04150636682314268
+1990-06-01T04:00:00,0.04156021320671199
+1990-06-01T05:00:00,0.047986953705115146
+1990-06-01T06:00:00,0.0541292740733759
+1990-06-01T07:00:00,0.054205520556297154
+1990-06-01T08:00:00,0.05428252436402461
+1990-06-01T09:00:00,0.044717354455117694
+1990-06-01T10:00:00,0.04471317601819513
+1990-06-01T11:00:00,0.04470903968941283
+1990-06-01T12:00:00,0.044704945388691554
+1990-06-01T13:00:00,0.04470089303607149
+1990-06-01T14:00:00,0.04469688255171179
+1990-06-01T15:00:00,0.044692913855889985
+1990-06-01T16:00:00,0.04468898686900155
+1990-06-01T17:00:00,0.04468510151155942
+1990-06-01T18:00:00,0.04468125770419345
+1990-06-01T19:00:00,0.04467745536765
+1990-06-01T20:00:00,0.04467369442279138
+1990-06-01T21:00:00,0.05431482318127743
+1990-06-01T22:00:00,0.054395754369250475
+1990-06-01T23:00:00,0.05447743587447492
+1990-06-02T00:00:00,0.05455986625017755
+1990-06-02T01:00:00,0.05720202403490282
+1990-06-02T02:00:00,0.05777920513836255
+1990-06-02T03:00:00,0.05789203330638487
+1990-06-02T04:00:00,0.0580060623490413
+1990-06-02T05:00:00,0.05812128939157492
+1990-06-02T06:00:00,0.05823771144465514
+1990-06-02T07:00:00,0.05835532540614308
+1990-06-02T08:00:00,0.05847412806286311
+1990-06-02T09:00:00,0.05270010586312264
+1990-06-02T10:00:00,0.05276298461693356
+1990-06-02T11:00:00,0.052826266536892125
+1990-06-02T12:00:00,0.05288995055712882
+1990-06-02T13:00:00,0.05295403559781324
+1990-06-02T14:00:00,0.053018520565331836
+1990-06-02T15:00:00,0.05308340435246546
+1990-06-02T16:00:00,0.0531486858385668
+1990-06-02T17:00:00,0.05321436388973756
+1990-06-02T18:00:00,0.05328043735900549
+1990-06-02T19:00:00,0.05334690508650114
+1990-06-02T20:00:00,0.05341376589963434
+1990-06-02T21:00:00,0.05937916348254794
+1990-06-02T22:00:00,0.05950921794508481
+1990-06-02T23:00:00,0.05964042174094771
+1990-06-03T00:00:00,0.059772770497927424
+1990-06-03T01:00:00,0.06314461181504524
+1990-06-03T02:00:00,0.06334774678217983
+1990-06-03T03:00:00,0.06352012524229773
+1990-06-03T04:00:00,0.06369422664101539
+1990-06-03T05:00:00,0.06387004291465602
+1990-06-03T06:00:00,0.0640475658251765
+1990-06-03T07:00:00,0.06422678696458689
+1990-06-03T08:00:00,0.06440769775935226
+1990-06-03T09:00:00,0.05894752343788285
+1990-06-03T10:00:00,0.059064693255450926
+1990-06-03T11:00:00,0.05918260571823281
+1990-06-03T12:00:00,0.05930125739123953
+1990-06-03T13:00:00,0.05942064480732658
+1990-06-03T14:00:00,0.05954076446794185
+1990-06-03T15:00:00,0.059661612843869026
+1990-06-03T16:00:00,0.059783186375966704
+1990-06-03T17:00:00,0.05990548147590277
+1990-06-03T18:00:00,0.060028494526884205
+1990-06-03T19:00:00,0.06015222188438195
+1990-06-03T20:00:00,0.06027665987685105
+1990-06-03T21:00:00,0.06604981773266191
+1990-06-03T22:00:00,0.06624796984699656
+1990-06-03T23:00:00,0.06644770413193636
+1990-06-04T00:00:00,0.06664901029517634
+1990-06-04T01:00:00,0.04794866481696324
+1990-06-04T02:00:00,0.0479045343312087
+1990-06-04T03:00:00,0.04786051047674604
+1990-06-04T04:00:00,0.04781659288385053
+1990-06-04T05:00:00,0.047772781184161936
+1990-06-04T06:00:00,0.04772907501067946
+1990-06-04T07:00:00,0.04768547399775661
+1990-06-04T08:00:00,0.04764197778109612
+1990-06-04T09:00:00,0.04759858599774492
+1990-06-04T10:00:00,0.04755529828608907
+1990-06-04T11:00:00,0.04751211428584874
+1990-06-04T12:00:00,0.04746903363807321
+1990-06-04T13:00:00,0.04742605598513592
+1990-06-04T14:00:00,0.04738318097072943
+1990-06-04T15:00:00,0.04734040823986054
+1990-06-04T16:00:00,0.04729773743884535
+1990-06-04T17:00:00,0.04725516821530435
+1990-06-04T18:00:00,0.0472127002181575
+1990-06-04T19:00:00,0.04717033309761939
+1990-06-04T20:00:00,0.047128066505194396
+1990-06-04T21:00:00,0.047085900093671806
+1990-06-04T22:00:00,0.04704383351712107
+1990-06-04T23:00:00,0.04700186643088692
+1990-06-05T00:00:00,0.04695999849158466
+1990-06-05T01:00:00,0.04691822935709534
+1990-06-05T02:00:00,0.046876558686561084
+1990-06-05T03:00:00,0.046834986140380334
+1990-06-05T04:00:00,0.04679351138020311
+1990-06-05T05:00:00,0.04675213406892635
+1990-06-05T06:00:00,0.04671085387068925
+1990-06-05T07:00:00,0.04672774861319118
+1990-06-05T08:00:00,0.04676457072042384
+1990-06-05T09:00:00,0.04672324808636571
+1990-06-05T10:00:00,0.046682022385605294
+1990-06-05T11:00:00,0.046640893284177774
+1990-06-05T12:00:00,0.04659986044934881
+1990-06-05T13:00:00,0.04655892354960994
+1990-06-05T14:00:00,0.04651808225467399
+1990-06-05T15:00:00,0.04647733623547053
+1990-06-05T16:00:00,0.04643668516414123
+1990-06-05T17:00:00,0.0463961287140354
+1990-06-05T18:00:00,0.04635566655970545
+1990-06-05T19:00:00,0.046315298376902375
+1990-06-05T20:00:00,0.046275023842571254
+1990-06-05T21:00:00,0.04623484263484681
+1990-06-05T22:00:00,0.04626126979018233
+1990-06-05T23:00:00,0.04903137202415846
+1990-06-06T00:00:00,0.05238026520571053
+1990-06-06T01:00:00,0.04646943498210274
+1990-06-06T02:00:00,0.04672471318848471
+1990-06-06T03:00:00,0.04669049680738291
+1990-06-06T04:00:00,0.046656359301281314
+1990-06-06T05:00:00,0.046622300401786144
+1990-06-06T06:00:00,0.04658831984149
+1990-06-06T07:00:00,0.046554417353968244
+1990-06-06T08:00:00,0.046520592673775264
+1990-06-06T09:00:00,0.046020771503853336
+1990-06-06T10:00:00,0.04598114471296655
+1990-06-06T11:00:00,0.045941609046173004
+1990-06-06T12:00:00,0.045902164190890944
+1990-06-06T13:00:00,0.04586280983568899
+1990-06-06T14:00:00,0.04582354567028189
+1990-06-06T15:00:00,0.04578437138552623
+1990-06-06T16:00:00,0.045745286673416104
+1990-06-06T17:00:00,0.045706291227078914
+1990-06-06T18:00:00,0.04566738474077111
+1990-06-06T19:00:00,0.045628566909873956
+1990-06-06T20:00:00,0.04558983743088934
+1990-06-06T21:00:00,0.045551196001435534
+1990-06-06T22:00:00,0.0455126423202431
+1990-06-06T23:00:00,0.045474176087150625
+1990-06-07T00:00:00,0.04543579700310066
+1990-06-07T01:00:00,0.050138439008169305
+1990-06-07T02:00:00,0.09142687633770441
+1990-06-07T03:00:00,0.09198303327568319
+1990-06-07T04:00:00,0.09255014755559515
+1990-06-07T05:00:00,0.0931280833261606
+1990-06-07T06:00:00,0.09371670136340814
+1990-06-07T07:00:00,0.09431585932721752
+1990-06-07T08:00:00,0.09492541201675722
+1990-06-07T09:00:00,0.09136741300507956
+1990-06-07T10:00:00,0.0919345798143387
+1990-06-07T11:00:00,0.09250984887502922
+1990-06-07T12:00:00,0.09309310334703737
+1990-06-07T13:00:00,0.09368422526902068
+1990-06-07T14:00:00,0.09428309569930679
+1990-06-07T15:00:00,0.09488959485271262
+1990-06-07T16:00:00,0.09550360223310686
+1990-06-07T17:00:00,0.09612499676157814
+1990-06-07T18:00:00,0.09675365690010553
+1990-06-07T19:00:00,0.09738946077065924
+1990-06-07T20:00:00,0.09803228626968523
+1990-06-07T21:00:00,0.10287066945933973
+1990-06-07T22:00:00,0.10360047776338226
+1990-06-07T23:00:00,0.10433849770346704
+1990-06-08T00:00:00,0.10508456805312444
+1990-06-08T01:00:00,0.06887071243659043
+1990-06-08T02:00:00,0.0688860242314987
+1990-06-08T03:00:00,0.06897502796993933
+1990-06-08T04:00:00,0.06906418143189434
+1990-06-08T05:00:00,0.0691534833733977
+1990-06-08T06:00:00,0.06924293255395508
+1990-06-08T07:00:00,0.06933252773656898
+1990-06-08T08:00:00,0.06942226768776363
+1990-06-08T09:00:00,0.06471941573560445
+1990-06-08T10:00:00,0.06472192934475585
+1990-06-08T11:00:00,0.06472453238238342
+1990-06-08T12:00:00,0.0647272244930876
+1990-06-08T13:00:00,0.06473000532267531
+1990-06-08T14:00:00,0.0647328745181561
+1990-06-08T15:00:00,0.06473583172773804
+1990-06-08T16:00:00,0.06473887660082381
+1990-06-08T17:00:00,0.06474200878800673
+1990-06-08T18:00:00,0.06474522794106691
+1990-06-08T19:00:00,0.06474853371296721
+1990-06-08T20:00:00,0.06475192575784935
+1990-06-08T21:00:00,0.0695490690257169
+1990-06-08T22:00:00,0.06964106853072574
+1990-06-08T23:00:00,0.06973319885645153
+1990-06-09T00:00:00,0.06982545881394903
+1990-06-09T01:00:00,0.07753374168915106
+1990-06-09T02:00:00,0.07791182851494613
+1990-06-09T03:00:00,0.07814967506963094
+1990-06-09T04:00:00,0.07838812592145417
+1990-06-09T05:00:00,0.07862717328683938
+1990-06-09T06:00:00,0.07886680941511356
+1990-06-09T07:00:00,0.07910702658903628
+1990-06-09T08:00:00,0.07934781712531233
+1990-06-09T09:00:00,0.07594091903518062
+1990-06-09T10:00:00,0.07611276424502167
+1990-06-09T11:00:00,0.07628489249586128
+1990-06-09T12:00:00,0.07645730024637783
+1990-06-09T13:00:00,0.07662998397025728
+1990-06-09T14:00:00,0.07680294015630866
+1990-06-09T15:00:00,0.07697616530857619
+1990-06-09T16:00:00,0.0771496559464479
+1990-06-09T17:00:00,0.07732340860476063
+1990-06-09T18:00:00,0.07749741983390175
+1990-06-09T19:00:00,0.0776716861999074
+1990-06-09T20:00:00,0.0778462042845574
+1990-06-09T21:00:00,0.08167145471192595
+1990-06-09T22:00:00,0.08191873613379028
+1990-06-09T23:00:00,0.082166498018179
+1990-06-10T00:00:00,0.08241473316986293
+1990-06-10T01:00:00,0.06809101997701952
+1990-06-10T02:00:00,0.06786044424163451
+1990-06-10T03:00:00,0.06781460297499213
+1990-06-10T04:00:00,0.06776892452331222
+1990-06-10T05:00:00,0.06772340830128232
+1990-06-10T06:00:00,0.06767805372576757
+1990-06-10T07:00:00,0.06763286021580259
+1990-06-10T08:00:00,0.06758782719258316
+1990-06-10T09:00:00,0.06546382127573988
+1990-06-10T10:00:00,0.06537759572661361
+1990-06-10T11:00:00,0.06529162326543239
+1990-06-10T12:00:00,0.0652059029791772
+1990-06-10T13:00:00,0.06512043395824249
+1990-06-10T14:00:00,0.06503521529642325
+1990-06-10T15:00:00,0.06495024609090207
+1990-06-10T16:00:00,0.06486552544223632
+1990-06-10T17:00:00,0.06478105245434543
+1990-06-10T18:00:00,0.06469682623449809
+1990-06-10T19:00:00,0.06461284589329955
+1990-06-10T20:00:00,0.06452911054467904
+1990-06-10T21:00:00,0.0644456193058772
+1990-06-10T22:00:00,0.0643623712974334
+1990-06-10T23:00:00,0.06427936564317342
+1990-06-11T00:00:00,0.06419660147019692
+1990-06-11T01:00:00,0.064114077908865
+1990-06-11T02:00:00,0.06403179409278796
+1990-06-11T03:00:00,0.06394974915881287
+1990-06-11T04:00:00,0.06386794224701145
+1990-06-11T05:00:00,0.06378637250066777
+1990-06-11T06:00:00,0.06370503906626605
+1990-06-11T07:00:00,0.06362394109347871
+1990-06-11T08:00:00,0.06354307773515412
+1990-06-11T09:00:00,0.06346244814730469
+1990-06-11T10:00:00,0.06338205148909482
+1990-06-11T11:00:00,0.06330188692282905
+1990-06-11T12:00:00,0.06322195361394012
+1990-06-11T13:00:00,0.06314225073097711
+1990-06-11T14:00:00,0.0630627774455937
+1990-06-11T15:00:00,0.0629835329325364
+1990-06-11T16:00:00,0.06290451636963285
+1990-06-11T17:00:00,0.0628257269377801
+1990-06-11T18:00:00,0.06274716382093312
+1990-06-11T19:00:00,0.06266882620609314
+1990-06-11T20:00:00,0.06259071328329607
+1990-06-11T21:00:00,0.0625128242456012
+1990-06-11T22:00:00,0.062435158289079556
+1990-06-11T23:00:00,0.06235771461280267
+1990-06-12T00:00:00,0.06228049241883111
+1990-06-12T01:00:00,0.06220349091220324
+1990-06-12T02:00:00,0.062126709300923934
+1990-06-12T03:00:00,0.06205014679595337
+1990-06-12T04:00:00,0.0620128013948786
+1990-06-12T05:00:00,0.0621420694744105
+1990-06-12T06:00:00,0.06946253540096697
+1990-06-12T07:00:00,0.07299164500488606
+1990-06-12T08:00:00,0.07312140876364327
+1990-06-12T09:00:00,0.06709772457078
+1990-06-12T10:00:00,0.06710954996860423
+1990-06-12T11:00:00,0.06712144939644211
+1990-06-12T12:00:00,0.06713342253048019
+1990-06-12T13:00:00,0.06714546904800561
+1990-06-12T14:00:00,0.06715758862740293
+1990-06-12T15:00:00,0.06716978094815068
+1990-06-12T16:00:00,0.0671820456908181
+1990-06-12T17:00:00,0.0671943825370618
+1990-06-12T18:00:00,0.06720679116962253
+1990-06-12T19:00:00,0.06721927127232183
+1990-06-12T20:00:00,0.06723182253005873
+1990-06-12T21:00:00,0.07339927193493079
+1990-06-12T22:00:00,0.07353143247107388
+1990-06-12T23:00:00,0.07366373749411187
+1990-06-13T00:00:00,0.07379618513176144
+1990-06-13T01:00:00,0.06312695235508674
+1990-06-13T02:00:00,0.0630484848236224
+1990-06-13T03:00:00,0.06297024193311292
+1990-06-13T04:00:00,0.06289222287703349
+1990-06-13T05:00:00,0.06281442685186948
+1990-06-13T06:00:00,0.06273685305710502
+1990-06-13T07:00:00,0.0626595006952117
+1990-06-13T08:00:00,0.06258236897163719
+1990-06-13T09:00:00,0.06250545709479405
+1990-06-13T10:00:00,0.062428764276048494
+1990-06-13T11:00:00,0.06235228972970922
+1990-06-13T12:00:00,0.0622760326730163
+1990-06-13T13:00:00,0.06219999232613004
+1990-06-13T14:00:00,0.062124167912119964
+1990-06-13T15:00:00,0.062048558656953856
+1990-06-13T16:00:00,0.06197316378948675
+1990-06-13T17:00:00,0.06189798254144997
+1990-06-13T18:00:00,0.06182301414744039
+1990-06-13T19:00:00,0.06174825784490944
+1990-06-13T20:00:00,0.06167371287415244
+1990-06-13T21:00:00,0.06159937847829778
+1990-06-13T22:00:00,0.0615252539032962
+1990-06-13T23:00:00,0.06145133839791019
+1990-06-14T00:00:00,0.061377631213703286
+1990-06-14T01:00:00,0.0613041316050295
+1990-06-14T02:00:00,0.06123083882902281
+1990-06-14T03:00:00,0.061157752145586615
+1990-06-14T04:00:00,0.06108487081738326
+1990-06-14T05:00:00,0.061012194109823684
+1990-06-14T06:00:00,0.06093972129105689
+1990-06-14T07:00:00,0.060867451631959724
+1990-06-14T08:00:00,0.06079538440612653
+1990-06-14T09:00:00,0.06072351888985887
+1990-06-14T10:00:00,0.0606518543621553
+1990-06-14T11:00:00,0.06058039010470115
+1990-06-14T12:00:00,0.060509125401858425
+1990-06-14T13:00:00,0.06043805954065564
+1990-06-14T14:00:00,0.060367191810777814
+1990-06-14T15:00:00,0.06029652150455635
+1990-06-14T16:00:00,0.06022604791695909
+1990-06-14T17:00:00,0.06015577034558037
+1990-06-14T18:00:00,0.06008568809063102
+1990-06-14T19:00:00,0.06001580045492859
+1990-06-14T20:00:00,0.05994610674388739
+1990-06-14T21:00:00,0.059876606265508794
+1990-06-14T22:00:00,0.05980729833037135
+1990-06-14T23:00:00,0.05973818225162119
+1990-06-15T00:00:00,0.05966925734496218
+1990-06-15T01:00:00,0.059600522928646364
+1990-06-15T02:00:00,0.05953197832346433
+1990-06-15T03:00:00,0.05946362285273558
+1990-06-15T04:00:00,0.059395455842298994
+1990-06-15T05:00:00,0.059327476620503375
+1990-06-15T06:00:00,0.059259684518197894
+1990-06-15T07:00:00,0.05919207886872272
+1990-06-15T08:00:00,0.05912465900789951
+1990-06-15T09:00:00,0.05905742427402219
+1990-06-15T10:00:00,0.05899037400784749
+1990-06-15T11:00:00,0.05892350755258572
+1990-06-15T12:00:00,0.05885682425389149
+1990-06-15T13:00:00,0.05879032345985448
+1990-06-15T14:00:00,0.05872400452099023
+1990-06-15T15:00:00,0.05865786679023106
+1990-06-15T16:00:00,0.05859190962291684
+1990-06-15T17:00:00,0.058526132376786
+1990-06-15T18:00:00,0.0584605344119664
+1990-06-15T19:00:00,0.058395115090966385
+1990-06-15T20:00:00,0.058329873778665754
+1990-06-15T21:00:00,0.05826480984230682
+1990-06-15T22:00:00,0.05819992265148552
+1990-06-15T23:00:00,0.0581352115781425
+1990-06-16T00:00:00,0.0580706759965543
+1990-06-16T01:00:00,0.05800631528332452
+1990-06-16T02:00:00,0.057942128817375045
+1990-06-16T03:00:00,0.05787811597993733
+1990-06-16T04:00:00,0.05781427615454362
+1990-06-16T05:00:00,0.05775060872701835
+1990-06-16T06:00:00,0.05768711308546944
+1990-06-16T07:00:00,0.057623788620279726
+1990-06-16T08:00:00,0.05756063472409835
+1990-06-16T09:00:00,0.057497650791832215
+1990-06-16T10:00:00,0.05743483622063747
+1990-06-16T11:00:00,0.05737219040991105
+1990-06-16T12:00:00,0.05730971276128223
+1990-06-16T13:00:00,0.05724740267860416
+1990-06-16T14:00:00,0.057185259567945505
+1990-06-16T15:00:00,0.05712328283758214
+1990-06-16T16:00:00,0.057061471897988734
+1990-06-16T17:00:00,0.056999826161830525
+1990-06-16T18:00:00,0.05693834504395507
+1990-06-16T19:00:00,0.05687702796138396
+1990-06-16T20:00:00,0.056815874333304685
+1990-06-16T21:00:00,0.05675488358106245
+1990-06-16T22:00:00,0.056694055128151996
+1990-06-16T23:00:00,0.056633388400209594
+1990-06-17T00:00:00,0.05657288282500486
+1990-06-17T01:00:00,0.05651253783243284
+1990-06-17T02:00:00,0.05645235285450585
+1990-06-17T03:00:00,0.05639232732534567
+1990-06-17T04:00:00,0.05633246068117543
+1990-06-17T05:00:00,0.056272752360311803
+1990-06-17T06:00:00,0.0562132018031571
+1990-06-17T07:00:00,0.056153808452191326
+1990-06-17T08:00:00,0.05609457175196448
+1990-06-17T09:00:00,0.05603549114908866
+1990-06-17T10:00:00,0.05597656609223032
+1990-06-17T11:00:00,0.05591779603210257
+1990-06-17T12:00:00,0.05585918042145743
+1990-06-17T13:00:00,0.055800718715078135
+1990-06-17T14:00:00,0.05574241036977148
+1990-06-17T15:00:00,0.05568425484436029
+1990-06-17T16:00:00,0.0556262515996757
+1990-06-17T17:00:00,0.055568400098549645
+1990-06-17T18:00:00,0.05551069980580737
+1990-06-17T19:00:00,0.055453150188259845
+1990-06-17T20:00:00,0.05539575071469635
+1990-06-17T21:00:00,0.05533850085587695
+1990-06-17T22:00:00,0.05528140008452521
+1990-06-17T23:00:00,0.05522444787532061
+1990-06-18T00:00:00,0.05516764370489136
+1990-06-18T01:00:00,0.05511098705180695
+1990-06-18T02:00:00,0.05505447739657089
+1990-06-18T03:00:00,0.05499811422161342
+1990-06-18T04:00:00,0.054941897011284255
+1990-06-18T05:00:00,0.05488582525184534
+1990-06-18T06:00:00,0.0548298984314637
+1990-06-18T07:00:00,0.05481888839546334
+1990-06-18T08:00:00,0.0548356587974345
+1990-06-18T09:00:00,0.054779873724302944
+1990-06-18T10:00:00,0.05472423257440826
+1990-06-18T11:00:00,0.054668734841584896
+1990-06-18T12:00:00,0.05461338002154385
+1990-06-18T13:00:00,0.054558167611865604
+1990-06-18T14:00:00,0.05450309711199311
+1990-06-18T15:00:00,0.05444816802322472
+1990-06-18T16:00:00,0.05439337984870728
+1990-06-18T17:00:00,0.05433873209342912
+1990-06-18T18:00:00,0.054284224264213136
+1990-06-18T19:00:00,0.05422985586970993
+1990-06-18T20:00:00,0.05417562642039085
+1990-06-18T21:00:00,0.054121535428541215
+1990-06-18T22:00:00,0.05409214373044899
+1990-06-18T23:00:00,0.054110558329973475
+1990-06-19T00:00:00,0.05440695760631978
+1990-06-19T01:00:00,0.07406079927715918
+1990-06-19T02:00:00,0.0737697390002664
+1990-06-19T03:00:00,0.07401215137548048
+1990-06-19T04:00:00,0.07425600518500305
+1990-06-19T05:00:00,0.07450128703986753
+1990-06-19T06:00:00,0.07474798351625994
+1990-06-19T07:00:00,0.07499608115897337
+1990-06-19T08:00:00,0.0752455664848007
+1990-06-19T09:00:00,0.06518175423367613
+1990-06-19T10:00:00,0.06526869640795799
+1990-06-19T11:00:00,0.06535585461447864
+1990-06-19T12:00:00,0.06544322740649294
+1990-06-19T13:00:00,0.06553081333843597
+1990-06-19T14:00:00,0.06561861096598874
+1990-06-19T15:00:00,0.0657066188461435
+1990-06-19T16:00:00,0.0657948355372681
+1990-06-19T17:00:00,0.06588325959916963
+1990-06-19T18:00:00,0.06597188959315746
+1990-06-19T19:00:00,0.06606072408210537
+1990-06-19T20:00:00,0.06614976163051312
+1990-06-19T21:00:00,0.07655933668975591
+1990-06-19T22:00:00,0.07681965980604759
+1990-06-19T23:00:00,0.07708125428524924
+1990-06-20T00:00:00,0.07734410649048475
+1990-06-20T01:00:00,0.07855849752474348
+1990-06-20T02:00:00,0.07956392465886529
+1990-06-20T03:00:00,0.07985915350771328
+1990-06-20T04:00:00,0.08015584953754434
+1990-06-20T05:00:00,0.0804539954205343
+1990-06-20T06:00:00,0.08075357385096929
+1990-06-20T07:00:00,0.08105456754880434
+1990-06-20T08:00:00,0.08135695926313069
+1990-06-20T09:00:00,0.07712361448894736
+1990-06-20T10:00:00,0.0773480924969814
+1990-06-20T11:00:00,0.0775733104958201
+1990-06-20T12:00:00,0.07779926015897971
+1990-06-20T13:00:00,0.07802593318083127
+1990-06-20T14:00:00,0.07825332127748183
+1990-06-20T15:00:00,0.07848141618763467
+1990-06-20T16:00:00,0.07871020967342869
+1990-06-20T17:00:00,0.07893969352125726
+1990-06-20T18:00:00,0.07916985954256665
+1990-06-20T19:00:00,0.07940069957463435
+1990-06-20T20:00:00,0.07963220548132746
+1990-06-20T21:00:00,0.08440558710114887
+1990-06-20T22:00:00,0.08472309862212737
+1990-06-20T23:00:00,0.08504179783179187
+1990-06-21T00:00:00,0.08536166814047269
+1990-06-21T01:00:00,0.07983296981104726
+1990-06-21T02:00:00,0.07971024705011602
+1990-06-21T03:00:00,0.0799153914543719
+1990-06-21T04:00:00,0.0801209871558465
+1990-06-21T05:00:00,0.08032702845350186
+1990-06-21T06:00:00,0.0805335096695875
+1990-06-21T07:00:00,0.08074042514995522
+1990-06-21T08:00:00,0.08094776926436438
+1990-06-21T09:00:00,0.0739393647083618
+1990-06-21T10:00:00,0.07400740929915248
+1990-06-21T11:00:00,0.07407554665191375
+1990-06-21T12:00:00,0.07414377598127704
+1990-06-21T13:00:00,0.07421209650461874
+1990-06-21T14:00:00,0.07428050744206362
+1990-06-21T15:00:00,0.07434900801648817
+1990-06-21T16:00:00,0.07441759745352382
+1990-06-21T17:00:00,0.07448627498155988
+1990-06-21T18:00:00,0.07455503983174655
+1990-06-21T19:00:00,0.07462389123799765
+1990-06-21T20:00:00,0.07469282843699318
+1990-06-21T21:00:00,0.08198059040479
+1990-06-21T22:00:00,0.08219237797096025
+1990-06-21T23:00:00,0.08240454132589416
+1990-06-22T00:00:00,0.08261707509001238
+1990-06-22T01:00:00,0.06975599170831907
+1990-06-22T02:00:00,0.0698853507806867
+1990-06-22T03:00:00,0.06984126256961336
+1990-06-22T04:00:00,0.06979733005799194
+1990-06-22T05:00:00,0.06975355268798666
+1990-06-22T06:00:00,0.06970992990383386
+1990-06-22T07:00:00,0.06966646115183409
+1990-06-22T08:00:00,0.06962314588034431
+1990-06-22T09:00:00,0.06744537951388624
+1990-06-22T10:00:00,0.06735979543380245
+1990-06-22T11:00:00,0.06727445871912914
+1990-06-22T12:00:00,0.06718936847971801
+1990-06-22T13:00:00,0.06710452382874692
+1990-06-22T14:00:00,0.06701992388270729
+1990-06-22T15:00:00,0.06693556776139166
+1990-06-22T16:00:00,0.06685145458788104
+1990-06-22T17:00:00,0.06676758348853254
+1990-06-22T18:00:00,0.06668395359296692
+1990-06-22T19:00:00,0.0666005640340563
+1990-06-22T20:00:00,0.06651741394791182
+1990-06-22T21:00:00,0.06643450247387128
+1990-06-22T22:00:00,0.06635182875448711
+1990-06-22T23:00:00,0.06626939193551405
+1990-06-23T00:00:00,0.06618719116589707
+1990-06-23T01:00:00,0.0661052255977593
+1990-06-23T02:00:00,0.06602349438639002
+1990-06-23T03:00:00,0.06594199669023262
+1990-06-23T04:00:00,0.06586073167087271
+1990-06-23T05:00:00,0.06577969849302623
+1990-06-23T06:00:00,0.06569889632452754
+1990-06-23T07:00:00,0.06561832433631767
+1990-06-23T08:00:00,0.06553798170243261
+1990-06-23T09:00:00,0.06545786759999148
+1990-06-23T10:00:00,0.06537798120918492
+1990-06-23T11:00:00,0.06529832171326355
+1990-06-23T12:00:00,0.06521888829852622
+1990-06-23T13:00:00,0.06513968015430861
+1990-06-23T14:00:00,0.06506069647297169
+1990-06-23T15:00:00,0.06498193644989034
+1990-06-23T16:00:00,0.0649033992834418
+1990-06-23T17:00:00,0.06482508417499447
+1990-06-23T18:00:00,0.0647469903288965
+1990-06-23T19:00:00,0.06466911695246455
+1990-06-23T20:00:00,0.06459146325597258
+1990-06-23T21:00:00,0.0645140284526406
+1990-06-23T22:00:00,0.06443681175862363
+1990-06-23T23:00:00,0.0643598123930005
+1990-06-24T00:00:00,0.06428302957776282
+1990-06-24T01:00:00,0.064206462537804
+1990-06-24T02:00:00,0.06413011050090826
+1990-06-24T03:00:00,0.06405397269773967
+1990-06-24T04:00:00,0.06397804836183131
+1990-06-24T05:00:00,0.06390233672957435
+1990-06-24T06:00:00,0.06382683704020733
+1990-06-24T07:00:00,0.06375154853580535
+1990-06-24T08:00:00,0.06367647046126931
+1990-06-24T09:00:00,0.0636016020643153
+1990-06-24T10:00:00,0.06352694259546392
+1990-06-24T11:00:00,0.06345249130802967
+1990-06-24T12:00:00,0.0633782474581104
+1990-06-24T13:00:00,0.06330421030457681
+1990-06-24T14:00:00,0.0632303791090619
+1990-06-24T15:00:00,0.06315675313595065
+1990-06-24T16:00:00,0.06308333165236951
+1990-06-24T17:00:00,0.06301011392817606
+1990-06-24T18:00:00,0.06293709923594873
+1990-06-24T19:00:00,0.0628642868509765
+1990-06-24T20:00:00,0.06279167605124863
+1990-06-24T21:00:00,0.06271926611744451
+1990-06-24T22:00:00,0.06264705633292345
+1990-06-24T23:00:00,0.06257504598371452
+1990-06-25T00:00:00,0.0625032343585066
+1990-06-25T01:00:00,0.062431620748638166
+1990-06-25T02:00:00,0.06236020444808744
+1990-06-25T03:00:00,0.06228898475346224
+1990-06-25T04:00:00,0.06221796096399022
+1990-06-25T05:00:00,0.062147132381508846
+1990-06-25T06:00:00,0.06207649831045564
+1990-06-25T07:00:00,0.062006058057858256
+1990-06-25T08:00:00,0.06193581093332477
+1990-06-25T09:00:00,0.06186575624903395
+1990-06-25T10:00:00,0.061795893319725445
+1990-06-25T11:00:00,0.06172622146269022
+1990-06-25T12:00:00,0.061656739997760904
+1990-06-25T13:00:00,0.06158744824730213
+1990-06-25T14:00:00,0.061518345536201044
+1990-06-25T15:00:00,0.06144943119185773
+1990-06-25T16:00:00,0.061380704544175754
+1990-06-25T17:00:00,0.06131216492555272
+1990-06-25T18:00:00,0.06124381167087082
+1990-06-25T19:00:00,0.06117564411748747
+1990-06-25T20:00:00,0.061107661605225995
+1990-06-25T21:00:00,0.061039863476366245
+1990-06-25T22:00:00,0.0609722490756354
+1990-06-25T23:00:00,0.06090481775019872
+1990-06-26T00:00:00,0.06083756884965032
+1990-06-26T01:00:00,0.06077050172600396
+1990-06-26T02:00:00,0.06070361573368404
+1990-06-26T03:00:00,0.06063691022951638
+1990-06-26T04:00:00,0.06057038457271922
+1990-06-26T05:00:00,0.06050403812489415
+1990-06-26T06:00:00,0.06043787025001717
+1990-06-26T07:00:00,0.0603718803144297
+1990-06-26T08:00:00,0.06030606768682964
+1990-06-26T09:00:00,0.06024043173826253
+1990-06-26T10:00:00,0.06017497184211262
+1990-06-26T11:00:00,0.060109687374094146
+1990-06-26T12:00:00,0.0600445777122424
+1990-06-26T13:00:00,0.05997964223690513
+1990-06-26T14:00:00,0.059914880330733715
+1990-06-26T15:00:00,0.05985029137867451
+1990-06-26T16:00:00,0.05978587476796015
+1990-06-26T17:00:00,0.05972162988810102
+1990-06-26T18:00:00,0.059657556130876574
+1990-06-26T19:00:00,0.0595936528903268
+1990-06-26T20:00:00,0.05952991956274373
+1990-06-26T21:00:00,0.05946635554666291
+1990-06-26T22:00:00,0.059402960242854956
+1990-06-26T23:00:00,0.05933973305431709
+1990-06-27T00:00:00,0.059276673386264835
+1990-06-27T01:00:00,0.059213780646123544
+1990-06-27T02:00:00,0.05915105424352015
+1990-06-27T03:00:00,0.05920732224373398
+1990-06-27T04:00:00,0.06703567032946624
+1990-06-27T05:00:00,0.07551265831374257
+1990-06-27T06:00:00,0.07569783517280483
+1990-06-27T07:00:00,0.07588397737621351
+1990-06-27T08:00:00,0.07607107705264357
+1990-06-27T09:00:00,0.0669433086370493
+1990-06-27T10:00:00,0.06698592382644514
+1990-06-27T11:00:00,0.06702868670378465
+1990-06-27T12:00:00,0.06707159653276673
+1990-06-27T13:00:00,0.06711465257809429
+1990-06-27T14:00:00,0.06715785410548707
+1990-06-27T15:00:00,0.06720120038169422
+1990-06-27T16:00:00,0.06724469067450686
+1990-06-27T17:00:00,0.06728832425277055
+1990-06-27T18:00:00,0.06733210038639757
+1990-06-27T19:00:00,0.06737601834637923
+1990-06-27T20:00:00,0.06742007740479791
+1990-06-27T21:00:00,0.07678400190111573
+1990-06-27T22:00:00,0.07697859119163572
+1990-06-27T23:00:00,0.07717407246987622
+1990-06-28T00:00:00,0.07737043774251962
+1990-06-28T01:00:00,0.061364538752057315
+1990-06-28T02:00:00,0.061296733544729844
+1990-06-28T03:00:00,0.061229111698000716
+1990-06-28T04:00:00,0.061161672560574906
+1990-06-28T05:00:00,0.06109441548358041
+1990-06-28T06:00:00,0.061027339820558975
+1990-06-28T07:00:00,0.06096044492745717
+1990-06-28T08:00:00,0.06089373016261715
+1990-06-28T09:00:00,0.06082719488676767
+1990-06-28T10:00:00,0.060760838463015124
+1990-06-28T11:00:00,0.06069466025683453
+1990-06-28T12:00:00,0.0606286596360606
+1990-06-28T13:00:00,0.06056283597087882
+1990-06-28T14:00:00,0.06049718863381661
+1990-06-28T15:00:00,0.0604317169997345
+1990-06-28T16:00:00,0.06036642044581726
+1990-06-28T17:00:00,0.06030129835156523
+1990-06-28T18:00:00,0.060236350098785495
+1990-06-28T19:00:00,0.06017157507158323
+1990-06-28T20:00:00,0.06010697265635304
+1990-06-28T21:00:00,0.0600425422417703
+1990-06-28T22:00:00,0.059978283218782555
+1990-06-28T23:00:00,0.059914194980600965
+1990-06-29T00:00:00,0.059850276922691764
+1990-06-29T01:00:00,0.05978652844276776
+1990-06-29T02:00:00,0.05972294894077983
+1990-06-29T03:00:00,0.05970595839207881
+1990-06-29T04:00:00,0.06111895141032705
+1990-06-29T05:00:00,0.07427752995297626
+1990-06-29T06:00:00,0.07444403589808399
+1990-06-29T07:00:00,0.07461123479912149
+1990-06-29T08:00:00,0.07477912090275689
+1990-06-29T09:00:00,0.06484937998384867
+1990-06-29T10:00:00,0.06485481043485014
+1990-06-29T11:00:00,0.06486033046174816
+1990-06-29T12:00:00,0.06486593972253417
+1990-06-29T13:00:00,0.0648716378761759
+1990-06-29T14:00:00,0.06487742458261497
+1990-06-29T15:00:00,0.06488329950276449
+1990-06-29T16:00:00,0.06488926229850663
+1990-06-29T17:00:00,0.06489531263269027
+1990-06-29T18:00:00,0.06490145016912859
+1990-06-29T19:00:00,0.06490767457259669
+1990-06-29T20:00:00,0.06491398550882926
+1990-06-29T21:00:00,0.07502121065215533
+1990-06-29T22:00:00,0.07519400730016347
+1990-06-29T23:00:00,0.07536745113238413
+1990-06-30T00:00:00,0.0755415363785926
+1990-06-30T01:00:00,0.07082972492264623
+1990-06-30T02:00:00,0.07095141924052603
+1990-06-30T03:00:00,0.07104548006464598
+1990-06-30T04:00:00,0.07113977362549274
+1990-06-30T05:00:00,0.07123429820802674
+1990-06-30T06:00:00,0.07132905209965208
+1990-06-30T07:00:00,0.07142403359029016
+1990-06-30T08:00:00,0.07151924097245238
+1990-06-30T09:00:00,0.061986772037994756
+1990-06-30T10:00:00,0.06191809061586205
+1990-06-30T11:00:00,0.06184959520629342
+1990-06-30T12:00:00,0.061781285148329174
+1990-06-30T13:00:00,0.061713159783469
+1990-06-30T14:00:00,0.061645218455662676
+1990-06-30T15:00:00,0.06157746051130077
+1990-06-30T16:00:00,0.06150988529920556
+1990-06-30T17:00:00,0.061442492170621706
+1990-06-30T18:00:00,0.06137528047920719
+1990-06-30T19:00:00,0.06130824958102422
+1990-06-30T20:00:00,0.06124139883453009
+1990-06-30T21:00:00,0.06787934772501462
+1990-06-30T22:00:00,0.0708778197088088
+1990-06-30T23:00:00,0.07097542966559137
+1990-07-01T00:00:00,0.0710732546588103
+1990-07-01T01:00:00,0.06154211472816112
+1990-07-01T02:00:00,0.06147475751873371
+1990-07-01T03:00:00,0.061407581548623386
+1990-07-01T04:00:00,0.061340586174659165
+1990-07-01T05:00:00,0.06127377075606229
+1990-07-01T06:00:00,0.06120713465443722
+1990-07-01T07:00:00,0.06114067723376259
+1990-07-01T08:00:00,0.06107439786038227
+1990-07-01T09:00:00,0.061008295902996466
+1990-07-01T10:00:00,0.06094237073265282
+1990-07-01T11:00:00,0.060876621722737514
+1990-07-01T12:00:00,0.0608110482489665
+1990-07-01T13:00:00,0.0607456496893767
+1990-07-01T14:00:00,0.06068042542431725
+1990-07-01T15:00:00,0.0606153748364407
+1990-07-01T16:00:00,0.06055049731069448
+1990-07-01T17:00:00,0.06048579223431213
+1990-07-01T18:00:00,0.06042125899680468
+1990-07-01T19:00:00,0.06035689698995213
+1990-07-01T20:00:00,0.06029270560779484
+1990-07-01T21:00:00,0.06022868424662498
+1990-07-01T22:00:00,0.06016483230497813
+1990-07-01T23:00:00,0.06010114918362474
+1990-07-02T00:00:00,0.06003763428556172
+1990-07-02T01:00:00,0.059974287016004074
+1990-07-02T02:00:00,0.0599111067823765
+1990-07-02T03:00:00,0.05984809299430509
+1990-07-02T04:00:00,0.05978524506360902
+1990-07-02T05:00:00,0.05972256240429226
+1990-07-02T06:00:00,0.05966004443253537
+1990-07-02T07:00:00,0.05959769056668729
+1990-07-02T08:00:00,0.05953550022725714
+1990-07-02T09:00:00,0.05947347283690611
+1990-07-02T10:00:00,0.05941160782043934
+1990-07-02T11:00:00,0.05934990460479782
+1990-07-02T12:00:00,0.05928836261905038
+1990-07-02T13:00:00,0.05922698129438561
+1990-07-02T14:00:00,0.059165760064103956
+1990-07-02T15:00:00,0.059104698363609674
+1990-07-02T16:00:00,0.059043795630402955
+1990-07-02T17:00:00,0.05898305130407203
+1990-07-02T18:00:00,0.05892246482628528
+1990-07-02T19:00:00,0.058862035640783385
+1990-07-02T20:00:00,0.05880176319337159
+1990-07-02T21:00:00,0.05874164693191181
+1990-07-02T22:00:00,0.058681686306315026
+1990-07-02T23:00:00,0.0586218807685334
+1990-07-03T00:00:00,0.05856222977255275
+1990-07-03T01:00:00,0.05850273277438477
+1990-07-03T02:00:00,0.058650434083525535
+1990-07-03T03:00:00,0.07695828080673942
+1990-07-03T04:00:00,0.08062046168278143
+1990-07-03T05:00:00,0.08091596002637305
+1990-07-03T06:00:00,0.08121318524260054
+1990-07-03T07:00:00,0.08151211795787403
+1990-07-03T08:00:00,0.08271407127898381
+1990-07-03T09:00:00,0.08035736189737011
+1990-07-03T10:00:00,0.0806311803334397
+1990-07-03T11:00:00,0.0809063283279197
+1990-07-03T12:00:00,0.08118279080227168
+1990-07-03T13:00:00,0.08146055269138527
+1990-07-03T14:00:00,0.08173959894653773
+1990-07-03T15:00:00,0.08201991453828401
+1990-07-03T16:00:00,0.0823014844592776
+1990-07-03T17:00:00,0.08258429372702271
+1990-07-03T18:00:00,0.08286832738655862
+1990-07-03T19:00:00,0.08315357051307624
+1990-07-03T20:00:00,0.08253760391625328
+1990-07-03T21:00:00,0.08548630330863682
+1990-07-03T22:00:00,0.08580725685650771
+1990-07-03T23:00:00,0.0861296286934769
+1990-07-04T00:00:00,0.0864533998383783
+1990-07-04T01:00:00,0.0842467639078611
+1990-07-04T02:00:00,0.08401939332139255
+1990-07-04T03:00:00,0.0842905274904532
+1990-07-04T04:00:00,0.08456257183924736
+1990-07-04T05:00:00,0.08483551446277833
+1990-07-04T06:00:00,0.08510934350002639
+1990-07-04T07:00:00,0.0853840471352773
+1990-07-04T08:00:00,0.08645959211484493
+1990-07-04T09:00:00,0.08001308117951496
+1990-07-04T10:00:00,0.08017672150857211
+1990-07-04T11:00:00,0.08034066527934418
+1990-07-04T12:00:00,0.08050490887855198
+1990-07-04T13:00:00,0.08066944870659783
+1990-07-04T14:00:00,0.08083428117771266
+1990-07-04T15:00:00,0.08099940272009934
+1990-07-04T16:00:00,0.08116480977607214
+1990-07-04T17:00:00,0.08133049880219242
+1990-07-04T18:00:00,0.08149646626940057
+1990-07-04T19:00:00,0.08166270866314437
+1990-07-04T20:00:00,0.0810287140177844
+1990-07-04T21:00:00,0.08792218925353391
+1990-07-04T22:00:00,0.08820656562640382
+1990-07-04T23:00:00,0.08849167614075606
+1990-07-05T00:00:00,0.08877750966479606
+1990-07-05T01:00:00,0.10241063736610767
+1990-07-05T02:00:00,0.10325109826046487
+1990-07-05T03:00:00,0.10381543416898532
+1990-07-05T04:00:00,0.10438250149435882
+1990-07-05T05:00:00,0.10495224451626765
+1990-07-05T06:00:00,0.10552460801113851
+1990-07-05T07:00:00,0.10609953726137668
+1990-07-05T08:00:00,0.10956171574137044
+1990-07-05T09:00:00,0.10779728390105867
+1990-07-05T10:00:00,0.11040688747942164
+1990-07-05T11:00:00,0.11301183826894313
+1990-07-05T12:00:00,0.11561199413043305
+1990-07-05T13:00:00,0.11820721566778644
+1990-07-05T14:00:00,0.12079736621877461
+1990-07-05T15:00:00,0.12338231184462643
+1990-07-05T16:00:00,0.12596192131844897
+1990-07-05T17:00:00,0.12853606611253454
+1990-07-05T18:00:00,0.13110462038460183
+1990-07-05T19:00:00,0.1336674609630173
+1990-07-05T20:00:00,0.13475049304652342
+1990-07-05T21:00:00,0.1420422888086888
+1990-07-05T22:00:00,0.1449496623675171
+1990-07-05T23:00:00,0.14785098610649083
+1990-07-06T00:00:00,0.15074609298496813
+1990-07-06T01:00:00,0.1180597325248779
+1990-07-06T02:00:00,0.1171409350074892
+1990-07-06T03:00:00,0.11622916015142994
+1990-07-06T04:00:00,0.11532435405312383
+1990-07-06T05:00:00,0.1144264632255104
+1990-07-06T06:00:00,0.11353543459480404
+1990-07-06T07:00:00,0.11265121549727819
+1990-07-06T08:00:00,0.1117737536760747
+1990-07-06T09:00:00,0.11090299727803843
+1990-07-06T10:00:00,0.11003889485057632
+1990-07-06T11:00:00,0.10918139533854118
+1990-07-06T12:00:00,0.10833044808113985
+1990-07-06T13:00:00,0.10748600280886564
+1990-07-06T14:00:00,0.10664800964045455
+1990-07-06T15:00:00,0.10581641907986565
+1990-07-06T16:00:00,0.10499118201328472
+1990-07-06T17:00:00,0.10417224970615165
+1990-07-06T18:00:00,0.10335957380021088
+1990-07-06T19:00:00,0.10255310631058506
+1990-07-06T20:00:00,0.10175279962287148
+1990-07-06T21:00:00,0.10095860649026131
+1990-07-06T22:00:00,0.10017048003068141
+1990-07-06T23:00:00,0.09938837372395846
+1990-07-07T00:00:00,0.09861224140900508
+1990-07-07T01:00:00,0.09784203728102842
+1990-07-07T02:00:00,0.09707771588875996
+1990-07-07T03:00:00,0.09779041078028251
+1990-07-07T04:00:00,0.11413994237767915
+1990-07-07T05:00:00,0.11558236984026712
+1990-07-07T06:00:00,0.11666546054862229
+1990-07-07T07:00:00,0.11774430916783013
+1990-07-07T08:00:00,0.11956620019414832
+1990-07-07T09:00:00,0.1141119689114021
+1990-07-07T10:00:00,0.11455282269916345
+1990-07-07T11:00:00,0.11499212392500385
+1990-07-07T12:00:00,0.11542987740294947
+1990-07-07T13:00:00,0.1158660879386841
+1990-07-07T14:00:00,0.11630076032959608
+1990-07-07T15:00:00,0.11673389936482327
+1990-07-07T16:00:00,0.11716550982529589
+1990-07-07T17:00:00,0.11759559648377745
+1990-07-07T18:00:00,0.11802416410490373
+1990-07-07T19:00:00,0.11845121744521994
+1990-07-07T20:00:00,0.1181282462190332
+1990-07-07T21:00:00,0.12508613197091864
+1990-07-07T22:00:00,0.12614303781447775
+1990-07-07T23:00:00,0.12719561591825312
+1990-07-08T00:00:00,0.1282438760737245
+1990-07-08T01:00:00,0.11176049942109059
+1990-07-08T02:00:00,0.11089679310702288
+1990-07-08T03:00:00,0.11003968376134977
+1990-07-08T04:00:00,0.10918912077043212
+1990-07-08T05:00:00,0.10834505391154996
+1990-07-08T06:00:00,0.1075074333498617
+1990-07-08T07:00:00,0.10667620963538699
+1990-07-08T08:00:00,0.10585133370001375
+1990-07-08T09:00:00,0.1050327568545278
+1990-07-08T10:00:00,0.1042204307856665
+1990-07-08T11:00:00,0.10341430755319489
+1990-07-08T12:00:00,0.10261433958700517
+1990-07-08T13:00:00,0.10182047968423835
+1990-07-08T14:00:00,0.10103268100642908
+1990-07-08T15:00:00,0.10025089707667202
+1990-07-08T16:00:00,0.099475081776811
+1990-07-08T17:00:00,0.09870518934465006
+1990-07-08T18:00:00,0.097941174371186
+1990-07-08T19:00:00,0.09718299179786301
+1990-07-08T20:00:00,0.0964305969138483
+1990-07-08T21:00:00,0.09568394535332954
+1990-07-08T22:00:00,0.094942993092833
+1990-07-08T23:00:00,0.0942076964485629
+1990-07-09T00:00:00,0.09347801207376158
+1990-07-09T01:00:00,0.09275389695609017
+1990-07-09T02:00:00,0.09203530841502985
+1990-07-09T03:00:00,0.09132220409930346
+1990-07-09T04:00:00,0.09061454198431705
+1990-07-09T05:00:00,0.08991228036962177
+1990-07-09T06:00:00,0.08921537787639543
+1990-07-09T07:00:00,0.08852379344494359
+1990-07-09T08:00:00,0.08783748633222052
+1990-07-09T09:00:00,0.08715641610936932
+1990-07-09T10:00:00,0.08648054265928125
+1990-07-09T11:00:00,0.0858098261741743
+1990-07-09T12:00:00,0.08514422715319055
+1990-07-09T13:00:00,0.08448370640001245
+1990-07-09T14:00:00,0.08382822502049743
+1990-07-09T15:00:00,0.08317774442033146
+1990-07-09T16:00:00,0.0825322263027006
+1990-07-09T17:00:00,0.0818916326659807
+1990-07-09T18:00:00,0.08125592580144556
+1990-07-09T19:00:00,0.08062506829099254
+1990-07-09T20:00:00,0.07999902300488632
+1990-07-09T21:00:00,0.07937775309951987
+1990-07-09T22:00:00,0.07876122201519349
+1990-07-09T23:00:00,0.07814939347391058
+1990-07-10T00:00:00,0.07754223147719111
+1990-07-10T01:00:00,0.07713238950727197
+1990-07-10T02:00:00,0.07703285676085975
+1990-07-10T03:00:00,0.07693361407526428
+1990-07-10T04:00:00,0.07683466040393624
+1990-07-10T05:00:00,0.07673599470424397
+1990-07-10T06:00:00,0.07663761593745869
+1990-07-10T07:00:00,0.07653952306873953
+1990-07-10T08:00:00,0.07644171506711897
+1990-07-10T09:00:00,0.07634419090548808
+1990-07-10T10:00:00,0.0762469495605818
+1990-07-10T11:00:00,0.07614999001296449
+1990-07-10T12:00:00,0.07605331124701532
+1990-07-10T13:00:00,0.07595691225091382
+1990-07-10T14:00:00,0.07586079201662543
+1990-07-10T15:00:00,0.07576494953988727
+1990-07-10T16:00:00,0.07566938382019366
+1990-07-10T17:00:00,0.075574093860782
+1990-07-10T18:00:00,0.07547907866861854
+1990-07-10T19:00:00,0.07538433725438418
+1990-07-10T20:00:00,0.07528986863246051
+1990-07-10T21:00:00,0.07519567182091565
+1990-07-10T22:00:00,0.07510174584149033
+1990-07-10T23:00:00,0.07500808971958403
+1990-07-11T00:00:00,0.07491470248424097
+1990-07-11T01:00:00,0.07482158316813635
+1990-07-11T02:00:00,0.0747287308075627
+1990-07-11T03:00:00,0.074636144442416
+1990-07-11T04:00:00,0.07454382311618207
+1990-07-11T05:00:00,0.07445176587592302
+1990-07-11T06:00:00,0.07435997177226367
+1990-07-11T07:00:00,0.07426843985937799
+1990-07-11T08:00:00,0.07417716919497575
+1990-07-11T09:00:00,0.07408615884028899
+1990-07-11T10:00:00,0.07399540786005881
+1990-07-11T11:00:00,0.073904915322522
+1990-07-11T12:00:00,0.07381468029939778
+1990-07-11T13:00:00,0.07372470186587461
+1990-07-11T14:00:00,0.07363497910059712
+1990-07-11T15:00:00,0.07354551108565292
+1990-07-11T16:00:00,0.0734562969065596
+1990-07-11T17:00:00,0.07336733565225173
+1990-07-11T18:00:00,0.07327862641506788
+1990-07-11T19:00:00,0.07319016829073785
+1990-07-11T20:00:00,0.07310196037836966
+1990-07-11T21:00:00,0.07301400178043682
+1990-07-11T22:00:00,0.07292629160276563
+1990-07-11T23:00:00,0.07283882895452244
+1990-07-12T00:00:00,0.07275161294820098
+1990-07-12T01:00:00,0.07266464269960979
+1990-07-12T02:00:00,0.07257791732785965
+1990-07-12T03:00:00,0.07249143595535111
+1990-07-12T04:00:00,0.07240519770776195
+1990-07-12T05:00:00,0.07231920171403487
+1990-07-12T06:00:00,0.0722334471063651
+1990-07-12T07:00:00,0.07214793302018799
+1990-07-12T08:00:00,0.0720626585941669
+1990-07-12T09:00:00,0.07197762297018087
+1990-07-12T10:00:00,0.07189282529331247
+1990-07-12T11:00:00,0.07180826471183567
+1990-07-12T12:00:00,0.07172394037720381
+1990-07-12T13:00:00,0.07163985144403748
+1990-07-12T14:00:00,0.07155599707011259
+1990-07-12T15:00:00,0.07147237641634842
+1990-07-12T16:00:00,0.0713889886467957
+1990-07-12T17:00:00,0.07130583292862482
+1990-07-12T18:00:00,0.07122290843211387
+1990-07-12T19:00:00,0.07114021433063711
+1990-07-12T20:00:00,0.07105774980065306
+1990-07-12T21:00:00,0.07097551402169294
+1990-07-12T22:00:00,0.07089350617634896
+1990-07-12T23:00:00,0.0708117254502628
+1990-07-13T00:00:00,0.07073017103211407
+1990-07-13T01:00:00,0.07064884211360879
+1990-07-13T02:00:00,0.07056773788946794
+1990-07-13T03:00:00,0.07048685755741607
+1990-07-13T04:00:00,0.07040620031816995
+1990-07-13T05:00:00,0.07032576537542724
+1990-07-13T06:00:00,0.07024555193585515
+1990-07-13T07:00:00,0.07016555920907934
+1990-07-13T08:00:00,0.07008578640767262
+1990-07-13T09:00:00,0.07000623274714383
+1990-07-13T10:00:00,0.0699268974459268
+1990-07-13T11:00:00,0.06984777972536918
+1990-07-13T12:00:00,0.0697688788097215
+1990-07-13T13:00:00,0.06969019392612619
+1990-07-13T14:00:00,0.06961172430460656
+1990-07-13T15:00:00,0.06953346917805606
+1990-07-13T16:00:00,0.06945542778222728
+1990-07-13T17:00:00,0.06937759935572123
+1990-07-13T18:00:00,0.06929998313997651
+1990-07-13T19:00:00,0.06922257837925865
+1990-07-13T20:00:00,0.06914538432064936
+1990-07-13T21:00:00,0.06906840021403593
+1990-07-13T22:00:00,0.06899162531210061
+1990-07-13T23:00:00,0.06891505887031002
+1990-07-14T00:00:00,0.06883870014690466
+1990-07-14T01:00:00,0.06876254840288844
+1990-07-14T02:00:00,0.06868660290201814
+1990-07-14T03:00:00,0.06861086291079317
+1990-07-14T04:00:00,0.06853532769844506
+1990-07-14T05:00:00,0.06845999653692715
+1990-07-14T06:00:00,0.06838486870090445
+1990-07-14T07:00:00,0.0683099434677432
+1990-07-14T08:00:00,0.06823522011750076
+1990-07-14T09:00:00,0.06816069793291546
+1990-07-14T10:00:00,0.06808637619939645
+1990-07-14T11:00:00,0.06801225420501357
+1990-07-14T12:00:00,0.06793833124048736
+1990-07-14T13:00:00,0.06786460659917898
+1990-07-14T14:00:00,0.06779107957708035
+1990-07-14T15:00:00,0.06771774947280405
+1990-07-14T16:00:00,0.06764461558757358
+1990-07-14T17:00:00,0.06757167722521337
+1990-07-14T18:00:00,0.06749893369213907
+1990-07-14T19:00:00,0.06742638429734764
+1990-07-14T20:00:00,0.06735402835240777
+1990-07-14T21:00:00,0.06728186517144992
+1990-07-14T22:00:00,0.06720989407115698
+1990-07-14T23:00:00,0.06713811437075425
+1990-07-15T00:00:00,0.06706652539200021
+1990-07-15T01:00:00,0.06699512645917667
+1990-07-15T02:00:00,0.06692391689907942
+1990-07-15T03:00:00,0.06685289604100864
+1990-07-15T04:00:00,0.06678206321675945
+1990-07-15T05:00:00,0.0667114177606126
+1990-07-15T06:00:00,0.0666409590093249
+1990-07-15T07:00:00,0.06657068630212012
+1990-07-15T08:00:00,0.06650059898067943
+1990-07-15T09:00:00,0.06643069638913231
+1990-07-15T10:00:00,0.06636097787404711
+1990-07-15T11:00:00,0.06629144278442213
+1990-07-15T12:00:00,0.0662220904716762
+1990-07-15T13:00:00,0.06615292028963961
+1990-07-15T14:00:00,0.06608393159454508
+1990-07-15T15:00:00,0.06601512374501865
+1990-07-15T16:00:00,0.06594649610207064
+1990-07-15T17:00:00,0.06587804802908667
+1990-07-15T18:00:00,0.06580977889181865
+1990-07-15T19:00:00,0.06574168805837592
+1990-07-15T20:00:00,0.06567377489921636
+1990-07-15T21:00:00,0.06560603878713744
+1990-07-15T22:00:00,0.0655384790972675
+1990-07-15T23:00:00,0.06547109520705688
+1990-07-16T00:00:00,0.0654038864962692
+1990-07-16T01:00:00,0.06533685234697263
+1990-07-16T02:00:00,0.06526999214353119
+1990-07-16T03:00:00,0.0652033052725961
+1990-07-16T04:00:00,0.06513679112309717
+1990-07-16T05:00:00,0.0650704490862341
+1990-07-16T06:00:00,0.06500427855546814
+1990-07-16T07:00:00,0.06493827892651331
+1990-07-16T08:00:00,0.06487244959732807
+1990-07-16T09:00:00,0.06480678996810683
+1990-07-16T10:00:00,0.0647412994412715
+1990-07-16T11:00:00,0.064675977421463
+1990-07-16T12:00:00,0.06461082331553313
+1990-07-16T13:00:00,0.06454583653253597
+1990-07-16T14:00:00,0.06448101648371977
+1990-07-16T15:00:00,0.06441636258251855
+1990-07-16T16:00:00,0.06435187424454399
+1990-07-16T17:00:00,0.06428755088757708
+1990-07-16T18:00:00,0.06422339193156006
+1990-07-16T19:00:00,0.06415939679858819
+1990-07-16T20:00:00,0.0640955649129017
+1990-07-16T21:00:00,0.06403189570087768
+1990-07-16T22:00:00,0.06396838859102198
+1990-07-16T23:00:00,0.06390504301396133
+1990-07-17T00:00:00,0.06384185840243516
+1990-07-17T01:00:00,0.06377883419128774
+1990-07-17T02:00:00,0.0637159698174603
+1990-07-17T03:00:00,0.06365326471998302
+1990-07-17T04:00:00,0.06359071833996723
+1990-07-17T05:00:00,0.06352833012059751
+1990-07-17T06:00:00,0.06346609950712398
+1990-07-17T07:00:00,0.0634040259468544
+1990-07-17T08:00:00,0.06334210888914654
+1990-07-17T09:00:00,0.06328034778540031
+1990-07-17T10:00:00,0.06321874208905023
+1990-07-17T11:00:00,0.06315729125555763
+1990-07-17T12:00:00,0.06309599474240313
+1990-07-17T13:00:00,0.06303485200907892
+1990-07-17T14:00:00,0.06297386251708129
+1990-07-17T15:00:00,0.06291302572990302
+1990-07-17T16:00:00,0.06285234111302586
+1990-07-17T17:00:00,0.0627918081339131
+1990-07-17T18:00:00,0.06273142626200204
+1990-07-17T19:00:00,0.0626711949686966
+1990-07-17T20:00:00,0.06261111372735985
+1990-07-17T21:00:00,0.06255118201330678
+1990-07-17T22:00:00,0.062491399303796796
+1990-07-17T23:00:00,0.06243176507802644
+1990-07-18T00:00:00,0.06237227881712216
+1990-07-18T01:00:00,0.06231294000413302
+1990-07-18T02:00:00,0.06225374812402337
+1990-07-18T03:00:00,0.06219470266366579
+1990-07-18T04:00:00,0.06213580311183379
+1990-07-18T05:00:00,0.0620770489591947
+1990-07-18T06:00:00,0.062018439698302556
+1990-07-18T07:00:00,0.061959974823590995
+1990-07-18T08:00:00,0.06190165383136613
+1990-07-18T09:00:00,0.061843476219799555
+1990-07-18T10:00:00,0.06178544148892133
+1990-07-18T11:00:00,0.061727549140612986
+1990-07-18T12:00:00,0.06166979867860049
+1990-07-18T13:00:00,0.06161218960844741
+1990-07-18T14:00:00,0.06155472143754795
+1990-07-18T15:00:00,0.061497393675120034
+1990-07-18T16:00:00,0.0614402058321985
+1990-07-18T17:00:00,0.06138315742162824
+1990-07-18T18:00:00,0.0613262479580574
+1990-07-18T19:00:00,0.061269476957930544
+1990-07-18T20:00:00,0.06121284393948202
+1990-07-18T21:00:00,0.06115634842272911
+1990-07-18T22:00:00,0.061099989929465345
+1990-07-18T23:00:00,0.06104376798325387
+1990-07-19T00:00:00,0.060987682109420786
+1990-07-19T01:00:00,0.06093173183504846
+1990-07-19T02:00:00,0.06087591668896899
+1990-07-19T03:00:00,0.060820236201757576
+1990-07-19T04:00:00,0.060764689905725984
+1990-07-19T05:00:00,0.06070927733491607
+1990-07-19T06:00:00,0.060653998025093143
+1990-07-19T07:00:00,0.060598851513739636
+1990-07-19T08:00:00,0.06054383734004853
+1990-07-19T09:00:00,0.060488955044917025
+1990-07-19T10:00:00,0.06043420417094004
+1990-07-19T11:00:00,0.06037958426240391
+1990-07-19T12:00:00,0.06032509486527997
+1990-07-19T13:00:00,0.06027073552721825
+1990-07-19T14:00:00,0.060216505797541175
+1990-07-19T15:00:00,0.06016240522723725
+1990-07-19T16:00:00,0.06010843336895483
+1990-07-19T17:00:00,0.06005458977699585
+1990-07-19T18:00:00,0.06000087400730963
+1990-07-19T19:00:00,0.05994728561748671
+1990-07-19T20:00:00,0.05989382416675261
+1990-07-19T21:00:00,0.05984048921596178
+1990-07-19T22:00:00,0.05978728032759141
+1990-07-19T23:00:00,0.05973419706573535
+1990-07-20T00:00:00,0.05968123899609805
+1990-07-20T01:00:00,0.05962840568598852
+1990-07-20T02:00:00,0.059575696704314236
+1990-07-20T03:00:00,0.05952311162157525
+1990-07-20T04:00:00,0.05947065000985807
+1990-07-20T05:00:00,0.05941831144282985
+1990-07-20T06:00:00,0.0593660954957323
+1990-07-20T07:00:00,0.059314001745375905
+1990-07-20T08:00:00,0.05926202977013396
+1990-07-20T09:00:00,0.059210179149936704
+1990-07-20T10:00:00,0.0591584494662655
+1990-07-20T11:00:00,0.05910684030214701
+1990-07-20T12:00:00,0.059055351242147336
+1990-07-20T13:00:00,0.05900398187236636
+1990-07-20T14:00:00,0.05895273178043181
+1990-07-20T15:00:00,0.05890160055549372
+1990-07-20T16:00:00,0.05885058778821855
+1990-07-20T17:00:00,0.058799693070783594
+1990-07-20T18:00:00,0.05874891599687125
+1990-07-20T19:00:00,0.05869825616166343
+1990-07-20T20:00:00,0.05864771316183586
+1990-07-20T21:00:00,0.058597286595552536
+1990-07-20T22:00:00,0.058546976062460086
+1990-07-20T23:00:00,0.05849678116368225
+1990-07-21T00:00:00,0.05844670150181432
+1990-07-21T01:00:00,0.05839673668091759
+1990-07-21T02:00:00,0.058346886306513905
+1990-07-21T03:00:00,0.05829714998558014
+1990-07-21T04:00:00,0.058247527326542745
+1990-07-21T05:00:00,0.05819801793927234
+1990-07-21T06:00:00,0.05814862143507824
+1990-07-21T07:00:00,0.05809933742670311
+1990-07-21T08:00:00,0.05805016552831758
+1990-07-21T09:00:00,0.058001105355514816
+1990-07-21T10:00:00,0.05795215652530531
+1990-07-21T11:00:00,0.05790331865611144
+1990-07-21T12:00:00,0.05785459136776225
+1990-07-21T13:00:00,0.05780597428148815
+1990-07-21T14:00:00,0.057757467019915666
+1990-07-21T15:00:00,0.05770906920706218
+1990-07-21T16:00:00,0.05766078046833076
+1990-07-21T17:00:00,0.0576126004305049
+1990-07-21T18:00:00,0.0575645287217434
+1990-07-21T19:00:00,0.057516564971575194
+1990-07-21T20:00:00,0.057468708810894165
+1990-07-21T21:00:00,0.05742095987195412
+1990-07-21T22:00:00,0.057373317788363604
+1990-07-21T23:00:00,0.05732578219508086
+1990-07-22T00:00:00,0.05727835272840877
+1990-07-22T01:00:00,0.05723102902598978
+1990-07-22T02:00:00,0.057183810726800934
+1990-07-22T03:00:00,0.05713669747114884
+1990-07-22T04:00:00,0.057089688900664654
+1990-07-22T05:00:00,0.0570427846582992
+1990-07-22T06:00:00,0.05699598438831791
+1990-07-22T07:00:00,0.05694928773629602
+1990-07-22T08:00:00,0.05690269434911354
+1990-07-22T09:00:00,0.056856203874950474
+1990-07-22T10:00:00,0.05680981596328184
+1990-07-22T11:00:00,0.056763530264872956
+1990-07-22T12:00:00,0.05671734643177443
+1990-07-22T13:00:00,0.056671264117317495
+1990-07-22T14:00:00,0.056625282976109144
+1990-07-22T15:00:00,0.056579402664027334
+1990-07-22T16:00:00,0.05653362283821626
+1990-07-22T17:00:00,0.0564879431570816
+1990-07-22T18:00:00,0.05644236328028579
+1990-07-22T19:00:00,0.05639688286874332
+1990-07-22T20:00:00,0.05635150158461601
+1990-07-22T21:00:00,0.056306219091308396
+1990-07-22T22:00:00,0.056261035053463006
+1990-07-22T23:00:00,0.05621594913695579
+1990-07-23T00:00:00,0.05617096100889145
+1990-07-23T01:00:00,0.05612607033759888
+1990-07-23T02:00:00,0.056081276792626554
+1990-07-23T03:00:00,0.05603658004473794
+1990-07-23T04:00:00,0.055991979765907016
+1990-07-23T05:00:00,0.05594747562931365
+1990-07-23T06:00:00,0.05590306730933916
+1990-07-23T07:00:00,0.05585875448156175
+1990-07-23T08:00:00,0.05581453682275213
+1990-07-23T09:00:00,0.055770414010868914
+1990-07-23T10:00:00,0.055726385725054284
+1990-07-23T11:00:00,0.0556824516456295
+1990-07-23T12:00:00,0.0556386114540905
+1990-07-23T13:00:00,0.05559486483310353
+1990-07-23T14:00:00,0.05555121146650072
+1990-07-23T15:00:00,0.055507651039275754
+1990-07-23T16:00:00,0.055464183237579484
+1990-07-23T17:00:00,0.055420807748715654
+1990-07-23T18:00:00,0.05537752426113654
+1990-07-23T19:00:00,0.05533433246443866
+1990-07-23T20:00:00,0.055291232049358506
+1990-07-23T21:00:00,0.05524822270776826
+1990-07-23T22:00:00,0.055205304132671565
+1990-07-23T23:00:00,0.05516247601819929
+1990-07-24T00:00:00,0.05511973805960526
+1990-07-24T01:00:00,0.05507708995326215
+1990-07-24T02:00:00,0.055034531396657226
+1990-07-24T03:00:00,0.054992062088388166
+1990-07-24T04:00:00,0.05494968172815898
+1990-07-24T05:00:00,0.05490739001677579
+1990-07-24T06:00:00,0.054865186656142775
+1990-07-24T07:00:00,0.054823071349258
+1990-07-24T08:00:00,0.05478104380020938
+1990-07-24T09:00:00,0.054739103714170574
+1990-07-24T10:00:00,0.054697250797396936
+1990-07-24T11:00:00,0.054655484757221436
+1990-07-24T12:00:00,0.05461380530205069
+1990-07-24T13:00:00,0.0545722121413609
+1990-07-24T14:00:00,0.054530704985693866
+1990-07-24T15:00:00,0.054489283546653
+1990-07-24T16:00:00,0.05444794753689936
+1990-07-24T17:00:00,0.054406696670147726
+1990-07-24T18:00:00,0.05436553066116255
+1990-07-24T19:00:00,0.054324449225754204
+1990-07-24T20:00:00,0.05428345208077488
+1990-07-24T21:00:00,0.0542425389441149
+1990-07-24T22:00:00,0.054201709534698626
+1990-07-24T23:00:00,0.05416096357248075
+1990-07-25T00:00:00,0.05412030077844237
+1990-07-25T01:00:00,0.05407972087458718
+1990-07-25T02:00:00,0.054039223583937646
+1990-07-25T03:00:00,0.05399880863053116
+1990-07-25T04:00:00,0.05395847573941631
+1990-07-25T05:00:00,0.05391822463664907
+1990-07-25T06:00:00,0.053878055049289005
+1990-07-25T07:00:00,0.053837966705395576
+1990-07-25T08:00:00,0.05379795933402438
+1990-07-25T09:00:00,0.0537580326652234
+1990-07-25T10:00:00,0.05371818643002936
+1990-07-25T11:00:00,0.05367842036046398
+1990-07-25T12:00:00,0.0536387341895303
+1990-07-25T13:00:00,0.05359912765120903
+1990-07-25T14:00:00,0.0535596004804549
+1990-07-25T15:00:00,0.053520152413193
+1990-07-25T16:00:00,0.05348078318631519
+1990-07-25T17:00:00,0.05344149253767645
+1990-07-25T18:00:00,0.0534022802060913
+1990-07-25T19:00:00,0.05336314593133026
+1990-07-25T20:00:00,0.053324089454116146
+1990-07-25T21:00:00,0.053285110516120684
+1990-07-25T22:00:00,0.05324620885996087
+1990-07-25T23:00:00,0.05320738422919542
+1990-07-26T00:00:00,0.05316863636832136
+1990-07-26T01:00:00,0.05312996502277038
+1990-07-26T02:00:00,0.05309136993890544
+1990-07-26T03:00:00,0.0530528508640173
+1990-07-26T04:00:00,0.053014407546321
+1990-07-26T05:00:00,0.05297603973495242
+1990-07-26T06:00:00,0.052937747179964884
+1990-07-26T07:00:00,0.0528995296323257
+1990-07-26T08:00:00,0.05286138684391276
+1990-07-26T09:00:00,0.05282331856751113
+1990-07-26T10:00:00,0.05278532455680968
+1990-07-26T11:00:00,0.05274740456639771
+1990-07-26T12:00:00,0.052709558351761554
+1990-07-26T13:00:00,0.052671785669281275
+1990-07-26T14:00:00,0.052634086276227336
+1990-07-26T15:00:00,0.05259645993075724
+1990-07-26T16:00:00,0.05255890639191221
+1990-07-26T17:00:00,0.052521425419613965
+1990-07-26T18:00:00,0.05248401677466136
+1990-07-26T19:00:00,0.052446680218727136
+1990-07-26T20:00:00,0.05240941551435469
+1990-07-26T21:00:00,0.05237222242495477
+1990-07-26T22:00:00,0.05233510071480228
+1990-07-26T23:00:00,0.05229805014903309
+1990-07-27T00:00:00,0.052261070493640704
+1990-07-27T01:00:00,0.052224161515473204
+1990-07-27T02:00:00,0.052187322982229944
+1990-07-27T03:00:00,0.052150554662458465
+1990-07-27T04:00:00,0.05211385632555128
+1990-07-27T05:00:00,0.05207722774174275
+1990-07-27T06:00:00,0.052040668682105905
+1990-07-27T07:00:00,0.05200417891854936
+1990-07-27T08:00:00,0.051967758223814185
+1990-07-27T09:00:00,0.0519314063714708
+1990-07-27T10:00:00,0.051895123135915835
+1990-07-27T11:00:00,0.051858908292369166
+1990-07-27T12:00:00,0.051822761616870716
+1990-07-27T13:00:00,0.05178668288627751
+1990-07-27T14:00:00,0.051750671878260504
+1990-07-27T15:00:00,0.05171472837130167
+1990-07-27T16:00:00,0.05167885214469094
+1990-07-27T17:00:00,0.05164304297852314
+1990-07-27T18:00:00,0.05160730065369502
+1990-07-27T19:00:00,0.051571624951902324
+1990-07-27T20:00:00,0.051536015655636716
+1990-07-27T21:00:00,0.05150047254818287
+1990-07-27T22:00:00,0.05146499541361552
+1990-07-27T23:00:00,0.05142958403679649
+1990-07-28T00:00:00,0.05139423820337176
+1990-07-28T01:00:00,0.051358957699768566
+1990-07-28T02:00:00,0.051323742313192464
+1990-07-28T03:00:00,0.05128859183162446
+1990-07-28T04:00:00,0.051253506043818085
+1990-07-28T05:00:00,0.05121848473929656
+1990-07-28T06:00:00,0.051183527708349906
+1990-07-28T07:00:00,0.051148634742032045
+1990-07-28T08:00:00,0.05111380563215802
+1990-07-28T09:00:00,0.051079040171301146
+1990-07-28T10:00:00,0.051044338152790164
+1990-07-28T11:00:00,0.05100969937070644
+1990-07-28T12:00:00,0.05097512361988116
+1990-07-28T13:00:00,0.050940610695892515
+1990-07-28T14:00:00,0.050906160395062974
+1990-07-28T15:00:00,0.05087177251445647
+1990-07-28T16:00:00,0.05083744685187564
+1990-07-28T17:00:00,0.050803183205859075
+1990-07-28T18:00:00,0.050768981375678604
+1990-07-28T19:00:00,0.050734841161336544
+1990-07-28T20:00:00,0.050700762363562975
+1990-07-28T21:00:00,0.05066674478381303
+1990-07-28T22:00:00,0.05063278822426424
+1990-07-28T23:00:00,0.05059889248781377
+1990-07-29T00:00:00,0.05056505737807578
+1990-07-29T01:00:00,0.05053128269937879
+1990-07-29T02:00:00,0.05049756825676295
+1990-07-29T03:00:00,0.050463913855977455
+1990-07-29T04:00:00,0.05043031930347785
+1990-07-29T05:00:00,0.05039678440642345
+1990-07-29T06:00:00,0.05036330897267468
+1990-07-29T07:00:00,0.05032989281079051
+1990-07-29T08:00:00,0.05029653573002581
+1990-07-29T09:00:00,0.05026323754032879
+1990-07-29T10:00:00,0.05022999805233841
+1990-07-29T11:00:00,0.05019681707738183
+1990-07-29T12:00:00,0.05016369442747179
+1990-07-29T13:00:00,0.05013062991530413
+1990-07-29T14:00:00,0.050097623354255216
+1990-07-29T15:00:00,0.050064674558379395
+1990-07-29T16:00:00,0.05003178334240654
+1990-07-29T17:00:00,0.0499989495217394
+1990-07-29T18:00:00,0.04996617291245126
+1990-07-29T19:00:00,0.04993345333128331
+1990-07-29T20:00:00,0.049900790595642286
+1990-07-29T21:00:00,0.04986818452359786
+1990-07-29T22:00:00,0.049835634933880296
+1990-07-29T23:00:00,0.04980314164587793
+1990-07-30T00:00:00,0.049770704479634706
+1990-07-30T01:00:00,0.04973832325584781
+1990-07-30T02:00:00,0.049705997795865146
+1990-07-30T03:00:00,0.04967372792168302
+1990-07-30T04:00:00,0.04964151345594364
+1990-07-30T05:00:00,0.04960935422193276
+1990-07-30T06:00:00,0.049577250043577284
+1990-07-30T07:00:00,0.04954520074544288
+1990-07-30T08:00:00,0.04951320615273159
+1990-07-30T09:00:00,0.04948126609127948
+1990-07-30T10:00:00,0.04944938038755429
+1990-07-30T11:00:00,0.04941754886865306
+1990-07-30T12:00:00,0.049385771362299824
+1990-07-30T13:00:00,0.04935404769684326
+1990-07-30T14:00:00,0.04932237770125437
+1990-07-30T15:00:00,0.04929076120512414
+1990-07-30T16:00:00,0.049259198038661314
+1990-07-30T17:00:00,0.04922768803269002
+1990-07-30T18:00:00,0.049196231018647514
+1990-07-30T19:00:00,0.0491648268285819
+1990-07-30T20:00:00,0.049133475295149866
+1990-07-30T21:00:00,0.049102176251614414
+1990-07-30T22:00:00,0.04907092953184261
+1990-07-30T23:00:00,0.049039734970303346
+1990-07-31T00:00:00,0.0490085924020651
+1990-07-31T01:00:00,0.048977501662793695
+1990-07-31T02:00:00,0.0489464625887501
+1990-07-31T03:00:00,0.04891547501678821
+1990-07-31T04:00:00,0.04888453878435265
+1990-07-31T05:00:00,0.048853653729476594
+1990-07-31T06:00:00,0.04882281969077951
+1990-07-31T07:00:00,0.048792036507465095
+1990-07-31T08:00:00,0.04876130401931901
+1990-07-31T09:00:00,0.04873062206670675
+1990-07-31T10:00:00,0.048699990490571526
+1990-07-31T11:00:00,0.048669409132432055
+1990-07-31T12:00:00,0.048638877834380485
+1990-07-31T13:00:00,0.048608396439080215
+1990-07-31T14:00:00,0.0485779647897638
+1990-07-31T15:00:00,0.04854758273023087
+1990-07-31T16:00:00,0.04851725010484593
+1990-07-31T17:00:00,0.04848696675853637
+1990-07-31T18:00:00,0.048456732536790316
+1990-07-31T19:00:00,0.048426547285654556
+1990-07-31T20:00:00,0.048396410851732484
+1990-07-31T21:00:00,0.048366323082182
+1990-07-31T22:00:00,0.0483362838247135
+1990-07-31T23:00:00,0.04830629292758777
+1990-08-01T00:00:00,0.04827635023961401
+1990-08-01T01:00:00,0.04824645561014773
+1990-08-01T02:00:00,0.04821660888908878
+1990-08-01T03:00:00,0.04818680992687928
+1990-08-01T04:00:00,0.04815705857450165
+1990-08-01T05:00:00,0.04812735468347659
+1990-08-01T06:00:00,0.04809769810586107
+1990-08-01T07:00:00,0.048068088694246364
+1990-08-01T08:00:00,0.04803852630175604
+1990-08-01T09:00:00,0.04800901078204403
+1990-08-01T10:00:00,0.04797954198929261
+1990-08-01T11:00:00,0.047950119778210454
+1990-08-01T12:00:00,0.047920744004030735
+1990-08-01T13:00:00,0.04789141452250909
+1990-08-01T14:00:00,0.04786213118992177
+1990-08-01T15:00:00,0.04783289386306362
+1990-08-01T16:00:00,0.04780370239924626
+1990-08-01T17:00:00,0.04777455665629608
+1990-08-01T18:00:00,0.04774545649255235
+1990-08-01T19:00:00,0.04771640176686537
+1990-08-01T20:00:00,0.04768739233859452
+1990-08-01T21:00:00,0.04765842806760639
+1990-08-01T22:00:00,0.047629508814272886
+1990-08-01T23:00:00,0.0476006344394694
+1990-08-02T00:00:00,0.04757180480457289
+1990-08-02T01:00:00,0.04754301977146006
+1990-08-02T02:00:00,0.047514279202505484
+1990-08-02T03:00:00,0.047485582960579774
+1990-08-02T04:00:00,0.04745693090904772
+1990-08-02T05:00:00,0.04742832291176651
+1990-08-02T06:00:00,0.04739975883308384
+1990-08-02T07:00:00,0.04737123853783612
+1990-08-02T08:00:00,0.04734276189134671
+1990-08-02T09:00:00,0.047314328759424026
+1990-08-02T10:00:00,0.04728593900835985
+1990-08-02T11:00:00,0.047257592504927406
+1990-08-02T12:00:00,0.047229289116379705
+1990-08-02T13:00:00,0.047201028710447714
+1990-08-02T14:00:00,0.04717281115533855
+1990-08-02T15:00:00,0.047144636319733785
+1990-08-02T16:00:00,0.04711650407278763
+1990-08-02T17:00:00,0.04708841428412522
+1990-08-02T18:00:00,0.047060366823840856
+1990-08-02T19:00:00,0.047032361562496273
+1990-08-02T20:00:00,0.047004398371118895
+1990-08-02T21:00:00,0.04697647712120013
+1990-08-02T22:00:00,0.04694859768469363
+1990-08-02T23:00:00,0.0469207599340136
+1990-08-03T00:00:00,0.04689296374203311
+1990-08-03T01:00:00,0.046865208982082324
+1990-08-03T02:00:00,0.04683749552794687
+1990-08-03T03:00:00,0.046809823253866116
+1990-08-03T04:00:00,0.046782192034531565
+1990-08-03T05:00:00,0.046754601745085084
+1990-08-03T06:00:00,0.046727052261117306
+1990-08-03T07:00:00,0.04669954345866589
+1990-08-03T08:00:00,0.046672075214213994
+1990-08-03T09:00:00,0.04664464740468849
+1990-08-03T10:00:00,0.0466172599074584
+1990-08-03T11:00:00,0.04658991260033326
+1990-08-03T12:00:00,0.04656260536156144
+1990-08-03T13:00:00,0.04653533806982858
+1990-08-03T14:00:00,0.04650811060425593
+1990-08-03T15:00:00,0.04648092284439874
+1990-08-03T16:00:00,0.04645377467024468
+1990-08-03T17:00:00,0.04642666596221221
+1990-08-03T18:00:00,0.046399596601149035
+1990-08-03T19:00:00,0.04637256646833044
+1990-08-03T20:00:00,0.046345575445457775
+1990-08-03T21:00:00,0.04631862341465684
+1990-08-03T22:00:00,0.046291710258476344
+1990-08-03T23:00:00,0.04626483585988633
+1990-08-04T00:00:00,0.04623800010227659
+1990-08-04T01:00:00,0.04621120286945514
+1990-08-04T02:00:00,0.04618444404564669
+1990-08-04T03:00:00,0.04615772351549106
+1990-08-04T04:00:00,0.04613104116404167
+1990-08-04T05:00:00,0.04610439687676398
+1990-08-04T06:00:00,0.04607779053953406
+1990-08-04T07:00:00,0.04605122203863692
+1990-08-04T08:00:00,0.04602469126076516
+1990-08-04T09:00:00,0.04599819809301732
+1990-08-04T10:00:00,0.045971742422896485
+1990-08-04T11:00:00,0.045945324138308714
+1990-08-04T12:00:00,0.04591894312756162
+1990-08-04T13:00:00,0.04589259927936284
+1990-08-04T14:00:00,0.045866292482818524
+1990-08-04T15:00:00,0.04584002262743196
+1990-08-04T16:00:00,0.04581378960310202
+1990-08-04T17:00:00,0.04578759330012174
+1990-08-04T18:00:00,0.04576143360917684
+1990-08-04T19:00:00,0.04573531042134429
+1990-08-04T20:00:00,0.04570922362809084
+1990-08-04T21:00:00,0.045683173121271625
+1990-08-04T22:00:00,0.04565715879312869
+1990-08-04T23:00:00,0.04563118053628956
+1990-08-05T00:00:00,0.04560523824376584
+1990-08-05T01:00:00,0.04557933180895179
+1990-08-05T02:00:00,0.04555346112562287
+1990-08-05T03:00:00,0.045527626087934404
+1990-08-05T04:00:00,0.045501826590420125
+1990-08-05T05:00:00,0.045476062527990795
+1990-08-05T06:00:00,0.04545033379593281
+1990-08-05T07:00:00,0.04542464028990679
+1990-08-05T08:00:00,0.04539898190594624
+1990-08-05T09:00:00,0.04537335854045614
+1990-08-05T10:00:00,0.0453477700902116
+1990-08-05T11:00:00,0.045322216452356436
+1990-08-05T12:00:00,0.04529669752440189
+1990-08-05T13:00:00,0.04527121320422521
+1990-08-05T14:00:00,0.04524576339006834
+1990-08-05T15:00:00,0.045220347980536514
+1990-08-05T16:00:00,0.045194966874597
+1990-08-05T17:00:00,0.045169619971577694
+1990-08-05T18:00:00,0.04514430717116582
+1990-08-05T19:00:00,0.04511902837340658
+1990-08-05T20:00:00,0.04509378347870186
+1990-08-05T21:00:00,0.04506857238780891
+1990-08-05T22:00:00,0.045043395001839
+1990-08-05T23:00:00,0.04501825122225615
+1990-08-06T00:00:00,0.04499314095087583
+1990-08-06T01:00:00,0.04496806408986361
+1990-08-06T02:00:00,0.04494302054173395
+1990-08-06T03:00:00,0.04491801020934883
+1990-08-06T04:00:00,0.04489303299591653
+1990-08-06T05:00:00,0.04486808880499032
+1990-08-06T06:00:00,0.04484317754046718
+1990-08-06T07:00:00,0.04481829910658658
+1990-08-06T08:00:00,0.04479345340792917
+1990-08-06T09:00:00,0.0447686403494155
+1990-08-06T10:00:00,0.04474385983630485
+1990-08-06T11:00:00,0.04471911177419388
+1990-08-06T12:00:00,0.0446943960690155
+1990-08-06T13:00:00,0.044669712627037506
+1990-08-06T14:00:00,0.04464506135486144
+1990-08-06T15:00:00,0.04462044215942131
+1990-08-06T16:00:00,0.04459585494798238
+1990-08-06T17:00:00,0.044571299628139945
+1990-08-06T18:00:00,0.0445467761078181
+1990-08-06T19:00:00,0.04452228429526858
+1990-08-06T20:00:00,0.044497824099069466
+1990-08-06T21:00:00,0.04447339542812407
+1990-08-06T22:00:00,0.04444899819165968
+1990-08-06T23:00:00,0.044424632299226365
+1990-08-07T00:00:00,0.04440029766069582
+1990-08-07T01:00:00,0.044375994186260176
+1990-08-07T02:00:00,0.04435172178643075
+1990-08-07T03:00:00,0.04432748037203699
+1990-08-07T04:00:00,0.044303269854225176
+1990-08-07T05:00:00,0.04427909014445735
+1990-08-07T06:00:00,0.04425494115451009
+1990-08-07T07:00:00,0.04423082279647339
+1990-08-07T08:00:00,0.04420673498274946
+1990-08-07T09:00:00,0.04418267762605166
+1990-08-07T10:00:00,0.04415865063940323
+1990-08-07T11:00:00,0.04413465393613627
+1990-08-07T12:00:00,0.044110687429890494
+1990-08-07T13:00:00,0.044086751034612216
+1990-08-07T14:00:00,0.0440628446645531
+1990-08-07T15:00:00,0.0440389682342691
+1990-08-07T16:00:00,0.04401512165861936
+1990-08-07T17:00:00,0.04399130485276501
+1990-08-07T18:00:00,0.04396751773216818
+1990-08-07T19:00:00,0.04394376021259075
+1990-08-07T20:00:00,0.043920032210093364
+1990-08-07T21:00:00,0.04389633364103426
+1990-08-07T22:00:00,0.043872664422068205
+1990-08-07T23:00:00,0.04384902447014539
+1990-08-08T00:00:00,0.04382541370251033
+1990-08-08T01:00:00,0.04380183203670083
+1990-08-08T02:00:00,0.043778279390546855
+1990-08-08T03:00:00,0.04375475568216946
+1990-08-08T04:00:00,0.04373126082997974
+1990-08-08T05:00:00,0.04370779475267774
+1990-08-08T06:00:00,0.043684357369251414
+1990-08-08T07:00:00,0.043660948598975555
+1990-08-08T08:00:00,0.043637568361410715
+1990-08-08T09:00:00,0.04361421657640222
+1990-08-08T10:00:00,0.04359089316407902
+1990-08-08T11:00:00,0.04356759804485274
+1990-08-08T12:00:00,0.04354433113941659
+1990-08-08T13:00:00,0.043521092368744345
+1990-08-08T14:00:00,0.043497881654089306
+1990-08-08T15:00:00,0.043474698916983266
+1990-08-08T16:00:00,0.0434515440792355
+1990-08-08T17:00:00,0.04342841706293173
+1990-08-08T18:00:00,0.04340531779043313
+1990-08-08T19:00:00,0.04338224618437527
+1990-08-08T20:00:00,0.04335920216766717
+1990-08-08T21:00:00,0.04333618566349023
+1990-08-08T22:00:00,0.043313196595297254
+1990-08-08T23:00:00,0.04329023488681146
+1990-08-09T00:00:00,0.04326730046202549
+1990-08-09T01:00:00,0.04324439324520039
+1990-08-09T02:00:00,0.043221513160864644
+1990-08-09T03:00:00,0.043198660133813176
+1990-08-09T04:00:00,0.04317583408910643
+1990-08-09T05:00:00,0.043153034952069264
+1990-08-09T06:00:00,0.043130262648290126
+1990-08-09T07:00:00,0.04310751710361999
+1990-08-09T08:00:00,0.04308479824417142
+1990-08-09T09:00:00,0.0430621059963176
+1990-08-09T10:00:00,0.04303944028669138
+1990-08-09T11:00:00,0.043016801042184326
+1990-08-09T12:00:00,0.04299418818994579
+1990-08-09T13:00:00,0.04297160165738189
+1990-08-09T14:00:00,0.04294904137215466
+1990-08-09T15:00:00,0.04292650726218105
+1990-08-09T16:00:00,0.042903999255631965
+1990-08-09T17:00:00,0.04288151728093142
+1990-08-09T18:00:00,0.042859061266755545
+1990-08-09T19:00:00,0.042836631142031664
+1990-08-09T20:00:00,0.04281422683593737
+1990-08-09T21:00:00,0.04279184827789964
+1990-08-09T22:00:00,0.04276949539759388
+1990-08-09T23:00:00,0.04274716812494304
+1990-08-10T00:00:00,0.04272486639011666
+1990-08-10T01:00:00,0.04270259012353004
+1990-08-10T02:00:00,0.042680339255843254
+1990-08-10T03:00:00,0.04265811371796031
+1990-08-10T04:00:00,0.04263591344102824
+1990-08-10T05:00:00,0.04261373835643616
+1990-08-10T06:00:00,0.04259158839581447
+1990-08-10T07:00:00,0.042569463491033896
+1990-08-10T08:00:00,0.042547363574204626
+1990-08-10T09:00:00,0.042525288577675464
+1990-08-10T10:00:00,0.04250323843403288
+1990-08-10T11:00:00,0.0424812130761002
+1990-08-10T12:00:00,0.04245921243693675
+1990-08-10T13:00:00,0.04243723644983693
+1990-08-10T14:00:00,0.04241528504832936
+1990-08-10T15:00:00,0.04239335816617608
+1990-08-10T16:00:00,0.04237145573737162
+1990-08-10T17:00:00,0.04234957769614219
+1990-08-10T18:00:00,0.04232772397694484
+1990-08-10T19:00:00,0.04230589451446655
+1990-08-10T20:00:00,0.04228408924362346
+1990-08-10T21:00:00,0.042262308099559984
+1990-08-10T22:00:00,0.04224055101764799
+1990-08-10T23:00:00,0.04221881793348593
+1990-08-11T00:00:00,0.042197108782898084
+1990-08-11T01:00:00,0.04217542350193365
+1990-08-11T02:00:00,0.042153762026865986
+1990-08-11T03:00:00,0.04213212429419171
+1990-08-11T04:00:00,0.042110510240629985
+1990-08-11T05:00:00,0.0420889198031216
+1990-08-11T06:00:00,0.042067352918828196
+1990-08-11T07:00:00,0.042045809525131504
+1990-08-11T08:00:00,0.042024289559632465
+1990-08-11T09:00:00,0.042002792960150456
+1990-08-11T10:00:00,0.04198131966472249
+1990-08-11T11:00:00,0.041959869611602425
+1990-08-11T12:00:00,0.041938442739260146
+1990-08-11T13:00:00,0.04191703898638081
+1990-08-11T14:00:00,0.041895658291864
+1990-08-11T15:00:00,0.04187430059482301
+1990-08-11T16:00:00,0.04185296583458399
+1990-08-11T17:00:00,0.04183165395068521
+1990-08-11T18:00:00,0.04181036488287629
+1990-08-11T19:00:00,0.04178909857111738
+1990-08-11T20:00:00,0.04176785495557842
+1990-08-11T21:00:00,0.041746633976638386
+1990-08-11T22:00:00,0.04172543557488447
+1990-08-11T23:00:00,0.041704259691111384
+1990-08-12T00:00:00,0.04168310626632057
+1990-08-12T01:00:00,0.04166197524171937
+1990-08-12T02:00:00,0.04164086655872043
+1990-08-12T03:00:00,0.041619780158940786
+1990-08-12T04:00:00,0.04159871598420124
+1990-08-12T05:00:00,0.041577673976525543
+1990-08-12T06:00:00,0.04155665407813963
+1990-08-12T07:00:00,0.041535656231470965
+1990-08-12T08:00:00,0.04151468037914774
+1990-08-12T09:00:00,0.04149372646399815
+1990-08-12T10:00:00,0.04147279442904966
+1990-08-12T11:00:00,0.0414518842175283
+1990-08-12T12:00:00,0.0414309957728579
+1990-08-12T13:00:00,0.041410129038659385
+1990-08-12T14:00:00,0.041389283958750064
+1990-08-12T15:00:00,0.041368460477142883
+1990-08-12T16:00:00,0.04134765853804574
+1990-08-12T17:00:00,0.041326878085860726
+1990-08-12T18:00:00,0.04130611906518347
+1990-08-12T19:00:00,0.0412853814208024
+1990-08-12T20:00:00,0.04126466509769803
+1990-08-12T21:00:00,0.041243970041042265
+1990-08-12T22:00:00,0.041223296196197724
+1990-08-12T23:00:00,0.041202643508716996
+1990-08-13T00:00:00,0.041182011924341975
+1990-08-13T01:00:00,0.041161401389003156
+1990-08-13T02:00:00,0.04114081184881898
+1990-08-13T03:00:00,0.041120243250095084
+1990-08-13T04:00:00,0.04109969553932364
+1990-08-13T05:00:00,0.041079168663182716
+1990-08-13T06:00:00,0.041058662568535534
+1990-08-13T07:00:00,0.04103817720242983
+1990-08-13T08:00:00,0.04101771251209715
+1990-08-13T09:00:00,0.0409972684449522
+1990-08-13T10:00:00,0.0409768449485922
+1990-08-13T11:00:00,0.040956441970796155
+1990-08-13T12:00:00,0.0409360594595242
+1990-08-13T13:00:00,0.040915697362917024
+1990-08-13T14:00:00,0.04089535562929509
+1990-08-13T15:00:00,0.04087503420715807
+1990-08-13T16:00:00,0.04085473304518411
+1990-08-13T17:00:00,0.04083445209222926
+1990-08-13T18:00:00,0.040814191297326746
+1990-08-13T19:00:00,0.040793950609686394
+1990-08-13T20:00:00,0.04077372997869391
+1990-08-13T21:00:00,0.040753529353910314
+1990-08-13T22:00:00,0.040733348685071245
+1990-08-13T23:00:00,0.040713187922086336
+1990-08-14T00:00:00,0.04069304701503856
+1990-08-14T01:00:00,0.04068404481492597
+1990-08-14T02:00:00,0.05353239836856942
+1990-08-14T03:00:00,0.058695000121286894
+1990-08-14T04:00:00,0.05869545760694831
+1990-08-14T05:00:00,0.058696757444591165
+1990-08-14T06:00:00,0.05869891539507422
+1990-08-14T07:00:00,0.05870194710207431
+1990-08-14T08:00:00,0.06026689680146283
+1990-08-14T09:00:00,0.054708728050892594
+1990-08-14T10:00:00,0.054708581585152474
+1990-08-14T11:00:00,0.054708995745939404
+1990-08-14T12:00:00,0.05470997731492405
+1990-08-14T13:00:00,0.05471153302022361
+1990-08-14T14:00:00,0.05471366953533524
+1990-08-14T15:00:00,0.054716393478070294
+1990-08-14T16:00:00,0.05471971140948982
+1990-08-14T17:00:00,0.0547236298328419
+1990-08-14T18:00:00,0.05472815519250161
+1990-08-14T19:00:00,0.054733293872914215
+1990-08-14T20:00:00,0.05317717917775428
+1990-08-14T21:00:00,0.05874867575234195
+1990-08-14T22:00:00,0.05876375905708737
+1990-08-14T23:00:00,0.05877991129605996
+1990-08-15T00:00:00,0.05879714600754951
+1990-08-15T01:00:00,0.04076369487922256
+1990-08-15T02:00:00,0.04074277049290143
+1990-08-15T03:00:00,0.0407218690018778
+1990-08-15T04:00:00,0.04070099034519876
+1990-08-15T05:00:00,0.04068013446212484
+1990-08-15T06:00:00,0.040659301292129205
+1990-08-15T07:00:00,0.040638490774896854
+1990-08-15T08:00:00,0.040617702850323865
+1990-08-15T09:00:00,0.040596937458516606
+1990-08-15T10:00:00,0.040576194539791
+1990-08-15T11:00:00,0.04055547403467169
+1990-08-15T12:00:00,0.04053477588389135
+1990-08-15T13:00:00,0.04051410002838987
+1990-08-15T14:00:00,0.0404934464093136
+1990-08-15T15:00:00,0.04047281496801463
+1990-08-15T16:00:00,0.04045220564604999
+1990-08-15T17:00:00,0.04043161838518094
+1990-08-15T18:00:00,0.04041105312737218
+1990-08-15T19:00:00,0.04039050981479114
+1990-08-15T20:00:00,0.04036998838980723
+1990-08-15T21:00:00,0.04034948879499108
+1990-08-15T22:00:00,0.04032901097311382
+1990-08-15T23:00:00,0.040308554867146344
+1990-08-16T00:00:00,0.04028812042025857
+1990-08-16T01:00:00,0.04026770757581872
+1990-08-16T02:00:00,0.040247316277392586
+1990-08-16T03:00:00,0.040226946468742815
+1990-08-16T04:00:00,0.040212201095900256
+1990-08-16T05:00:00,0.040214892297804256
+1990-08-16T06:00:00,0.049138285915646986
+1990-08-16T07:00:00,0.051234674616757236
+1990-08-16T08:00:00,0.05221237269386192
+1990-08-16T09:00:00,0.04703322541030349
+1990-08-16T10:00:00,0.04702824141506423
+1990-08-16T11:00:00,0.04702341250297193
+1990-08-16T12:00:00,0.04701873914997645
+1990-08-16T13:00:00,0.04701422182799539
+1990-08-16T14:00:00,0.04700986100489341
+1990-08-16T15:00:00,0.047005657144461845
+1990-08-16T16:00:00,0.0470016107063984
+1990-08-16T17:00:00,0.04699772214628701
+1990-08-16T18:00:00,0.04699399191557792
+1990-08-16T19:00:00,0.04699042046156786
+1990-08-16T20:00:00,0.04601288692345325
+1990-08-16T21:00:00,0.051194348288541865
+1990-08-16T22:00:00,0.05120222600028637
+1990-08-16T23:00:00,0.05121053111150739
+1990-08-17T00:00:00,0.05121926596025227
+1990-08-17T01:00:00,0.04018523422281536
+1990-08-17T02:00:00,0.040164434150454925
+1990-08-17T03:00:00,0.040143657344915325
+1990-08-17T04:00:00,0.040122903743540564
+1990-08-17T05:00:00,0.040102173283894524
+1990-08-17T06:00:00,0.04008146590376007
+1990-08-17T07:00:00,0.040060781541138325
+1990-08-17T08:00:00,0.04004012013424781
+1990-08-17T09:00:00,0.040019481621523696
+1990-08-17T10:00:00,0.039998865941616966
+1990-08-17T11:00:00,0.039978273033393665
+1990-08-17T12:00:00,0.03995770283593407
+1990-08-17T13:00:00,0.039937155288531936
+1990-08-17T14:00:00,0.03991663033069369
+1990-08-17T15:00:00,0.03989612790213768
+1990-08-17T16:00:00,0.03987564794279335
+1990-08-17T17:00:00,0.039855190392800534
+1990-08-17T18:00:00,0.03983475519250861
+1990-08-17T19:00:00,0.0398143422824758
+1990-08-17T20:00:00,0.03979395160346834
+1990-08-17T21:00:00,0.03977358309645978
+1990-08-17T22:00:00,0.039753236702630174
+1990-08-17T23:00:00,0.03973291236336533
+1990-08-18T00:00:00,0.03971261002025612
+1990-08-18T01:00:00,0.039692329615097624
+1990-08-18T02:00:00,0.03967207108988845
+1990-08-18T03:00:00,0.03965183438682998
+1990-08-18T04:00:00,0.039631619448325626
+1990-08-18T05:00:00,0.03961142621698005
+1990-08-18T06:00:00,0.03959125463559851
+1990-08-18T07:00:00,0.03957110464718603
+1990-08-18T08:00:00,0.03955097619494673
+1990-08-18T09:00:00,0.03953086922228307
+1990-08-18T10:00:00,0.03951078367279514
+1990-08-18T11:00:00,0.03949071949027994
+1990-08-18T12:00:00,0.03947067661873062
+1990-08-18T13:00:00,0.03945065500233581
+1990-08-18T14:00:00,0.03943065458547887
+1990-08-18T15:00:00,0.03941067531273721
+1990-08-18T16:00:00,0.039390717128881515
+1990-08-18T17:00:00,0.03937077997887512
+1990-08-18T18:00:00,0.039350863807873254
+1990-08-18T19:00:00,0.03933096856122234
+1990-08-18T20:00:00,0.03931109418445932
+1990-08-18T21:00:00,0.039291240623310915
+1990-08-18T22:00:00,0.03927140782369299
+1990-08-18T23:00:00,0.03925159573170978
+1990-08-19T00:00:00,0.0392318042936533
+1990-08-19T01:00:00,0.039212033456002555
+1990-08-19T02:00:00,0.039192283165422954
+1990-08-19T03:00:00,0.03917255336876553
+1990-08-19T04:00:00,0.03915284401306635
+1990-08-19T05:00:00,0.03913315504554579
+1990-08-19T06:00:00,0.03911348641360784
+1990-08-19T07:00:00,0.03909383806483948
+1990-08-19T08:00:00,0.03907420994701
+1990-08-19T09:00:00,0.0390546020080703
+1990-08-19T10:00:00,0.039035014196152275
+1990-08-19T11:00:00,0.03901544645956811
+1990-08-19T12:00:00,0.03899589874680962
+1990-08-19T13:00:00,0.03897637100654764
+1990-08-19T14:00:00,0.038956863187631335
+1990-08-19T15:00:00,0.03893737523908754
+1990-08-19T16:00:00,0.03891790711012011
+1990-08-19T17:00:00,0.03889845875010932
+1990-08-19T18:00:00,0.03887903010861117
+1990-08-19T19:00:00,0.03885962113535672
+1990-08-19T20:00:00,0.03884023178025154
+1990-08-19T21:00:00,0.038820861993375005
+1990-08-19T22:00:00,0.03880151172497965
+1990-08-19T23:00:00,0.03878218092549057
+1990-08-20T00:00:00,0.03876286954550479
+1990-08-20T01:00:00,0.03874357753579062
+1990-08-20T02:00:00,0.03872430484728702
+1990-08-20T03:00:00,0.038705051431103
+1990-08-20T04:00:00,0.03868581723851699
+1990-08-20T05:00:00,0.038666602220976225
+1990-08-20T06:00:00,0.0386474063300961
+1990-08-20T07:00:00,0.0386282295176596
+1990-08-20T08:00:00,0.038609071735616646
+1990-08-20T09:00:00,0.03858993293608352
+1990-08-20T10:00:00,0.03857081307134221
+1990-08-20T11:00:00,0.038551712093839896
+1990-08-20T12:00:00,0.03853262995618822
+1990-08-20T13:00:00,0.03851356661116278
+1990-08-20T14:00:00,0.038494522011702496
+1990-08-20T15:00:00,0.03847549611090903
+1990-08-20T16:00:00,0.03845648886204617
+1990-08-20T17:00:00,0.03843750021853923
+1990-08-20T18:00:00,0.03841853013397452
+1990-08-20T19:00:00,0.038399578562098684
+1990-08-20T20:00:00,0.038380645456818144
+1990-08-20T21:00:00,0.03836173077219853
+1990-08-20T22:00:00,0.038342834462464094
+1990-08-20T23:00:00,0.03832395648199711
+1990-08-21T00:00:00,0.038305096785337306
+1990-08-21T01:00:00,0.03828625532718132
+1990-08-21T02:00:00,0.03826743206238207
+1990-08-21T03:00:00,0.03824862694594824
+1990-08-21T04:00:00,0.03822983993304366
+1990-08-21T05:00:00,0.03821107097898677
+1990-08-21T06:00:00,0.03819232003925009
+1990-08-21T07:00:00,0.038173587069459565
+1990-08-21T08:00:00,0.038154872025394075
+1990-08-21T09:00:00,0.03813617486298488
+1990-08-21T10:00:00,0.03811749553831501
+1990-08-21T11:00:00,0.03809883400761878
+1990-08-21T12:00:00,0.03808019022728119
+1990-08-21T13:00:00,0.03806156415383735
+1990-08-21T14:00:00,0.03804295574397205
+1990-08-21T15:00:00,0.03802436495451905
+1990-08-21T16:00:00,0.03800579174246068
+1990-08-21T17:00:00,0.03798723606492721
+1990-08-21T18:00:00,0.03796869787919634
+1990-08-21T19:00:00,0.03795017714269268
+1990-08-21T20:00:00,0.03793167381298716
+1990-08-21T21:00:00,0.037913187847796584
+1990-08-21T22:00:00,0.03789471920498298
+1990-08-21T23:00:00,0.03787626784255319
+1990-08-22T00:00:00,0.037857833718658265
+1990-08-22T01:00:00,0.03783941679159298
+1990-08-22T02:00:00,0.03782101701979523
+1990-08-22T03:00:00,0.03780263436184566
+1990-08-22T04:00:00,0.03778426877646698
+1990-08-22T05:00:00,0.03776592022252356
+1990-08-22T06:00:00,0.037747588659020864
+1990-08-22T07:00:00,0.037729274045104955
+1990-08-22T08:00:00,0.03771097634006196
+1990-08-22T09:00:00,0.037692695503317566
+1990-08-22T10:00:00,0.03767443149443655
+1990-08-22T11:00:00,0.03765618427312222
+1990-08-22T12:00:00,0.037637953799215924
+1990-08-22T13:00:00,0.03761974003269657
+1990-08-22T14:00:00,0.037601542933680114
+1990-08-22T15:00:00,0.037583362462419015
+1990-08-22T16:00:00,0.03756519857930183
+1990-08-22T17:00:00,0.03754705124485262
+1990-08-22T18:00:00,0.03752892041973056
+1990-08-22T19:00:00,0.03751080606472932
+1990-08-22T20:00:00,0.037492708140776675
+1990-08-22T21:00:00,0.037474626608934004
+1990-08-22T22:00:00,0.03745656143039576
+1990-08-22T23:00:00,0.03743851256648901
+1990-08-23T00:00:00,0.037420479978672976
+1990-08-23T01:00:00,0.0374024636285385
+1990-08-23T02:00:00,0.037384463477807627
+1990-08-23T03:00:00,0.03736647948833306
+1990-08-23T04:00:00,0.037348511622097735
+1990-08-23T05:00:00,0.03733055984121436
+1990-08-23T06:00:00,0.037312624107924845
+1990-08-23T07:00:00,0.03729470438459998
+1990-08-23T08:00:00,0.03727680063373882
+1990-08-23T09:00:00,0.037258912817968316
+1990-08-23T10:00:00,0.03724104090004282
+1990-08-23T11:00:00,0.037223184842843614
+1990-08-23T12:00:00,0.037205344609378424
+1990-08-23T13:00:00,0.037187520162781054
+1990-08-23T14:00:00,0.03716971146631079
+1990-08-23T15:00:00,0.03715191848335207
+1990-08-23T16:00:00,0.03713414117741395
+1990-08-23T17:00:00,0.03711637951212966
+1990-08-23T18:00:00,0.0370986334512562
+1990-08-23T19:00:00,0.037080902958673834
+1990-08-23T20:00:00,0.037063187998385684
+1990-08-23T21:00:00,0.03704548853451723
+1990-08-23T22:00:00,0.03702780453131593
+1990-08-23T23:00:00,0.03701013595315074
+1990-08-24T00:00:00,0.03699248276451165
+1990-08-24T01:00:00,0.036974844930009305
+1990-08-24T02:00:00,0.036957222414374505
+1990-08-24T03:00:00,0.03693961518245782
+1990-08-24T04:00:00,0.03692202319922911
+1990-08-24T05:00:00,0.03690444642977711
+1990-08-24T06:00:00,0.036886884839309006
+1990-08-24T07:00:00,0.03686933839315001
+1990-08-24T08:00:00,0.03685180705674289
+1990-08-24T09:00:00,0.03683429079564759
+1990-08-24T10:00:00,0.036816789575540784
+1990-08-24T11:00:00,0.03679930336221543
+1990-08-24T12:00:00,0.0367818321215804
+1990-08-24T13:00:00,0.036764375819660015
+1990-08-24T14:00:00,0.03674693442259363
+1990-08-24T15:00:00,0.03672950789663525
+1990-08-24T16:00:00,0.03671209620815307
+1990-08-24T17:00:00,0.03669469932362907
+1990-08-24T18:00:00,0.03667731720965863
+1990-08-24T19:00:00,0.036659949832950095
+1990-08-24T20:00:00,0.03664259716032434
+1990-08-24T21:00:00,0.036625259158714445
+1990-08-24T22:00:00,0.036607935795165164
+1990-08-24T23:00:00,0.036590627036832656
+1990-08-25T00:00:00,0.03657333285098395
+1990-08-25T01:00:00,0.03655605320499664
+1990-08-25T02:00:00,0.03653878806635845
+1990-08-25T03:00:00,0.036521537402666795
+1990-08-25T04:00:00,0.036504301181628465
+1990-08-25T05:00:00,0.036487079371059154
+1990-08-25T06:00:00,0.0364698719388831
+1990-08-25T07:00:00,0.036452678853132685
+1990-08-25T08:00:00,0.03643550008194803
+1990-08-25T09:00:00,0.036418335593576635
+1990-08-25T10:00:00,0.03640118535637296
+1990-08-25T11:00:00,0.03638404933879803
+1990-08-25T12:00:00,0.036366927509419104
+1990-08-25T13:00:00,0.036349819836909214
+1990-08-25T14:00:00,0.036332726290046816
+1990-08-25T15:00:00,0.03631564683771545
+1990-08-25T16:00:00,0.036298581448903265
+1990-08-25T17:00:00,0.03628153009270273
+1990-08-25T18:00:00,0.03626449273831019
+1990-08-25T19:00:00,0.03624746935502555
+1990-08-25T20:00:00,0.03623045991225183
+1990-08-25T21:00:00,0.036213464379494846
+1990-08-25T22:00:00,0.036196482726362826
+1990-08-25T23:00:00,0.03617951492256602
+1990-08-26T00:00:00,0.036162569814300806
+1990-08-26T01:00:00,0.03615650339866563
+1990-08-26T02:00:00,0.03615063422116626
+1990-08-26T03:00:00,0.04294234703088994
+1990-08-26T04:00:00,0.04375223241450217
+1990-08-26T05:00:00,0.04374682865917285
+1990-08-26T06:00:00,0.04374158176020646
+1990-08-26T07:00:00,0.043736492567392544
+1990-08-26T08:00:00,0.044416015069383925
+1990-08-26T09:00:00,0.0397044739875157
+1990-08-26T10:00:00,0.03969327593189425
+1990-08-26T11:00:00,0.03968211734671399
+1990-08-26T12:00:00,0.039670998276518925
+1990-08-26T13:00:00,0.03965991876565943
+1990-08-26T14:00:00,0.03964887885829101
+1990-08-26T15:00:00,0.03963787859837314
+1990-08-26T16:00:00,0.03962691802966799
+1990-08-26T17:00:00,0.03961599719573925
+1990-08-26T18:00:00,0.03960511613995096
+1990-08-26T19:00:00,0.0395942749054662
+1990-08-26T20:00:00,0.0388989227386279
+1990-08-26T21:00:00,0.04359545161591476
+1990-08-26T22:00:00,0.04359184157125272
+1990-08-26T23:00:00,0.04358839700750688
+1990-08-27T00:00:00,0.04358511872151803
+1990-08-27T01:00:00,0.04345364092303577
+1990-08-27T02:00:00,0.04325040446050745
+1990-08-27T03:00:00,0.043247002933427314
+1990-08-27T04:00:00,0.04324375630086168
+1990-08-27T05:00:00,0.04324066522355416
+1990-08-27T06:00:00,0.04323773035738111
+1990-08-27T07:00:00,0.04323495235331092
+1990-08-27T08:00:00,0.04390636864457778
+1990-08-27T09:00:00,0.03759476218287617
+1990-08-27T10:00:00,0.0375809214020456
+1990-08-27T11:00:00,0.03756709703040224
+1990-08-27T12:00:00,0.03755328904889536
+1990-08-27T13:00:00,0.037539497438538856
+1990-08-27T14:00:00,0.03752572218041107
+1990-08-27T15:00:00,0.03751196325565443
+1990-08-27T16:00:00,0.03749822064547517
+1990-08-27T17:00:00,0.037484494331143106
+1990-08-27T18:00:00,0.03747078429399129
+1990-08-27T19:00:00,0.037457090515415764
+1990-08-27T20:00:00,0.03676931966330493
+1990-08-27T21:00:00,0.04306516166404132
+1990-08-27T22:00:00,0.04306341466412069
+1990-08-27T23:00:00,0.04306182853608457
+1990-08-28T00:00:00,0.04306040389465487
+1990-08-28T01:00:00,0.03575813458367972
+1990-08-28T02:00:00,0.035740941542016735
+1990-08-28T03:00:00,0.03572376388485186
+1990-08-28T04:00:00,0.03570660157609507
+1990-08-28T05:00:00,0.03568945457977941
+1990-08-28T06:00:00,0.03567232286006051
+1990-08-28T07:00:00,0.035655206381216165
+1990-08-28T08:00:00,0.03563810510764589
+1990-08-28T09:00:00,0.03562101900387048
+1990-08-28T10:00:00,0.03560394803453154
+1990-08-28T11:00:00,0.03558689216439108
+1990-08-28T12:00:00,0.035569851358331066
+1990-08-28T13:00:00,0.03555282558135297
+1990-08-28T14:00:00,0.03553581479857735
+1990-08-28T15:00:00,0.03551881897524342
+1990-08-28T16:00:00,0.035501838076708606
+1990-08-28T17:00:00,0.03548487206844812
+1990-08-28T18:00:00,0.03546792091605454
+1990-08-28T19:00:00,0.03545098458523736
+1990-08-28T20:00:00,0.03543406304182262
+1990-08-28T21:00:00,0.035417156251752395
+1990-08-28T22:00:00,0.03540026418108444
+1990-08-28T23:00:00,0.035383386795991796
+1990-08-29T00:00:00,0.03536652406276225
+1990-08-29T01:00:00,0.03534967594779805
+1990-08-29T02:00:00,0.035332842417615425
+1990-08-29T03:00:00,0.035316023438844144
+1990-08-29T04:00:00,0.03529921897822719
+1990-08-29T05:00:00,0.035282429002620255
+1990-08-29T06:00:00,0.035265653478991396
+1990-08-29T07:00:00,0.03524889237442059
+1990-08-29T08:00:00,0.03523214565609937
+1990-08-29T09:00:00,0.03521541329133035
+1990-08-29T10:00:00,0.03519869524752689
+1990-08-29T11:00:00,0.03518199149221266
+1990-08-29T12:00:00,0.03516530199302124
+1990-08-29T13:00:00,0.03514862671769571
+1990-08-29T14:00:00,0.035131965634088325
+1990-08-29T15:00:00,0.03511531871016
+1990-08-29T16:00:00,0.03509868591397999
+1990-08-29T17:00:00,0.03508206721372551
+1990-08-29T18:00:00,0.0350654625776813
+1990-08-29T19:00:00,0.03504887197423923
+1990-08-29T20:00:00,0.035032295371897997
+1990-08-29T21:00:00,0.0350157327392626
+1990-08-29T22:00:00,0.03499918404504406
+1990-08-29T23:00:00,0.034982649258059
+1990-08-30T00:00:00,0.034966128347229265
+1990-08-30T01:00:00,0.034949621281581536
+1990-08-30T02:00:00,0.04894008010452429
+1990-08-30T03:00:00,0.0710566037839494
+1990-08-30T04:00:00,0.07111662606173422
+1990-08-30T05:00:00,0.071180984231796
+1990-08-30T06:00:00,0.07124978241068794
+1990-08-30T07:00:00,0.07132312181481348
+1990-08-30T08:00:00,0.07446300312332442
+1990-08-30T09:00:00,0.06945895070132917
+1990-08-30T10:00:00,0.06954068015960027
+1990-08-30T11:00:00,0.06962677397630875
+1990-08-30T12:00:00,0.06971730339668641
+1990-08-30T13:00:00,0.0698123370065251
+1990-08-30T14:00:00,0.0699119407010433
+1990-08-30T15:00:00,0.07001617765973858
+1990-08-30T16:00:00,0.07012510832696478
+1990-08-30T17:00:00,0.07023879039797323
+1990-08-30T18:00:00,0.07035727881015862
+1990-08-30T19:00:00,0.07048062573925282
+1990-08-30T20:00:00,0.06754170770830353
+1990-08-30T21:00:00,0.07276512762339657
+1990-08-30T22:00:00,0.07291268868799389
+1990-08-30T23:00:00,0.07306593220895932
+1990-08-31T00:00:00,0.07322490468233367
+1990-08-31T01:00:00,0.03977372909270113
+1990-08-31T02:00:00,0.040008134208904825
+1990-08-31T03:00:00,0.0400005832750075
+1990-08-31T04:00:00,0.039993067076175386
+1990-08-31T05:00:00,0.0399855855656546
+1990-08-31T06:00:00,0.03997813869675946
+1990-08-31T07:00:00,0.039970726422872055
+1990-08-31T08:00:00,0.040231697001398066
+1990-08-31T09:00:00,0.03713246543377744
+1990-08-31T10:00:00,0.03711029768412884
+1990-08-31T11:00:00,0.03708816336895732
+1990-08-31T12:00:00,0.037066062386174124
+1990-08-31T13:00:00,0.037043994634057005
+1990-08-31T14:00:00,0.03702196001124886
+1990-08-31T15:00:00,0.03699995841675638
+1990-08-31T16:00:00,0.036977989749948745
+1990-08-31T17:00:00,0.03695605391055624
+1990-08-31T18:00:00,0.03693415079866891
+1990-08-31T19:00:00,0.0369122803147353
+1990-08-31T20:00:00,0.03689044235956105
+1990-08-31T21:00:00,0.038600867381162376
+1990-08-31T22:00:00,0.039681996388009406
+1990-08-31T23:00:00,0.03967508626044064
+1990-09-01T00:00:00,0.039668209451555636
+1990-09-01T01:00:00,0.03832432945675725
+1990-09-01T02:00:00,0.036822404556041806
+1990-09-01T03:00:00,0.036800646392646484
+1990-09-01T04:00:00,0.03677892047171063
+1990-09-01T05:00:00,0.03675722669539483
+1990-09-01T06:00:00,0.03673556496621052
+1990-09-01T07:00:00,0.036713935187018654
+1990-09-01T08:00:00,0.03669233726102841
+1990-09-01T09:00:00,0.036670771091795916
+1990-09-01T10:00:00,0.036649236583222985
+1990-09-01T11:00:00,0.03662773363955579
+1990-09-01T12:00:00,0.036606262165383666
+1990-09-01T13:00:00,0.03658482206563776
+1990-09-01T14:00:00,0.036563413245589836
+1990-09-01T15:00:00,0.03654203561085099
+1990-09-01T16:00:00,0.03652068906737038
+1990-09-01T17:00:00,0.03649937352143402
+1990-09-01T18:00:00,0.03647808887966349
+1990-09-01T19:00:00,0.036456835049014744
+1990-09-01T20:00:00,0.036435611936776836
+1990-09-01T21:00:00,0.03641441945057072
+1990-09-01T22:00:00,0.03639325749834801
+1990-09-01T23:00:00,0.036372125988389736
+1990-09-02T00:00:00,0.036351024829305204
+1990-09-02T01:00:00,0.036329953930030696
+1990-09-02T02:00:00,0.03630891319982833
+1990-09-02T03:00:00,0.03628790254828478
+1990-09-02T04:00:00,0.03626692188531021
+1990-09-02T05:00:00,0.03624597112113692
+1990-09-02T06:00:00,0.03622505016631828
+1990-09-02T07:00:00,0.03620415893172751
+1990-09-02T08:00:00,0.03618329732855645
+1990-09-02T09:00:00,0.03616246526831447
+1990-09-02T10:00:00,0.036141662662827236
+1990-09-02T11:00:00,0.03612088942423557
+1990-09-02T12:00:00,0.036100145464994265
+1990-09-02T13:00:00,0.036079430697870965
+1990-09-02T14:00:00,0.036058745035944986
+1990-09-02T15:00:00,0.03603808839260616
+1990-09-02T16:00:00,0.03601746068155371
+1990-09-02T17:00:00,0.03599686181679508
+1990-09-02T18:00:00,0.03597629171264484
+1990-09-02T19:00:00,0.035955750283723525
+1990-09-02T20:00:00,0.03593523744495651
+1990-09-02T21:00:00,0.03591475311157289
+1990-09-02T22:00:00,0.03589429719910434
+1990-09-02T23:00:00,0.03587386962338407
+1990-09-03T00:00:00,0.03585347030054561
+1990-09-03T01:00:00,0.035833099147021784
+1990-09-03T02:00:00,0.03581275607954356
+1990-09-03T03:00:00,0.035792441015138995
+1990-09-03T04:00:00,0.0357721538711321
+1990-09-03T05:00:00,0.03575189456514175
+1990-09-03T06:00:00,0.035731663015080635
+1990-09-03T07:00:00,0.03571145913915414
+1990-09-03T08:00:00,0.035691282855859284
+1990-09-03T09:00:00,0.03567113408398365
+1990-09-03T10:00:00,0.035651012742604266
+1990-09-03T11:00:00,0.035630918751086635
+1990-09-03T12:00:00,0.03561085202908358
+1990-09-03T13:00:00,0.03559081249653424
+1990-09-03T14:00:00,0.03557080007366296
+1990-09-03T15:00:00,0.03555081468097832
+1990-09-03T16:00:00,0.03553085623927203
+1990-09-03T17:00:00,0.035510924669617895
+1990-09-03T18:00:00,0.035491019893370765
+1990-09-03T19:00:00,0.03547114183216557
+1990-09-03T20:00:00,0.035451290407916176
+1990-09-03T21:00:00,0.03543146554281445
+1990-09-03T22:00:00,0.035411667159329224
+1990-09-03T23:00:00,0.03539189518020521
+1990-09-04T00:00:00,0.03537214952846205
+1990-09-04T01:00:00,0.03535243012739329
+1990-09-04T02:00:00,0.03537009348423251
+1990-09-04T03:00:00,0.04147550854992874
+1990-09-04T04:00:00,0.04958562821062139
+1990-09-04T05:00:00,0.04963431144144845
+1990-09-04T06:00:00,0.04968379235956775
+1990-09-04T07:00:00,0.04973407249895236
+1990-09-04T08:00:00,0.04863686080929631
+1990-09-04T09:00:00,0.04279671466609827
+1990-09-04T10:00:00,0.04281284279875095
+1990-09-04T11:00:00,0.042829151783772675
+1990-09-04T12:00:00,0.042845641631480726
+1990-09-04T13:00:00,0.042862312347478435
+1990-09-04T14:00:00,0.04287916393267606
+1990-09-04T15:00:00,0.042896196383311824
+1990-09-04T16:00:00,0.04291340969097313
+1990-09-04T17:00:00,0.04293080384261798
+1990-09-04T18:00:00,0.042948378820596565
+1990-09-04T19:00:00,0.04296613460267305
+1990-09-04T20:00:00,0.04413285214201834
+1990-09-04T21:00:00,0.050045814940392834
+1990-09-04T22:00:00,0.05010349416134043
+1990-09-04T23:00:00,0.050161983992932126
+1990-09-05T00:00:00,0.05022128511045789
+1990-09-05T01:00:00,0.036078867280125826
+1990-09-05T02:00:00,0.0360570380039463
+1990-09-05T03:00:00,0.03603524238747809
+1990-09-05T04:00:00,0.0360134803271925
+1990-09-05T05:00:00,0.03599175171993293
+1990-09-05T06:00:00,0.03597005646291347
+1990-09-05T07:00:00,0.03594839445371761
+1990-09-05T08:00:00,0.03592676559029681
+1990-09-05T09:00:00,0.03590516977096915
+1990-09-05T10:00:00,0.035883606894418
+1990-09-05T11:00:00,0.035862076859690645
+1990-09-05T12:00:00,0.03584057956619697
+1990-09-05T13:00:00,0.03581911491370806
+1990-09-05T14:00:00,0.035797682802354944
+1990-09-05T15:00:00,0.035776283132627214
+1990-09-05T16:00:00,0.035754915805371705
+1990-09-05T17:00:00,0.0357335807217912
+1990-09-05T18:00:00,0.03571227778344308
+1990-09-05T19:00:00,0.03569100689223806
+1990-09-05T20:00:00,0.03566976795043882
+1990-09-05T21:00:00,0.035648560860658776
+1990-09-05T22:00:00,0.03562738552586072
+1990-09-05T23:00:00,0.0356062418493556
+1990-09-06T00:00:00,0.03558512973480116
+1990-09-06T01:00:00,0.03556404908620069
+1990-09-06T02:00:00,0.03554299980790179
+1990-09-06T03:00:00,0.03552198180459503
+1990-09-06T04:00:00,0.03550099498131273
+1990-09-06T05:00:00,0.035480039243427706
+1990-09-06T06:00:00,0.03545911449665192
+1990-09-06T07:00:00,0.035454673629237404
+1990-09-06T08:00:00,0.03546245271514076
+1990-09-06T09:00:00,0.03544151520338797
+1990-09-06T10:00:00,0.035420608667261565
+1990-09-06T11:00:00,0.03539973301284693
+1990-09-06T12:00:00,0.03537888814656606
+1990-09-06T13:00:00,0.03535807397517629
+1990-09-06T14:00:00,0.03533729040576907
+1990-09-06T15:00:00,0.03531653734576874
+1990-09-06T16:00:00,0.03529581470293129
+1990-09-06T17:00:00,0.035275122385343145
+1990-09-06T18:00:00,0.035254460301419925
+1990-09-06T19:00:00,0.035233828359905246
+1990-09-06T20:00:00,0.03521322646986951
+1990-09-06T21:00:00,0.03520391318330617
+1990-09-06T22:00:00,0.03521481050217786
+1990-09-06T23:00:00,0.04051971587201647
+1990-09-07T00:00:00,0.040778038834488925
+1990-09-07T01:00:00,0.04037041980721227
+1990-09-07T02:00:00,0.04065650927469719
+1990-09-07T03:00:00,0.040667094700707646
+1990-09-07T04:00:00,0.04067777714875242
+1990-09-07T05:00:00,0.04068855655777916
+1990-09-07T06:00:00,0.04069943286543966
+1990-09-07T07:00:00,0.04071040600809646
+1990-09-07T08:00:00,0.04027035270089743
+1990-09-07T09:00:00,0.03682090399654355
+1990-09-07T10:00:00,0.03680891921886667
+1990-09-07T11:00:00,0.036796954947531484
+1990-09-07T12:00:00,0.03678501113825327
+1990-09-07T13:00:00,0.03677308774689399
+1990-09-07T14:00:00,0.03676118472946176
+1990-09-07T15:00:00,0.03674930204211024
+1990-09-07T16:00:00,0.03673743964113815
+1990-09-07T17:00:00,0.036725597482988606
+1990-09-07T18:00:00,0.03671377552424866
+1990-09-07T19:00:00,0.036701973721648656
+1990-09-07T20:00:00,0.03714135802118511
+1990-09-07T21:00:00,0.04059052196969118
+1990-09-07T22:00:00,0.04060233849339357
+1990-09-07T23:00:00,0.040614250895766646
+1990-09-08T00:00:00,0.040626259103148855
+1990-09-08T01:00:00,0.03520486381298648
+1990-09-08T02:00:00,0.03518379994104162
+1990-09-08T03:00:00,0.03516276794828009
+1990-09-08T04:00:00,0.03514176773728565
+1990-09-08T05:00:00,0.035120799210991656
+1990-09-08T06:00:00,0.03509986227267989
+1990-09-08T07:00:00,0.035078956825979134
+1990-09-08T08:00:00,0.035058082774863976
+1990-09-08T09:00:00,0.03503724002365348
+1990-09-08T10:00:00,0.035016428477009955
+1990-09-08T11:00:00,0.034995648039937675
+1990-09-08T12:00:00,0.034974898617781615
+1990-09-08T13:00:00,0.03495418011622616
+1990-09-08T14:00:00,0.03493349244129392
+1990-09-08T15:00:00,0.03491283549934443
+1990-09-08T16:00:00,0.03489220919707292
+1990-09-08T17:00:00,0.03487161344150907
+1990-09-08T18:00:00,0.034851048140015786
+1990-09-08T19:00:00,0.034830513200287974
+1990-09-08T20:00:00,0.03481000853035128
+1990-09-08T21:00:00,0.03478953403856092
+1990-09-08T22:00:00,0.03476908963360044
+1990-09-08T23:00:00,0.034748675224480476
+1990-09-09T00:00:00,0.034728290720537604
+1990-09-09T01:00:00,0.0347079360314331
+1990-09-09T02:00:00,0.03468761106715173
+1990-09-09T03:00:00,0.03466731573800058
+1990-09-09T04:00:00,0.0346470499546079
+1990-09-09T05:00:00,0.034626813627921825
+1990-09-09T06:00:00,0.03460660666920929
+1990-09-09T07:00:00,0.034586428990054804
+1990-09-09T08:00:00,0.034566280502359284
+1990-09-09T09:00:00,0.034546161118338886
+1990-09-09T10:00:00,0.03452607075052388
+1990-09-09T11:00:00,0.0345060093117574
+1990-09-09T12:00:00,0.03448597671519444
+1990-09-09T13:00:00,0.03446597287430053
+1990-09-09T14:00:00,0.03444599770285071
+1990-09-09T15:00:00,0.034426051114928365
+1990-09-09T16:00:00,0.034406133024924054
+1990-09-09T17:00:00,0.034386243347534415
+1990-09-09T18:00:00,0.034366381997761
+1990-09-09T19:00:00,0.0343465488909092
+1990-09-09T20:00:00,0.03432674394258708
+1990-09-09T21:00:00,0.03430696706870427
+1990-09-09T22:00:00,0.03428721818547088
+1990-09-09T23:00:00,0.03426749720939638
+1990-09-10T00:00:00,0.034247804057288486
+1990-09-10T01:00:00,0.03422813864625202
+1990-09-10T02:00:00,0.03420850089368793
+1990-09-10T03:00:00,0.0341888907172921
+1990-09-10T04:00:00,0.03416930803505428
+1990-09-10T05:00:00,0.03414975276525703
+1990-09-10T06:00:00,0.034130224826474626
+1990-09-10T07:00:00,0.03411072413757198
+1990-09-10T08:00:00,0.034091250617703565
+1990-09-10T09:00:00,0.03407180418631237
+1990-09-10T10:00:00,0.03405238476312882
+1990-09-10T11:00:00,0.03403299226816973
+1990-09-10T12:00:00,0.03401362662173721
+1990-09-10T13:00:00,0.03399428774441768
+1990-09-10T14:00:00,0.03397497555708075
+1990-09-10T15:00:00,0.03395568998087826
+1990-09-10T16:00:00,0.03393643093724314
+1990-09-10T17:00:00,0.03391719834788848
+1990-09-10T18:00:00,0.033897992134806404
+1990-09-10T19:00:00,0.03387881222026712
+1990-09-10T20:00:00,0.03385965852681781
+1990-09-10T21:00:00,0.03384053097728174
+1990-09-10T22:00:00,0.03382142949475709
+1990-09-10T23:00:00,0.03380235400261603
+1990-09-11T00:00:00,0.03378330442450372
+1990-09-11T01:00:00,0.03376428068433727
+1990-09-11T02:00:00,0.03374528270630474
+1990-09-11T03:00:00,0.033726310414864166
+1990-09-11T04:00:00,0.03370736373474256
+1990-09-11T05:00:00,0.03368844259093486
+1990-09-11T06:00:00,0.03366954690870306
+1990-09-11T07:00:00,0.03365067661357513
+1990-09-11T08:00:00,0.03363183163134407
+1990-09-11T09:00:00,0.03361301188806693
+1990-09-11T10:00:00,0.03359421731006385
+1990-09-11T11:00:00,0.033575447823917096
+1990-09-11T12:00:00,0.03355670335647005
+1990-09-11T13:00:00,0.0335379838348263
+1990-09-11T14:00:00,0.03351928918634868
+1990-09-11T15:00:00,0.033500619338658257
+1990-09-11T16:00:00,0.03348197421963346
+1990-09-11T17:00:00,0.033463353757409095
+1990-09-11T18:00:00,0.03344475788037539
+1990-09-11T19:00:00,0.033426186517177076
+1990-09-11T20:00:00,0.03340763959671242
+1990-09-11T21:00:00,0.033389117048132355
+1990-09-11T22:00:00,0.03337061880083949
+1990-09-11T23:00:00,0.03335214478448719
+1990-09-12T00:00:00,0.033333694928978704
+1990-09-12T01:00:00,0.03331526916446618
+1990-09-12T02:00:00,0.03329686742134979
+1990-09-12T03:00:00,0.03327848963027682
+1990-09-12T04:00:00,0.03326013572214073
+1990-09-12T05:00:00,0.03324180562808027
+1990-09-12T06:00:00,0.03322349927947859
+1990-09-12T07:00:00,0.03320521660796232
+1990-09-12T08:00:00,0.03318695754540068
+1990-09-12T09:00:00,0.033168722023904584
+1990-09-12T10:00:00,0.03315050997582579
+1990-09-12T11:00:00,0.03313232133375591
+1990-09-12T12:00:00,0.03311415603052567
+1990-09-12T13:00:00,0.033096013999203935
+1990-09-12T14:00:00,0.03307789517309686
+1990-09-12T15:00:00,0.03305979948574701
+1990-09-12T16:00:00,0.033041726870932514
+1990-09-12T17:00:00,0.03302367726266616
+1990-09-12T18:00:00,0.03300565059519457
+1990-09-12T19:00:00,0.032987646802997345
+1990-09-12T20:00:00,0.032969665820786156
+1990-09-12T21:00:00,0.03295170758350394
+1990-09-12T22:00:00,0.03293377202632405
+1990-09-12T23:00:00,0.03291585908464937
+1990-09-13T00:00:00,0.032897968694111504
+1990-09-13T01:00:00,0.03288010079056993
+1990-09-13T02:00:00,0.032862255310111166
+1990-09-13T03:00:00,0.032844432189047916
+1990-09-13T04:00:00,0.03282663136391826
+1990-09-13T05:00:00,0.03280885277148482
+1990-09-13T06:00:00,0.03279109634873393
+1990-09-13T07:00:00,0.03277336203287482
+1990-09-13T08:00:00,0.03275564976133881
+1990-09-13T09:00:00,0.03273795947177846
+1990-09-13T10:00:00,0.03272029110206678
+1990-09-13T11:00:00,0.03270264459029642
+1990-09-13T12:00:00,0.03268501987477888
+1990-09-13T13:00:00,0.03266741689404364
+1990-09-13T14:00:00,0.0326498355868375
+1990-09-13T15:00:00,0.03263227589212357
+1990-09-13T16:00:00,0.03261473774908068
+1990-09-13T17:00:00,0.03259722109710247
+1990-09-13T18:00:00,0.03257972587579664
+1990-09-13T19:00:00,0.03256225202498417
+1990-09-13T20:00:00,0.0325447994846985
+1990-09-13T21:00:00,0.03252736819518482
+1990-09-13T22:00:00,0.0325099580968992
+1990-09-13T23:00:00,0.032492569130507895
+1990-09-14T00:00:00,0.03247520123688652
+1990-09-14T01:00:00,0.032457854357119335
+1990-09-14T02:00:00,0.03244052843249843
+1990-09-14T03:00:00,0.03242322340452297
+1990-09-14T04:00:00,0.03240593921489849
+1990-09-14T05:00:00,0.03238867580553605
+1990-09-14T06:00:00,0.03237143311855155
+1990-09-14T07:00:00,0.03235421109626492
+1990-09-14T08:00:00,0.03233700968119946
+1990-09-14T09:00:00,0.032319828816080996
+1990-09-14T10:00:00,0.032302668443837196
+1990-09-14T11:00:00,0.03228552850759681
+1990-09-14T12:00:00,0.03226840895068896
+1990-09-14T13:00:00,0.03225130971664233
+1990-09-14T14:00:00,0.032234230749184536
+1990-09-14T15:00:00,0.032217171992241306
+1990-09-14T16:00:00,0.03220013338993584
+1990-09-14T17:00:00,0.03218311488658799
+1990-09-14T18:00:00,0.03216611642671362
+1990-09-14T19:00:00,0.03214913795502384
+1990-09-14T20:00:00,0.0321321794164243
+1990-09-14T21:00:00,0.03211524075601451
+1990-09-14T22:00:00,0.032098321919087076
+1990-09-14T23:00:00,0.03208142285112702
+1990-09-15T00:00:00,0.032064543497811085
+1990-09-15T01:00:00,0.032047683805007
+1990-09-15T02:00:00,0.03203084371877282
+1990-09-15T03:00:00,0.0320140231853562
+1990-09-15T04:00:00,0.031997222151193695
+1990-09-15T05:00:00,0.0319804405629101
+1990-09-15T06:00:00,0.03196367836731772
+1990-09-15T07:00:00,0.03194693551141572
+1990-09-15T08:00:00,0.031930211942389417
+1990-09-15T09:00:00,0.031913507607609595
+1990-09-15T10:00:00,0.03189682245463186
+1990-09-15T11:00:00,0.031880156431195905
+1990-09-15T12:00:00,0.0318635094852249
+1990-09-15T13:00:00,0.031846881564824764
+1990-09-15T14:00:00,0.03183027261828353
+1990-09-15T15:00:00,0.031813682594070664
+1990-09-15T16:00:00,0.031797111440836405
+1990-09-15T17:00:00,0.0317805591074111
+1990-09-15T18:00:00,0.03176402554280454
+1990-09-15T19:00:00,0.03174751069620532
+1990-09-15T20:00:00,0.03173101451698019
+1990-09-15T21:00:00,0.03171453695467332
+1990-09-15T22:00:00,0.03169807795900578
+1990-09-15T23:00:00,0.031681637479874826
+1990-09-16T00:00:00,0.03166521546735321
+1990-09-16T01:00:00,0.031648811871688616
+1990-09-16T02:00:00,0.03163242664330299
+1990-09-16T03:00:00,0.03161605973279189
+1990-09-16T04:00:00,0.03159971109092386
+1990-09-16T05:00:00,0.031583380668639784
+1990-09-16T06:00:00,0.03156706841705231
+1990-09-16T07:00:00,0.03155077428744514
+1990-09-16T08:00:00,0.03153449823127245
+1990-09-16T09:00:00,0.03151824020015827
+1990-09-16T10:00:00,0.03150200014589583
+1990-09-16T11:00:00,0.031485778020447
+1990-09-16T12:00:00,0.03146957377594159
+1990-09-16T13:00:00,0.031453387364676816
+1990-09-16T14:00:00,0.03143721873911663
+1990-09-16T15:00:00,0.03142106785189116
+1990-09-16T16:00:00,0.03140493465579604
+1990-09-16T17:00:00,0.03138881910379185
+1990-09-16T18:00:00,0.0313727211490035
+1990-09-16T19:00:00,0.03135664074471966
+1990-09-16T20:00:00,0.031340577844392085
+1990-09-16T21:00:00,0.031324532401635075
+1990-09-16T22:00:00,0.0313085043702249
+1990-09-16T23:00:00,0.031292493704099145
+1990-09-17T00:00:00,0.03127650035735615
+1990-09-17T01:00:00,0.03126052428425446
+1990-09-17T02:00:00,0.031244565439212165
+1990-09-17T03:00:00,0.03122862377680638
+1990-09-17T04:00:00,0.03121269925177263
+1990-09-17T05:00:00,0.031196791819004265
+1990-09-17T06:00:00,0.031180901433551934
+1990-09-17T07:00:00,0.03116502805062293
+1990-09-17T08:00:00,0.031149171625580695
+1990-09-17T09:00:00,0.03113333211394419
+1990-09-17T10:00:00,0.031117509471387375
+1990-09-17T11:00:00,0.031101703653738596
+1990-09-17T12:00:00,0.031085914616980067
+1990-09-17T13:00:00,0.031070142317247255
+1990-09-17T14:00:00,0.03105438671082837
+1990-09-17T15:00:00,0.03103864775416379
+1990-09-17T16:00:00,0.031022925403845485
+1990-09-17T17:00:00,0.031007219616616476
+1990-09-17T18:00:00,0.030991530349370314
+1990-09-17T19:00:00,0.030975857559150465
+1990-09-17T20:00:00,0.030960201203149823
+1990-09-17T21:00:00,0.030944561238710144
+1990-09-17T22:00:00,0.03092893762332148
+1990-09-17T23:00:00,0.03091333031462167
+1990-09-18T00:00:00,0.03089773927039578
+1990-09-18T01:00:00,0.030882164448575562
+1990-09-18T02:00:00,0.030866605807238944
+1990-09-18T03:00:00,0.030851063304609475
+1990-09-18T04:00:00,0.03083553689905578
+1990-09-18T05:00:00,0.030820026549091075
+1990-09-18T06:00:00,0.030804532213372603
+1990-09-18T07:00:00,0.0307890538507011
+1990-09-18T08:00:00,0.030773591420020317
+1990-09-18T09:00:00,0.030758144880416442
+1990-09-18T10:00:00,0.03074271419111762
+1990-09-18T11:00:00,0.03072729931149342
+1990-09-18T12:00:00,0.030711900201054316
+1990-09-18T13:00:00,0.030696516819451184
+1990-09-18T14:00:00,0.03068114912647478
+1990-09-18T15:00:00,0.030665797082055225
+1990-09-18T16:00:00,0.03065046064626151
+1990-09-18T17:00:00,0.030635139779300984
+1990-09-18T18:00:00,0.03061983444151884
+1990-09-18T19:00:00,0.03060454459339763
+1990-09-18T20:00:00,0.030589270195556746
+1990-09-18T21:00:00,0.03057401120875192
+1990-09-18T22:00:00,0.030558767593874755
+1990-09-18T23:00:00,0.03054353931195219
+1990-09-19T00:00:00,0.030528326324146024
+1990-09-19T01:00:00,0.030513128591752443
+1990-09-19T02:00:00,0.030497946076201512
+1990-09-19T03:00:00,0.030482778739056648
+1990-09-19T04:00:00,0.03046762654201422
+1990-09-19T05:00:00,0.030452489446902986
+1990-09-19T06:00:00,0.030437367415683647
+1990-09-19T07:00:00,0.03042226041044838
+1990-09-19T08:00:00,0.0304071683934203
+1990-09-19T09:00:00,0.030392091326953054
+1990-09-19T10:00:00,0.03037702917353029
+1990-09-19T11:00:00,0.030361981895765205
+1990-09-19T12:00:00,0.03034694945640009
+1990-09-19T13:00:00,0.03033193181830581
+1990-09-19T14:00:00,0.0303169289444814
+1990-09-19T15:00:00,0.030301940798053553
+1990-09-19T16:00:00,0.030286967342276143
+1990-09-19T17:00:00,0.030272008540529825
+1990-09-19T18:00:00,0.03025706435632149
+1990-09-19T19:00:00,0.030242134753283884
+1990-09-19T20:00:00,0.030227219695175087
+1990-09-19T21:00:00,0.030212319145878092
+1990-09-19T22:00:00,0.03019743306940035
+1990-09-19T23:00:00,0.03018256142987328
+1990-09-20T00:00:00,0.03016770419155186
+1990-09-20T01:00:00,0.030152861318814162
+1990-09-20T02:00:00,0.030138032776160898
+1990-09-20T03:00:00,0.030123218528214965
+1990-09-20T04:00:00,0.030108418539721044
+1990-09-20T05:00:00,0.03009363277554508
+1990-09-20T06:00:00,0.030078861200673927
+1990-09-20T07:00:00,0.030064103780214835
+1990-09-20T08:00:00,0.030049360479395056
+1990-09-20T09:00:00,0.03003463126356139
+1990-09-20T10:00:00,0.03001991609817975
+1990-09-20T11:00:00,0.03000521494883473
+1990-09-20T12:00:00,0.02999052778122918
+1990-09-20T13:00:00,0.029975854561183766
+1990-09-20T14:00:00,0.029961195254636534
+1990-09-20T15:00:00,0.02994654982764251
+1990-09-20T16:00:00,0.02993191824637324
+1990-09-20T17:00:00,0.029917300477116385
+1990-09-20T18:00:00,0.029902696486275318
+1990-09-20T19:00:00,0.029888106240368646
+1990-09-20T20:00:00,0.029873529706029852
+1990-09-20T21:00:00,0.029858966850006833
+1990-09-20T22:00:00,0.029844417639161517
+1990-09-20T23:00:00,0.029829882040469425
+1990-09-21T00:00:00,0.02981536002101925
+1990-09-21T01:00:00,0.029800851548012486
+1990-09-21T02:00:00,0.029786356588762965
+1990-09-21T03:00:00,0.029782914833447652
+1990-09-21T04:00:00,0.031979162272301624
+1990-09-21T05:00:00,0.044446830305818946
+1990-09-21T06:00:00,0.04447911941717154
+1990-09-21T07:00:00,0.04451217849285594
+1990-09-21T08:00:00,0.04338898066267664
+1990-09-21T09:00:00,0.040291090758464355
+1990-09-21T10:00:00,0.040311528876527336
+1990-09-21T11:00:00,0.04033234119190382
+1990-09-21T12:00:00,0.040353528728019984
+1990-09-21T13:00:00,0.04037509248581434
+1990-09-21T14:00:00,0.04039703344373569
+1990-09-21T15:00:00,0.04041935255774598
+1990-09-21T16:00:00,0.04044205076132789
+1990-09-21T17:00:00,0.040465128965497116
+1990-09-21T18:00:00,0.04048858805881903
+1990-09-21T19:00:00,0.04051242890742973
+1990-09-21T20:00:00,0.0416942930694168
+1990-09-21T21:00:00,0.04485362026904719
+1990-09-21T22:00:00,0.04489580073058105
+1990-09-21T23:00:00,0.044938792062372855
+1990-09-22T00:00:00,0.04498259691404563
+1990-09-22T01:00:00,0.09214072478507897
+1990-09-22T02:00:00,0.09243425664715502
+1990-09-22T03:00:00,0.09270822016137646
+1990-09-22T04:00:00,0.09299913933014128
+1990-09-22T05:00:00,0.09330723229781526
+1990-09-22T06:00:00,0.09363269096391892
+1990-09-22T07:00:00,0.09397568146419263
+1990-09-22T08:00:00,0.08954454138310937
+1990-09-22T09:00:00,0.08704460951692017
+1990-09-22T10:00:00,0.08738601619256708
+1990-09-22T11:00:00,0.08774108598948066
+1990-09-22T12:00:00,0.08810985124094652
+1990-09-22T13:00:00,0.08849233151820649
+1990-09-22T14:00:00,0.08888853408010555
+1990-09-22T15:00:00,0.08929845433289046
+1990-09-22T16:00:00,0.08972207629735315
+1990-09-22T17:00:00,0.09015937308076943
+1990-09-22T18:00:00,0.09061030735132224
+1990-09-22T19:00:00,0.09107483181292443
+1990-09-22T20:00:00,0.09636021198217916
+1990-09-22T21:00:00,0.09975479080099117
+1990-09-22T22:00:00,0.10033927888767626
+1990-09-22T23:00:00,0.10094127749116483
+1990-09-23T00:00:00,0.10156065405570955
+1990-09-23T01:00:00,0.05743068817991096
+1990-09-23T02:00:00,0.05754106281593925
+1990-09-23T03:00:00,0.05769287513383192
+1990-09-23T04:00:00,0.057845746707207366
+1990-09-23T05:00:00,0.05799967249148802
+1990-09-23T06:00:00,0.05815464739374594
+1990-09-23T07:00:00,0.058310666274082726
+1990-09-23T08:00:00,0.05709599650992973
+1990-09-23T09:00:00,0.054050889269764486
+1990-09-23T10:00:00,0.05415700026387636
+1990-09-23T11:00:00,0.0542636188063881
+1990-09-23T12:00:00,0.05437074260597438
+1990-09-23T13:00:00,0.054478369361446746
+1990-09-23T14:00:00,0.05458649676203524
+1990-09-23T15:00:00,0.05469512248766775
+1990-09-23T16:00:00,0.05480424420924674
+1990-09-23T17:00:00,0.05491385958892345
+1990-09-23T18:00:00,0.055023966280369686
+1990-09-23T19:00:00,0.05513456192904701
+1990-09-23T20:00:00,0.056618359206586
+1990-09-23T21:00:00,0.059936333578453835
+1990-09-23T22:00:00,0.060104579400645605
+1990-09-23T23:00:00,0.060273799443844894
+1990-09-24T00:00:00,0.06044398804475676
+1990-09-24T01:00:00,0.04316192043565871
+1990-09-24T02:00:00,0.043114887799100915
+1990-09-24T03:00:00,0.043067981070452975
+1990-09-24T04:00:00,0.04302119980466005
+1990-09-24T05:00:00,0.04297454355831641
+1990-09-24T06:00:00,0.042928011889659196
+1990-09-24T07:00:00,0.04288160435856228
+1990-09-24T08:00:00,0.0428353205265301
+1990-09-24T09:00:00,0.042789159956691546
+1990-09-24T10:00:00,0.04274312221379382
+1990-09-24T11:00:00,0.042697206864196396
+1990-09-24T12:00:00,0.04265141347586492
+1990-09-24T13:00:00,0.04260574161836523
+1990-09-24T14:00:00,0.04256019086285728
+1990-09-24T15:00:00,0.0425147607820892
+1990-09-24T16:00:00,0.0424694509503913
+1990-09-24T17:00:00,0.04242426094367014
+1990-09-24T18:00:00,0.04237919033940259
+1990-09-24T19:00:00,0.04233423871662997
+1990-09-24T20:00:00,0.04228940565595213
+1990-09-24T21:00:00,0.04224469073952161
+1990-09-24T22:00:00,0.04220009355103783
+1990-09-24T23:00:00,0.042155613675741214
+1990-09-25T00:00:00,0.04211125070040752
+1990-09-25T01:00:00,0.042067004213341946
+1990-09-25T02:00:00,0.042022873804373445
+1990-09-25T03:00:00,0.041978859064849036
+1990-09-25T04:00:00,0.04193495958762803
+1990-09-25T05:00:00,0.041891174967076394
+1990-09-25T06:00:00,0.0418475047990611
+1990-09-25T07:00:00,0.041803948680944475
+1990-09-25T08:00:00,0.04176050621157857
+1990-09-25T09:00:00,0.04171717699129961
+1990-09-25T10:00:00,0.041673960621922364
+1990-09-25T11:00:00,0.04163085670673465
+1990-09-25T12:00:00,0.041587864850491776
+1990-09-25T13:00:00,0.041544984659411026
+1990-09-25T14:00:00,0.04150221574116619
+1990-09-25T15:00:00,0.041459557704882084
+1990-09-25T16:00:00,0.04141701016112912
+1990-09-25T17:00:00,0.04137457272191785
+1990-09-25T18:00:00,0.041332245000693595
+1990-09-25T19:00:00,0.04129002661233104
+1990-09-25T20:00:00,0.041247917173128874
+1990-09-25T21:00:00,0.04120591630080443
+1990-09-25T22:00:00,0.04116402361448842
+1990-09-25T23:00:00,0.04112223873471954
+1990-09-26T00:00:00,0.04108056128343926
+1990-09-26T01:00:00,0.04103899088398654
+1990-09-26T02:00:00,0.04099752716109258
+1990-09-26T03:00:00,0.040956169740875605
+1990-09-26T04:00:00,0.04091491825083564
+1990-09-26T05:00:00,0.04087377231984935
+1990-09-26T06:00:00,0.040832731578164874
+1990-09-26T07:00:00,0.04079179565739668
+1990-09-26T08:00:00,0.04075096419052039
+1990-09-26T09:00:00,0.040710236811867806
+1990-09-26T10:00:00,0.04066961315712165
+1990-09-26T11:00:00,0.040629092863310616
+1990-09-26T12:00:00,0.040588675568804314
+1990-09-26T13:00:00,0.04054836091330817
+1990-09-26T14:00:00,0.04050814853785851
+1990-09-26T15:00:00,0.04046803808481747
+1990-09-26T16:00:00,0.040428029197868136
+1990-09-26T17:00:00,0.04038812152200948
+1990-09-26T18:00:00,0.04034831470355151
+1990-09-26T19:00:00,0.040308608390110315
+1990-09-26T20:00:00,0.04026900223060316
+1990-09-26T21:00:00,0.04022949587524365
+1990-09-26T22:00:00,0.040190088975536824
+1990-09-26T23:00:00,0.04015078118427434
+1990-09-27T00:00:00,0.040111572155529636
+1990-09-27T01:00:00,0.04007246154465315
+1990-09-27T02:00:00,0.04003344900826751
+1990-09-27T03:00:00,0.03999453420426277
+1990-09-27T04:00:00,0.03995571679179168
+1990-09-27T05:00:00,0.039916996431264916
+1990-09-27T06:00:00,0.039878372784346396
+1990-09-27T07:00:00,0.03983984551394857
+1990-09-27T08:00:00,0.03980141428422775
+1990-09-27T09:00:00,0.03976307876057946
+1990-09-27T10:00:00,0.039724838609633745
+1990-09-27T11:00:00,0.0396866934992506
+1990-09-27T12:00:00,0.039648643098515325
+1990-09-27T13:00:00,0.03961068707773398
+1990-09-27T14:00:00,0.03957282510842873
+1990-09-27T15:00:00,0.03953505686333339
+1990-09-27T16:00:00,0.03949738201638879
+1990-09-27T17:00:00,0.03945980024273833
+1990-09-27T18:00:00,0.039422311218723444
+1990-09-27T19:00:00,0.03938491462187909
+1990-09-27T20:00:00,0.03934761013092932
+1990-09-27T21:00:00,0.03931039742578281
+1990-09-27T22:00:00,0.039273276187528405
+1990-09-27T23:00:00,0.03923624609843073
+1990-09-28T00:00:00,0.03919930684192579
+1990-09-28T01:00:00,0.03916245810261652
+1990-09-28T02:00:00,0.0391256995662685
+1990-09-28T03:00:00,0.039089030919805555
+1990-09-28T04:00:00,0.03905245185130543
+1990-09-28T05:00:00,0.03901596204999546
+1990-09-28T06:00:00,0.03897956120624826
+1990-09-28T07:00:00,0.03894324901157748
+1990-09-28T08:00:00,0.03890702515863347
+1990-09-28T09:00:00,0.038870889341199096
+1990-09-28T10:00:00,0.03883484125418541
+1990-09-28T11:00:00,0.03879888059362752
+1990-09-28T12:00:00,0.03876300705668034
+1990-09-28T13:00:00,0.038727220341614375
+1990-09-28T14:00:00,0.03869152014781161
+1990-09-28T15:00:00,0.038655906175761263
+1990-09-28T16:00:00,0.038620378127055724
+1990-09-28T17:00:00,0.038584935704386376
+1990-09-28T18:00:00,0.03854957861153951
+1990-09-28T19:00:00,0.038514306553392205
+1990-09-28T20:00:00,0.03847911923590828
+1990-09-28T21:00:00,0.03844401636613417
+1990-09-28T22:00:00,0.03840899765219494
+1990-09-28T23:00:00,0.03837406280329019
+1990-09-29T00:00:00,0.03833921152969012
+1990-09-29T01:00:00,0.03830444354273141
+1990-09-29T02:00:00,0.03826975855481333
+1990-09-29T03:00:00,0.038235156279393695
+1990-09-29T04:00:00,0.038200636430984966
+1990-09-29T05:00:00,0.03816619872515026
+1990-09-29T06:00:00,0.03813184287849941
+1990-09-29T07:00:00,0.03809756860868514
+1990-09-29T08:00:00,0.03806337563439905
+1990-09-29T09:00:00,0.038029263675367776
+1990-09-29T10:00:00,0.037995232452349155
+1990-09-29T11:00:00,0.03796128168712832
+1990-09-29T12:00:00,0.03792741110251389
+1990-09-29T13:00:00,0.0378936204223341
+1990-09-29T14:00:00,0.03785990937143305
+1990-09-29T15:00:00,0.03782627767566686
+1990-09-29T16:00:00,0.037792725061899915
+1990-09-29T17:00:00,0.03775925125800104
+1990-09-29T18:00:00,0.037725855992839834
+1990-09-29T19:00:00,0.03769253899628287
+1990-09-29T20:00:00,0.03765929999918996
+1990-09-29T21:00:00,0.037626138733410475
+1990-09-29T22:00:00,0.03759305493177964
+1990-09-29T23:00:00,0.03756004832811482
+1990-09-30T00:00:00,0.03752711865721188
+1990-09-30T01:00:00,0.04567701248999895
+1990-09-30T02:00:00,0.10276971361259905
+1990-09-30T03:00:00,0.10344669356531595
+1990-09-30T04:00:00,0.1041428493313881
+1990-09-30T05:00:00,0.10485797104282055
+1990-09-30T06:00:00,0.10559183813512302
+1990-09-30T07:00:00,0.10634422022309505
+1990-09-30T08:00:00,0.10206526511268427
+1990-09-30T09:00:00,0.0990609177905683
+1990-09-30T10:00:00,0.09974905192136349
+1990-09-30T11:00:00,0.10045010479355614
+1990-09-30T12:00:00,0.1011639014425247
+1990-09-30T13:00:00,0.1018902640013193
+1990-09-30T14:00:00,0.1026290120413092
+1990-09-30T15:00:00,0.10337996289922519
+1990-09-30T16:00:00,0.10414293199045022
+1990-09-30T17:00:00,0.10491773310850358
+1990-09-30T18:00:00,0.10570417871074378
+1990-09-30T19:00:00,0.1065020801903808
+1990-09-30T20:00:00,0.11237606548494397
+1990-09-30T21:00:00,0.11701511468733364
+1990-09-30T22:00:00,0.11798965385139015
+1990-09-30T23:00:00,0.11897878333303027
+1990-10-01T00:00:00,0.1199822126502596
+1990-10-01T01:00:00,0.09307365240628845
+1990-10-01T02:00:00,0.08651118126852586
+1990-10-01T03:00:00,0.0869476363339765
+1990-10-01T04:00:00,0.08738643477915192
+1990-10-01T05:00:00,0.08782754636953835
+1990-10-01T06:00:00,0.08827094098684247
+1990-10-01T07:00:00,0.08871658863493667
+1990-10-01T08:00:00,0.08261108085550545
+1990-10-01T09:00:00,0.0818200979801425
+1990-10-01T10:00:00,0.082135660845834
+1990-10-01T11:00:00,0.08245226887038255
+1990-10-01T12:00:00,0.08276990969500193
+1990-10-01T13:00:00,0.08308857101497405
+1990-10-01T14:00:00,0.0834082405806601
+1990-10-01T15:00:00,0.08372890619847376
+1990-10-01T16:00:00,0.08405055573181697
+1990-10-01T17:00:00,0.08437317710197931
+1990-10-01T18:00:00,0.08483620364548561
+1990-10-01T19:00:00,0.08643951698589389
+1990-10-01T20:00:00,0.09511324232906336
+1990-10-01T21:00:00,0.09856072680113047
+1990-10-01T22:00:00,0.10090016216117419
+1990-10-01T23:00:00,0.10323693046400137
+1990-10-02T00:00:00,0.10557092719149323
+1990-10-02T01:00:00,0.07497066239239528
+1990-10-02T02:00:00,0.07428435037591248
+1990-10-02T03:00:00,0.07360331856088223
+1990-10-02T04:00:00,0.07292752647806193
+1990-10-02T05:00:00,0.07225693397027844
+1990-10-02T06:00:00,0.07159150119000418
+1990-10-02T07:00:00,0.07093118859695197
+1990-10-02T08:00:00,0.07027595695568876
+1990-10-02T09:00:00,0.06962576733326803
+1990-10-02T10:00:00,0.06898058109688061
+1990-10-02T11:00:00,0.06834035991152397
+1990-10-02T12:00:00,0.06770506573768964
+1990-10-02T13:00:00,0.06707466082906872
+1990-10-02T14:00:00,0.06644910773027532
+1990-10-02T15:00:00,0.06582836927458782
+1990-10-02T16:00:00,0.06521240858170785
+1990-10-02T17:00:00,0.06460118905553645
+1990-10-02T18:00:00,0.06399467438196822
+1990-10-02T19:00:00,0.06339282852670196
+1990-10-02T20:00:00,0.0629220625611797
+1990-10-02T21:00:00,0.06282841780450409
+1990-10-02T22:00:00,0.06273506077812847
+1990-10-02T23:00:00,0.06264199043601264
+1990-10-03T00:00:00,0.0625492057360356
+1990-10-03T01:00:00,0.062456705639980736
+1990-10-03T02:00:00,0.062364489113521
+1990-10-03T03:00:00,0.062272555126204096
+1990-10-03T04:00:00,0.062213727120410435
+1990-10-03T05:00:00,0.06227338486737959
+1990-10-03T06:00:00,0.06694055300616084
+1990-10-03T07:00:00,0.07036440878392367
+1990-10-03T08:00:00,0.06856373032345058
+1990-10-03T09:00:00,0.06411072879477503
+1990-10-03T10:00:00,0.06405250407075175
+1990-10-03T11:00:00,0.06399448049268594
+1990-10-03T12:00:00,0.06393665733246702
+1990-10-03T13:00:00,0.06387903386470534
+1990-10-03T14:00:00,0.06382160936672177
+1990-10-03T15:00:00,0.0637643831185375
+1990-10-03T16:00:00,0.06370735440286382
+1990-10-03T17:00:00,0.063650522505092
+1990-10-03T18:00:00,0.063593886713283
+1990-10-03T19:00:00,0.06353744631815751
+1990-10-03T20:00:00,0.06534192068902324
+1990-10-03T21:00:00,0.06979915208646753
+1990-10-03T22:00:00,0.06986189392166736
+1990-10-03T23:00:00,0.06992472054709808
+1990-10-04T00:00:00,0.06998763138946251
+1990-10-04T01:00:00,0.07355482313395982
+1990-10-04T02:00:00,0.07386491475475333
+1990-10-04T03:00:00,0.07399760507693645
+1990-10-04T04:00:00,0.07413043371322567
+1990-10-04T05:00:00,0.07426339916144144
+1990-10-04T06:00:00,0.07439649992586155
+1990-10-04T07:00:00,0.07452973451722773
+1990-10-04T08:00:00,0.07205061750168086
+1990-10-04T09:00:00,0.06910202678202632
+1990-10-04T10:00:00,0.06912777082862323
+1990-10-04T11:00:00,0.0691536032713959
+1990-10-04T12:00:00,0.06917952369883279
+1990-10-04T13:00:00,0.06920553170089741
+1990-10-04T14:00:00,0.06923162686902361
+1990-10-04T15:00:00,0.06925780879611097
+1990-10-04T16:00:00,0.06928407707652004
+1990-10-04T17:00:00,0.06931043130606776
+1990-10-04T18:00:00,0.06933687108202272
+1990-10-04T19:00:00,0.0693633960031007
+1990-10-04T20:00:00,0.07200304648620015
+1990-10-04T21:00:00,0.07511297961466491
+1990-10-04T22:00:00,0.07524878316930317
+1990-10-04T23:00:00,0.07538470169328083
+1990-10-05T00:00:00,0.0755207337791788
+1990-10-05T01:00:00,0.06383985031001553
+1990-10-05T02:00:00,0.06374640485638748
+1990-10-05T03:00:00,0.06365324488388177
+1990-10-05T04:00:00,0.06356036935554224
+1990-10-05T05:00:00,0.06346777723829723
+1990-10-05T06:00:00,0.06337546750294482
+1990-10-05T07:00:00,0.06328343912413815
+1990-10-05T08:00:00,0.06319169108037087
+1990-10-05T09:00:00,0.06310022235396241
+1990-10-05T10:00:00,0.06300903193104362
+1990-10-05T11:00:00,0.06291811880154224
+1990-10-05T12:00:00,0.0628274819591685
+1990-10-05T13:00:00,0.06273712040140078
+1990-10-05T14:00:00,0.06264703312947137
+1990-10-05T15:00:00,0.06255721914835215
+1990-10-05T16:00:00,0.06246767746674039
+1990-10-05T17:00:00,0.06237840709704479
+1990-10-05T18:00:00,0.062289407055371206
+1990-10-05T19:00:00,0.06220067636150873
+1990-10-05T20:00:00,0.06211221403891571
+1990-10-05T21:00:00,0.062024019114705876
+1990-10-05T22:00:00,0.0619360906196344
+1990-10-05T23:00:00,0.06184842758808409
+1990-10-06T00:00:00,0.061761029058051795
+1990-10-06T01:00:00,0.06167389407113447
+1990-10-06T02:00:00,0.0615870216725157
+1990-10-06T03:00:00,0.06150041091095204
+1990-10-06T04:00:00,0.061414060838759485
+1990-10-06T05:00:00,0.06132797051179997
+1990-10-06T06:00:00,0.061242138989467926
+1990-10-06T07:00:00,0.0611565653346769
+1990-10-06T08:00:00,0.06107124861384623
+1990-10-06T09:00:00,0.060986187896887756
+1990-10-06T10:00:00,0.06090138225719253
+1990-10-06T11:00:00,0.060816830771617696
+1990-10-06T12:00:00,0.06073253252047337
+1990-10-06T13:00:00,0.06064848658750948
+1990-10-06T14:00:00,0.06056469205990277
+1990-10-06T15:00:00,0.06048114802824388
+1990-10-06T16:00:00,0.06039785358652429
+1990-10-06T17:00:00,0.060314807832123514
+1990-10-06T18:00:00,0.06023200986579628
+1990-10-06T19:00:00,0.060149458791659685
+1990-10-06T20:00:00,0.06006715371718049
+1990-10-06T21:00:00,0.05998509375316244
+1990-10-06T22:00:00,0.0599032780137336
+1990-10-06T23:00:00,0.059821705616333806
+1990-10-07T00:00:00,0.05974037568170207
+1990-10-07T01:00:00,0.059659287333864094
+1990-10-07T02:00:00,0.059578439700119876
+1990-10-07T03:00:00,0.05949783191103125
+1990-10-07T04:00:00,0.05941746310040958
+1990-10-07T05:00:00,0.05933733240530339
+1990-10-07T06:00:00,0.05925743896598619
+1990-10-07T07:00:00,0.059177781925944195
+1990-10-07T08:00:00,0.0590983604318642
+1990-10-07T09:00:00,0.059019173633621476
+1990-10-07T10:00:00,0.058940220684267644
+1990-10-07T11:00:00,0.05886150074001872
+1990-10-07T12:00:00,0.05878301296024305
+1990-10-07T13:00:00,0.05870475650744947
+1990-10-07T14:00:00,0.05862673054727535
+1990-10-07T15:00:00,0.05854893424847479
+1990-10-07T16:00:00,0.058471366782906806
+1990-10-07T17:00:00,0.0583940273255236
+1990-10-07T18:00:00,0.058316915054358806
+1990-10-07T19:00:00,0.0582400291505159
+1990-10-07T20:00:00,0.05816336879815652
+1990-10-07T21:00:00,0.058086933184488924
+1990-10-07T22:00:00,0.05801072149975644
+1990-10-07T23:00:00,0.05793473293722602
+1990-10-08T00:00:00,0.057858966693176764
+1990-10-08T01:00:00,0.05778342196688858
+1990-10-08T02:00:00,0.05770809796063071
+1990-10-08T03:00:00,0.057632993879650554
+1990-10-08T04:00:00,0.057558108932162344
+1990-10-08T05:00:00,0.057483442329335915
+1990-10-08T06:00:00,0.057408993285285544
+1990-10-08T07:00:00,0.05733476101705879
+1990-10-08T08:00:00,0.05726074474462546
+1990-10-08T09:00:00,0.05718694369086646
+1990-10-08T10:00:00,0.05711335708156284
+1990-10-08T11:00:00,0.05703998414538487
+1990-10-08T12:00:00,0.056966824113881015
+1990-10-08T13:00:00,0.056893876221467125
+1990-10-08T14:00:00,0.05682113970541559
+1990-10-08T15:00:00,0.05674861380584447
+1990-10-08T16:00:00,0.056676297765706825
+1990-10-08T17:00:00,0.056604190830779944
+1990-10-08T18:00:00,0.05653229224965468
+1990-10-08T19:00:00,0.05646060127372479
+1990-10-08T20:00:00,0.0563891171571764
+1990-10-08T21:00:00,0.05631783915697739
+1990-10-08T22:00:00,0.056246766532866886
+1990-10-08T23:00:00,0.05617589854734484
+1990-10-09T00:00:00,0.056105234465661485
+1990-10-09T01:00:00,0.056034773555807084
+1990-10-09T02:00:00,0.055964515088501435
+1990-10-09T03:00:00,0.05589445833718363
+1990-10-09T04:00:00,0.055824602578001814
+1990-10-09T05:00:00,0.05575494708980283
+1990-10-09T06:00:00,0.05568549115412214
+1990-10-09T07:00:00,0.0556162340551736
+1990-10-09T08:00:00,0.05554717507983935
+1990-10-09T09:00:00,0.05547831351765975
+1990-10-09T10:00:00,0.05540964866082331
+1990-10-09T11:00:00,0.05534117980415671
+1990-10-09T12:00:00,0.055272906245114835
+1990-10-09T13:00:00,0.05520482728377081
+1990-10-09T14:00:00,0.05513694222280615
+1990-10-09T15:00:00,0.05506925036750087
+1990-10-09T16:00:00,0.05500175102572372
+1990-10-09T17:00:00,0.05493444350792236
+1990-10-09T18:00:00,0.05486732712711365
+1990-10-09T19:00:00,0.054800401198873944
+1990-10-09T20:00:00,0.054733665041329344
+1990-10-09T21:00:00,0.05466711797514622
+1990-10-09T22:00:00,0.054600759323521535
+1990-10-09T23:00:00,0.05453458841217323
+1990-10-10T00:00:00,0.054468604569330836
+1990-10-10T01:00:00,0.05440280712572586
+1990-10-10T02:00:00,0.05433719541458244
+1990-10-10T03:00:00,0.0542717687716079
+1990-10-10T04:00:00,0.05420652653498333
+1990-10-10T05:00:00,0.05414146804535433
+1990-10-10T06:00:00,0.05407659264582162
+1990-10-10T07:00:00,0.05401189968193184
+1990-10-10T08:00:00,0.0539473885016683
+1990-10-10T09:00:00,0.05388305845544175
+1990-10-10T10:00:00,0.05381890889608125
+1990-10-10T11:00:00,0.05375493917882504
+1990-10-10T12:00:00,0.05369114866131144
+1990-10-10T13:00:00,0.05362753670356979
+1990-10-10T14:00:00,0.05356410266801143
+1990-10-10T15:00:00,0.05350084591942074
+1990-10-10T16:00:00,0.05343776582494611
+1990-10-10T17:00:00,0.05337486175409109
+1990-10-10T18:00:00,0.05331213307870551
+1990-10-10T19:00:00,0.053249579172976555
+1990-10-10T20:00:00,0.05318719941342002
+1990-10-10T21:00:00,0.05312499317887144
+1990-10-10T22:00:00,0.053062959850477494
+1990-10-10T23:00:00,0.05300109881168708
+1990-10-11T00:00:00,0.052939409448242804
+1990-10-11T01:00:00,0.05287789114817223
+1990-10-11T02:00:00,0.052816543301779297
+1990-10-11T03:00:00,0.05275536530163576
+1990-10-11T04:00:00,0.05269435654257255
+1990-10-11T05:00:00,0.05263351642167134
+1990-10-11T06:00:00,0.05257284433825603
+1990-10-11T07:00:00,0.05251233969388427
+1990-10-11T08:00:00,0.052452001892339055
+1990-10-11T09:00:00,0.05239183033962033
+1990-10-11T10:00:00,0.05233182444393665
+1990-10-11T11:00:00,0.05227198361569682
+1990-10-11T12:00:00,0.05221230726750162
+1990-10-11T13:00:00,0.05215279481413552
+1990-10-11T14:00:00,0.05209344567255847
+1990-10-11T15:00:00,0.052034259261897704
+1990-10-11T16:00:00,0.05197523500343954
+1990-10-11T17:00:00,0.05191637232062127
+1990-10-11T18:00:00,0.05185767063902302
+1990-10-11T19:00:00,0.0517991293863597
+1990-10-11T20:00:00,0.05174074799247298
+1990-10-11T21:00:00,0.05168252588932322
+1990-10-11T22:00:00,0.0516244625109815
+1990-10-11T23:00:00,0.051566557293621695
+1990-10-12T00:00:00,0.05150880967551253
+1990-10-12T01:00:00,0.05145121909700967
+1990-10-12T02:00:00,0.0513937850005479
+1990-10-12T03:00:00,0.05133650683063323
+1990-10-12T04:00:00,0.05127938403383517
+1990-10-12T05:00:00,0.05122241605877887
+1990-10-12T06:00:00,0.05116560235613743
+1990-10-12T07:00:00,0.0511089423786242
+1990-10-12T08:00:00,0.051052435580984996
+1990-10-12T09:00:00,0.05099608141999058
+1990-10-12T10:00:00,0.050939879354428945
+1990-10-12T11:00:00,0.050883828845097706
+1990-10-12T12:00:00,0.0508279293547966
+1990-10-12T13:00:00,0.05077218034831988
+1990-10-12T14:00:00,0.05071658129244883
+1990-10-12T15:00:00,0.0506611316559443
+1990-10-12T16:00:00,0.05060583090953921
+1990-10-12T17:00:00,0.050550678525931175
+1990-10-12T18:00:00,0.05049567397977503
+1990-10-12T19:00:00,0.05044081674767554
+1990-10-12T20:00:00,0.05038610630818002
+1990-10-12T21:00:00,0.05033154214177102
+1990-10-12T22:00:00,0.050277123730859054
+1990-10-12T23:00:00,0.0502228505597753
+1990-10-13T00:00:00,0.05016872211476444
+1990-10-13T01:00:00,0.0501147378839774
+1990-10-13T02:00:00,0.050060897357464204
+1990-10-13T03:00:00,0.05000720002716677
+1990-10-13T04:00:00,0.04995364538691188
+1990-10-13T05:00:00,0.04990023293240404
+1990-10-13T06:00:00,0.04984696216121836
+1990-10-13T07:00:00,0.04979383257279361
+1990-10-13T08:00:00,0.049740843668425114
+1990-10-13T09:00:00,0.04968799495125785
+1990-10-13T10:00:00,0.049635285926279464
+1990-10-13T11:00:00,0.04958271610031324
+1990-10-13T12:00:00,0.04953028498201136
+1990-10-13T13:00:00,0.0494779920818479
+1990-10-13T14:00:00,0.049425836912111984
+1990-10-13T15:00:00,0.04937381898690101
+1990-10-13T16:00:00,0.04932193782211383
+1990-10-13T17:00:00,0.04927019293544395
+1990-10-13T18:00:00,0.04921858384637277
+1990-10-13T19:00:00,0.04916711007616289
+1990-10-13T20:00:00,0.04911577114785141
+1990-10-13T21:00:00,0.04906456658624323
+1990-10-13T22:00:00,0.049013495917904416
+1990-10-13T23:00:00,0.048962558671155586
+1990-10-14T00:00:00,0.048911754376065285
+1990-10-14T01:00:00,0.04886108256444344
+1990-10-14T02:00:00,0.04881054276983477
+1990-10-14T03:00:00,0.04876013452751231
+1990-10-14T04:00:00,0.0487098573744709
+1990-10-14T05:00:00,0.04865971084942069
+1990-10-14T06:00:00,0.04860969449278067
+1990-10-14T07:00:00,0.048559807846672354
+1990-10-14T08:00:00,0.04851005045491321
+1990-10-14T09:00:00,0.048460421863010444
+1990-10-14T10:00:00,0.048410921618154565
+1990-10-14T11:00:00,0.04836154926921305
+1990-10-14T12:00:00,0.048312304366724075
+1990-10-14T13:00:00,0.04826318646289023
+1990-10-14T14:00:00,0.04821419511157224
+1990-10-14T15:00:00,0.04816532986828275
+1990-10-14T16:00:00,0.048116590290180124
+1990-10-14T17:00:00,0.04806797593606222
+1990-10-14T18:00:00,0.04801948636636029
+1990-10-14T19:00:00,0.04797112114313281
+1990-10-14T20:00:00,0.04792287983005932
+1990-10-14T21:00:00,0.04787476199243444
+1990-10-14T22:00:00,0.047826767197161675
+1990-10-14T23:00:00,0.047778895012747485
+1990-10-15T00:00:00,0.047731145009295185
+1990-10-15T01:00:00,0.04768351675849897
+1990-10-15T02:00:00,0.04763600983363793
+1990-10-15T03:00:00,0.04758862380957013
+1990-10-15T04:00:00,0.04754135826272663
+1990-10-15T05:00:00,0.04749421277110561
+1990-10-15T06:00:00,0.047447186914266484
+1990-10-15T07:00:00,0.047400280273324
+1990-10-15T08:00:00,0.04735349243094243
+1990-10-15T09:00:00,0.04730682297132974
+1990-10-15T10:00:00,0.04726027148023181
+1990-10-15T11:00:00,0.04721383754492665
+1990-10-15T12:00:00,0.04716752075421858
+1990-10-15T13:00:00,0.047121320698432625
+1990-10-15T14:00:00,0.047075236969408726
+1990-10-15T15:00:00,0.047029269160496025
+1990-10-15T16:00:00,0.04698341686654726
+1990-10-15T17:00:00,0.04693767968391311
+1990-10-15T18:00:00,0.046892057210436544
+1990-10-15T19:00:00,0.04684654904544722
+1990-10-15T20:00:00,0.04680115478975594
+1990-10-15T21:00:00,0.04675587404564903
+1990-10-15T22:00:00,0.04671070641688288
+1990-10-15T23:00:00,0.04666565150867833
+1990-10-16T00:00:00,0.04662070892771528
+1990-10-16T01:00:00,0.04657587828212712
+1990-10-16T02:00:00,0.04653115918149534
+1990-10-16T03:00:00,0.04648655123684404
+1990-10-16T04:00:00,0.046442054060634556
+1990-10-16T05:00:00,0.04639766726676006
+1990-10-16T06:00:00,0.0463533904705402
+1990-10-16T07:00:00,0.04630922328871569
+1990-10-16T08:00:00,0.04630061584201537
+1990-10-16T09:00:00,0.046271674273242865
+1990-10-16T10:00:00,0.04624280769082217
+1990-10-16T11:00:00,0.04621401583985231
+1990-10-16T12:00:00,0.04618529846636931
+1990-10-16T13:00:00,0.046156655317342726
+1990-10-16T14:00:00,0.04612808614067209
+1990-10-16T15:00:00,0.04609959068518343
+1990-10-16T16:00:00,0.046071168700625865
+1990-10-16T17:00:00,0.046042819937668074
+1990-10-16T18:00:00,0.046014544147894916
+1990-10-16T19:00:00,0.045986341083803936
+1990-10-16T20:00:00,0.04597082863504472
+1990-10-16T21:00:00,0.049513015721624545
+1990-10-16T22:00:00,0.04979434043090397
+1990-10-16T23:00:00,0.04980664387132298
+1990-10-17T00:00:00,0.04981898257012994
+1990-10-17T01:00:00,0.06803298213193544
+1990-10-17T02:00:00,0.06814513779848401
+1990-10-17T03:00:00,0.06842165754444444
+1990-10-17T04:00:00,0.06869980008705122
+1990-10-17T05:00:00,0.0689795490412551
+1990-10-17T06:00:00,0.06926088805640607
+1990-10-17T07:00:00,0.06954380081708454
+1990-10-17T08:00:00,0.06504682421871225
+1990-10-17T09:00:00,0.062011111614975196
+1990-10-17T10:00:00,0.06217471142540052
+1990-10-17T11:00:00,0.062338792236918746
+1990-10-17T12:00:00,0.06250334993442437
+1990-10-17T13:00:00,0.06266838041185287
+1990-10-17T14:00:00,0.06283387957235557
+1990-10-17T15:00:00,0.062999843328474
+1990-10-17T16:00:00,0.06316626760231393
+1990-10-17T17:00:00,0.06333314832571872
+1990-10-17T18:00:00,0.0635004814404417
+1990-10-17T19:00:00,0.06366826289831772
+1990-10-17T20:00:00,0.06862158743205178
+1990-10-17T21:00:00,0.07211795127154846
+1990-10-17T22:00:00,0.07241689312420216
+1990-10-17T23:00:00,0.0727172243796545
+1990-10-18T00:00:00,0.0730189291925581
+1990-10-18T01:00:00,0.054020701009639835
+1990-10-18T02:00:00,0.054081470009444604
+1990-10-18T03:00:00,0.054069399576923714
+1990-10-18T04:00:00,0.054057396814595794
+1990-10-18T05:00:00,0.05404546149170461
+1990-10-18T06:00:00,0.05403359337831041
+1990-10-18T07:00:00,0.05402179224528687
+1990-10-18T08:00:00,0.05335868168342469
+1990-10-18T09:00:00,0.05128033447267367
+1990-10-18T10:00:00,0.05122426825440453
+1990-10-18T11:00:00,0.05116835259504272
+1990-10-18T12:00:00,0.05111258696131727
+1990-10-18T13:00:00,0.05105697082193687
+1990-10-18T14:00:00,0.05100150364758241
+1990-10-18T15:00:00,0.05094618491089952
+1990-10-18T16:00:00,0.05089101408649123
+1990-10-18T17:00:00,0.05083599065091053
+1990-10-18T18:00:00,0.050781114082653095
+1990-10-18T19:00:00,0.05072638386214992
+1990-10-18T20:00:00,0.050671799471760065
+1990-10-18T21:00:00,0.05061736039576337
+1990-10-18T22:00:00,0.05057666273554866
+1990-10-18T23:00:00,0.05217949575911945
+1990-10-19T00:00:00,0.05322002175477203
+1990-10-19T01:00:00,0.05050311862325115
+1990-10-19T02:00:00,0.05044914612268826
+1990-10-19T03:00:00,0.050395316762956735
+1990-10-19T04:00:00,0.05034163003831846
+1990-10-19T05:00:00,0.05028808544491128
+1990-10-19T06:00:00,0.050234682480742
+1990-10-19T07:00:00,0.050181420645679264
+1990-10-19T08:00:00,0.050128299441446665
+1990-10-19T09:00:00,0.050075318371615635
+1990-10-19T10:00:00,0.0500224769415986
+1990-10-19T11:00:00,0.049969774658642
+1990-10-19T12:00:00,0.04991721103181939
+1990-10-19T13:00:00,0.04986478557202457
+1990-10-19T14:00:00,0.04981249779196475
+1990-10-19T15:00:00,0.04976034720615371
+1990-10-19T16:00:00,0.04970833333090499
+1990-10-19T17:00:00,0.049656455684325175
+1990-10-19T18:00:00,0.04960471378630709
+1990-10-19T19:00:00,0.049553107158523096
+1990-10-19T20:00:00,0.04950163532441843
+1990-10-19T21:00:00,0.04945029780920449
+1990-10-19T22:00:00,0.04939909413985222
+1990-10-19T23:00:00,0.049348023845085486
+1990-10-20T00:00:00,0.04929708645537448
+1990-10-20T01:00:00,0.04924628150292915
+1990-10-20T02:00:00,0.04919560852169268
+1990-10-20T03:00:00,0.049145067047334914
+1990-10-20T04:00:00,0.04909465661724595
+1990-10-20T05:00:00,0.04904437677052961
+1990-10-20T06:00:00,0.04899422704799701
+1990-10-20T07:00:00,0.04894420699216013
+1990-10-20T08:00:00,0.04889431614722543
+1990-10-20T09:00:00,0.048844554059087525
+1990-10-20T10:00:00,0.048794920275322735
+1990-10-20T11:00:00,0.04874541434518287
+1990-10-20T12:00:00,0.04869603581958885
+1990-10-20T13:00:00,0.04864678425112449
+1990-10-20T14:00:00,0.048597659194030224
+1990-10-20T15:00:00,0.04854866020419688
+1990-10-20T16:00:00,0.04849978683915945
+1990-10-20T17:00:00,0.04845103865809098
+1990-10-20T18:00:00,0.048402415221796335
+1990-10-20T19:00:00,0.04835391609270611
+1990-10-20T20:00:00,0.048305540834870556
+1990-10-20T21:00:00,0.04825728901395339
+1990-10-20T22:00:00,0.048209160197225834
+1990-10-20T23:00:00,0.04816115395356052
+1990-10-21T00:00:00,0.04811326985342551
+1990-10-21T01:00:00,0.04806550746887825
+1990-10-21T02:00:00,0.04801786637355965
+1990-10-21T03:00:00,0.047970346142688115
+1990-10-21T04:00:00,0.0479229463530536
+1990-10-21T05:00:00,0.047875666583011754
+1990-10-21T06:00:00,0.04782850641247799
+1990-10-21T07:00:00,0.04778146542292165
+1990-10-21T08:00:00,0.04773454319736019
+1990-10-21T09:00:00,0.047687739320353285
+1990-10-21T10:00:00,0.04764105337799715
+1990-10-21T11:00:00,0.04759448495791868
+1990-10-21T12:00:00,0.047548033649269746
+1990-10-21T13:00:00,0.04750169904272147
+1990-10-21T14:00:00,0.04745548073045847
+1990-10-21T15:00:00,0.04740937830617327
+1990-10-21T16:00:00,0.0473633913650605
+1990-10-21T17:00:00,0.04731751950381141
+1990-10-21T18:00:00,0.047271762320608174
+1990-10-21T19:00:00,0.04722611941511826
+1990-10-21T20:00:00,0.04718059038848892
+1990-10-21T21:00:00,0.04713517484334161
+1990-10-21T22:00:00,0.04708987238376643
+1990-10-21T23:00:00,0.047044682615316656
+1990-10-22T00:00:00,0.04699960514500323
+1990-10-22T01:00:00,0.046954639581289266
+1990-10-22T02:00:00,0.046909785534084626
+1990-10-22T03:00:00,0.04686504261474051
+1990-10-22T04:00:00,0.04682041043604398
+1990-10-22T05:00:00,0.04677588861221264
+1990-10-22T06:00:00,0.04673147675888923
+1990-10-22T07:00:00,0.04668717449313631
+1990-10-22T08:00:00,0.04664298143343087
+1990-10-22T09:00:00,0.046598897199659074
+1990-10-22T10:00:00,0.046554921413111024
+1990-10-22T11:00:00,0.046511053696475346
+1990-10-22T12:00:00,0.046467293673834086
+1990-10-22T13:00:00,0.0464236409706574
+1990-10-22T14:00:00,0.04638009521379838
+1990-10-22T15:00:00,0.04633665603148787
+1990-10-22T16:00:00,0.04629332305332926
+1990-10-22T17:00:00,0.04625009591029341
+1990-10-22T18:00:00,0.04620697423471341
+1990-10-22T19:00:00,0.046163957660279614
+1990-10-22T20:00:00,0.0461210458220344
+1990-10-22T21:00:00,0.046078238356367235
+1990-10-22T22:00:00,0.04603553490100952
+1990-10-22T23:00:00,0.04599293509502961
+1990-10-23T00:00:00,0.045950438578827794
+1990-10-23T01:00:00,0.04590804499413131
+1990-10-23T02:00:00,0.045865753983989295
+1990-10-23T03:00:00,0.045823565192767986
+1990-10-23T04:00:00,0.045781478266145606
+1990-10-23T05:00:00,0.04573949285110755
+1990-10-23T06:00:00,0.045697608595941484
+1990-10-23T07:00:00,0.04565582515023241
+1990-10-23T08:00:00,0.045614142164857825
+1990-10-23T09:00:00,0.04557255929198292
+1990-10-23T10:00:00,0.04553107618505569
+1990-10-23T11:00:00,0.04548969249880216
+1990-10-23T12:00:00,0.04544840788922159
+1990-10-23T13:00:00,0.04540722201358168
+1990-10-23T14:00:00,0.04536613453041389
+1990-10-23T15:00:00,0.0453251450995086
+1990-10-23T16:00:00,0.04528425338191045
+1990-10-23T17:00:00,0.045243459039913676
+1990-10-23T18:00:00,0.04520276173705735
+1990-10-23T19:00:00,0.045162161138120736
+1990-10-23T20:00:00,0.0451216569091187
+1990-10-23T21:00:00,0.045081248717297046
+1990-10-23T22:00:00,0.045040936231127836
+1990-10-23T23:00:00,0.045000719120304934
+1990-10-24T00:00:00,0.04496059705573929
+1990-10-24T01:00:00,0.04492056970955451
+1990-10-24T02:00:00,0.0448806367550822
+1990-10-24T03:00:00,0.044840797866857504
+1990-10-24T04:00:00,0.04480105272061459
+1990-10-24T05:00:00,0.04476140099328215
+1990-10-24T06:00:00,0.04472184236297891
+1990-10-24T07:00:00,0.04468237650900921
+1990-10-24T08:00:00,0.04464300311185857
+1990-10-24T09:00:00,0.044603721853189185
+1990-10-24T10:00:00,0.04456453241583562
+1990-10-24T11:00:00,0.04452543448380038
+1990-10-24T12:00:00,0.044486427742249486
+1990-10-24T13:00:00,0.04444751187750823
+1990-10-24T14:00:00,0.04440868657705673
+1990-10-24T15:00:00,0.04436995152952566
+1990-10-24T16:00:00,0.04433130642469194
+1990-10-24T17:00:00,0.044292750953474416
+1990-10-24T18:00:00,0.04425428480792963
+1990-10-24T19:00:00,0.044215907681247536
+1990-10-24T20:00:00,0.04417761926774722
+1990-10-24T21:00:00,0.04413941926287277
+1990-10-24T22:00:00,0.044101307363188964
+1990-10-24T23:00:00,0.04406328326637716
+1990-10-25T00:00:00,0.044025346671231036
+1990-10-25T01:00:00,0.043987497277652506
+1990-10-25T02:00:00,0.043949734786647515
+1990-10-25T03:00:00,0.04391205890032194
+1990-10-25T04:00:00,0.04387446932187745
+1990-10-25T05:00:00,0.04383696575560742
+1990-10-25T06:00:00,0.04379954790689289
+1990-10-25T07:00:00,0.04382899236017012
+1990-10-25T08:00:00,0.04385424182400789
+1990-10-25T09:00:00,0.04385822138391158
+1990-10-25T10:00:00,0.04386221923929227
+1990-10-25T11:00:00,0.04473270801430564
+1990-10-25T12:00:00,0.046625088246993435
+1990-10-25T13:00:00,0.04662914069089462
+1990-10-25T14:00:00,0.04663321123204634
+1990-10-25T15:00:00,0.046637299821176724
+1990-10-25T16:00:00,0.046641406409127215
+1990-10-25T17:00:00,0.04664553094685236
+1990-10-25T18:00:00,0.046649673385419504
+1990-10-25T19:00:00,0.046653833676008526
+1990-10-25T20:00:00,0.04786122301067363
+1990-10-25T21:00:00,0.04931910648441342
+1990-10-25T22:00:00,0.04936281784012375
+1990-10-25T23:00:00,0.04940655422222377
+1990-10-26T00:00:00,0.049450315441426806
+1990-10-26T01:00:00,0.058752393043072566
+1990-10-26T02:00:00,0.05886867984174648
+1990-10-26T03:00:00,0.05905222596215813
+1990-10-26T04:00:00,0.05923634962603206
+1990-10-26T05:00:00,0.059421044877812995
+1990-10-26T06:00:00,0.059606305809368286
+1990-10-26T07:00:00,0.05979212655848819
+1990-10-26T08:00:00,0.0567896492907822
+1990-10-26T09:00:00,0.054948168483676146
+1990-10-26T10:00:00,0.055054441809394804
+1990-10-26T11:00:00,0.05516086434644374
+1990-10-26T12:00:00,0.0552674347040024
+1990-10-26T13:00:00,0.055374151498050604
+1990-10-26T14:00:00,0.05548101335129026
+1990-10-26T15:00:00,0.055588018893070495
+1990-10-26T16:00:00,0.05569516675931573
+1990-10-26T17:00:00,0.05580245559245687
+1990-10-26T18:00:00,0.055909884041365106
+1990-10-26T19:00:00,0.0560174507612885
+1990-10-26T20:00:00,0.05931567360088448
+1990-10-26T21:00:00,0.06145455808887352
+1990-10-26T22:00:00,0.06164633928809028
+1990-10-26T23:00:00,0.061838615271687145
+1990-10-27T00:00:00,0.062031380624503134
+1990-10-27T01:00:00,0.05082629483518781
+1990-10-27T02:00:00,0.05088255441434212
+1990-10-27T03:00:00,0.05088983978528161
+1990-10-27T04:00:00,0.05089715212930286
+1990-10-27T05:00:00,0.05090449135495432
+1990-10-27T06:00:00,0.050911857371039516
+1990-10-27T07:00:00,0.05091925008661634
+1990-10-27T08:00:00,0.05017757344729464
+1990-10-27T09:00:00,0.048591029252362555
+1990-10-27T10:00:00,0.048560159477368955
+1990-10-27T11:00:00,0.04852937050402225
+1990-10-27T12:00:00,0.048498662054817565
+1990-10-27T13:00:00,0.04846803385327216
+1990-10-27T14:00:00,0.0484374856239216
+1990-10-27T15:00:00,0.048407017092315874
+1990-10-27T16:00:00,0.0483766279850157
+1990-10-27T17:00:00,0.048346318029588664
+1990-10-27T18:00:00,0.04831608695460545
+1990-10-27T19:00:00,0.048285934489636126
+1990-10-27T20:00:00,0.04900497830030771
+1990-10-27T21:00:00,0.05056902691323982
+1990-10-27T22:00:00,0.05057750537949829
+1990-10-27T23:00:00,0.05058600695976919
+1990-10-28T00:00:00,0.05059453157518976
+1990-10-28T01:00:00,0.11125413166287129
+1990-10-28T02:00:00,0.11230912809293983
+1990-10-28T03:00:00,0.11335557056911134
+1990-10-28T04:00:00,0.11441719255276696
+1990-10-28T05:00:00,0.11549358812640109
+1990-10-28T06:00:00,0.11658436032466639
+1990-10-28T07:00:00,0.11768912057014436
+1990-10-28T08:00:00,0.10503525095392116
+1990-10-28T09:00:00,0.10451864631596978
+1990-10-28T10:00:00,0.1053714991533855
+1990-10-28T11:00:00,0.10623124604106687
+1990-10-28T12:00:00,0.10709772673491694
+1990-10-28T13:00:00,0.1079707834648162
+1990-10-28T14:00:00,0.10885026090377281
+1990-10-28T15:00:00,0.10973600614131254
+1990-10-28T16:00:00,0.11062786866009733
+1990-10-28T17:00:00,0.11152570031495089
+1990-10-28T18:00:00,0.11242935531362394
+1990-10-28T19:00:00,0.11333869019875868
+1990-10-28T20:00:00,0.12805462562851372
+1990-10-28T21:00:00,0.1324617019866965
+1990-10-28T22:00:00,0.1389048170872584
+1990-10-28T23:00:00,0.14535813711816503
+1990-10-29T00:00:00,0.1518202717121655
+1990-10-29T01:00:00,0.1292918455265539
+1990-10-29T02:00:00,0.13275680968533538
+1990-10-29T03:00:00,0.13622348398516193
+1990-10-29T04:00:00,0.13968260920599762
+1990-10-29T05:00:00,0.1431340027521759
+1990-10-29T06:00:00,0.1465774866505579
+1990-10-29T07:00:00,0.15001288749275982
+1990-10-29T08:00:00,0.14455675895628042
+1990-10-29T09:00:00,0.14543171692887355
+1990-10-29T10:00:00,0.14773393473950513
+1990-10-29T11:00:00,0.15002840342526685
+1990-10-29T12:00:00,0.1523150914526087
+1990-10-29T13:00:00,0.15459396847414889
+1990-10-29T14:00:00,0.15686500531324066
+1990-10-29T15:00:00,0.15912817394854606
+1990-10-29T16:00:00,0.1613834474986227
+1990-10-29T17:00:00,0.16363080020652973
+1990-10-29T18:00:00,0.16587020742445796
+1990-10-29T19:00:00,0.16810164559839033
+1990-10-29T20:00:00,0.17923915708844732
+1990-10-29T21:00:00,0.18403355273184563
+1990-10-29T22:00:00,0.18738299080012577
+1990-10-29T23:00:00,0.19072232868853492
+1990-10-30T00:00:00,0.19405145129714213
+1990-10-30T01:00:00,0.16460436147678942
+1990-10-30T02:00:00,0.16429906849802434
+1990-10-30T03:00:00,0.16400677464783367
+1990-10-30T04:00:00,0.163717512733388
+1990-10-30T05:00:00,0.1634312580044774
+1990-10-30T06:00:00,0.16314798590523522
+1990-10-30T07:00:00,0.16286767207262667
+1990-10-30T08:00:00,0.16068107113177477
+1990-10-30T09:00:00,0.1584932109519654
+1990-10-30T10:00:00,0.15782533623771225
+1990-10-30T11:00:00,0.1571628905427431
+1990-10-30T12:00:00,0.1565058319486517
+1990-10-30T13:00:00,0.15585411886058767
+1990-10-30T14:00:00,0.15520771000474248
+1990-10-30T15:00:00,0.1545665644258549
+1990-10-30T16:00:00,0.15393064148473593
+1990-10-30T17:00:00,0.15329990085581366
+1990-10-30T18:00:00,0.15267430252469674
+1990-10-30T19:00:00,0.1520538067857571
+1990-10-30T20:00:00,0.1533484539613817
+1990-10-30T21:00:00,0.15465300252835926
+1990-10-30T22:00:00,0.154445420049568
+1990-10-30T23:00:00,0.15424020100641497
+1990-10-31T00:00:00,0.15403732583392094
+1990-10-31T01:00:00,0.15905207348435416
+1990-10-31T02:00:00,0.1595304046497403
+1990-10-31T03:00:00,0.15991978761482642
+1990-10-31T04:00:00,0.1603079955625815
+1990-10-31T05:00:00,0.1606950311100771
+1990-10-31T06:00:00,0.1610808968851551
+1990-10-31T07:00:00,0.16146559552621925
+1990-10-31T08:00:00,0.15881868188657952
+1990-10-31T09:00:00,0.15794835746984948
+1990-10-31T10:00:00,0.15789179906949136
+1990-10-31T11:00:00,0.15783664404040257
+1990-10-31T12:00:00,0.15778287943161784
+1990-10-31T13:00:00,0.1577304923987074
+1990-10-31T14:00:00,0.15767947020293702
+1990-10-31T15:00:00,0.1576298002104346
+1990-10-31T16:00:00,0.15758146989136296
+1990-10-31T17:00:00,0.15753446681909922
+1990-10-31T18:00:00,0.15748877866942051
+1990-10-31T19:00:00,0.15744439321969578
+1990-10-31T20:00:00,0.16043435130413214
+1990-10-31T21:00:00,0.1616485562779775
+1990-10-31T22:00:00,0.16204905323728028
+1990-10-31T23:00:00,0.16244819620411802
+1990-11-01T00:00:00,0.1628459896090579
+1990-11-01T01:00:00,0.17455319112143364
+1990-11-01T02:00:00,0.1630473181378632
+1990-11-01T03:00:00,0.163222625006202
+1990-11-01T04:00:00,0.16339788526872867
+1990-11-01T05:00:00,0.16357309558224764
+1990-11-01T06:00:00,0.16374825264448595
+1990-11-01T07:00:00,0.16392335319372184
+1990-11-01T08:00:00,0.16409839400841514
+1990-11-01T09:00:00,0.16300006364832648
+1990-11-01T10:00:00,0.16303077121963336
+1990-11-01T11:00:00,0.1630622858540555
+1990-11-01T12:00:00,0.16309459882790237
+1990-11-01T13:00:00,0.1631277014935678
+1990-11-01T14:00:00,0.16316158527891417
+1990-11-01T15:00:00,0.16319624168666114
+1990-11-01T16:00:00,0.16323166229377964
+1990-11-01T17:00:00,0.16326783875089018
+1990-11-01T18:00:00,0.16330476278166564
+1990-11-01T19:00:00,0.1633424261822392
+1990-11-01T20:00:00,0.16338082082061628
+1990-11-01T21:00:00,0.1646943165117654
+1990-11-01T22:00:00,0.16487940792158512
+1990-11-01T23:00:00,0.16506431505643435
+1990-11-02T00:00:00,0.16524903588495984
+1990-11-02T01:00:00,0.1841336928642199
+1990-11-02T02:00:00,0.18647092598483156
+1990-11-02T03:00:00,0.18878493393907247
+1990-11-02T04:00:00,0.19108800822519423
+1990-11-02T05:00:00,0.1933801746204253
+1990-11-02T06:00:00,0.19566145937302704
+1990-11-02T07:00:00,0.19793188919023808
+1990-11-02T08:00:00,0.2001914912264161
+1990-11-02T09:00:00,0.20127459847092172
+1990-11-02T10:00:00,0.2033776097509065
+1990-11-02T11:00:00,0.20547046253105464
+1990-11-02T12:00:00,0.20755318701064457
+1990-11-02T13:00:00,0.20962581368140873
+1990-11-02T14:00:00,0.21168837331891924
+1990-11-02T15:00:00,0.21374089697411366
+1990-11-02T16:00:00,0.21578341596495754
+1990-11-02T17:00:00,0.21781596186824337
+1990-11-02T18:00:00,0.21983856651152311
+1990-11-02T19:00:00,0.22185126196517269
+1990-11-02T20:00:00,0.2238540805345873
+1990-11-02T21:00:00,0.22701510769683578
+1990-11-02T22:00:00,0.22913558599039763
+1990-11-02T23:00:00,0.23124564052450894
+1990-11-03T00:00:00,0.2333453042596484
+1990-11-03T01:00:00,0.20438332621125405
+1990-11-03T02:00:00,0.20279968582906802
+1990-11-03T03:00:00,0.20122818338404647
+1990-11-03T04:00:00,0.19966872536290609
+1990-11-03T05:00:00,0.19812121897766752
+1990-11-03T06:00:00,0.19658557215999206
+1990-11-03T07:00:00,0.19506169355556383
+1990-11-03T08:00:00,0.2170769310102455
+1990-11-03T09:00:00,0.217614197067319
+1990-11-03T10:00:00,0.2187937667185792
+1990-11-03T11:00:00,0.2199674518766911
+1990-11-03T12:00:00,0.2211352801615312
+1990-11-03T13:00:00,0.22229727912409866
+1990-11-03T14:00:00,0.22066822649838125
+1990-11-03T15:00:00,0.21230584936056474
+1990-11-03T16:00:00,0.21203309456641697
+1990-11-03T17:00:00,0.2117632302723246
+1990-11-03T18:00:00,0.2114962326789325
+1990-11-03T19:00:00,0.2112320781754694
+1990-11-03T20:00:00,0.20012630863785494
+1990-11-03T21:00:00,0.19858044086848461
+1990-11-03T22:00:00,0.19704641788855026
+1990-11-03T23:00:00,0.1955241484592467
+1990-11-04T00:00:00,0.19401354204931523
+1990-11-04T01:00:00,0.19251450882952026
+1990-11-04T02:00:00,0.19102695966716945
+1990-11-04T03:00:00,0.18955080612067726
+1990-11-04T04:00:00,0.18808596043417003
+1990-11-04T05:00:00,0.186632335532135
+1990-11-04T06:00:00,0.18518984501411007
+1990-11-04T07:00:00,0.18375840314941566
+1990-11-04T08:00:00,0.2105060313643671
+1990-11-04T09:00:00,0.2117371814167283
+1990-11-04T10:00:00,0.21357828757451938
+1990-11-04T11:00:00,0.21540954667457343
+1990-11-04T12:00:00,0.2172310050124644
+1990-11-04T13:00:00,0.2190427088238376
+1990-11-04T14:00:00,0.22084470428121888
+1990-11-04T15:00:00,0.2226370374909014
+1990-11-04T16:00:00,0.2244197544899079
+1990-11-04T17:00:00,0.22619290124302707
+1990-11-04T18:00:00,0.22795652363992266
+1990-11-04T19:00:00,0.2297106674923135
+1990-11-04T20:00:00,0.20394928972778478
+1990-11-04T21:00:00,0.20238218728108243
+1990-11-04T22:00:00,0.20082708982636888
+1990-11-04T23:00:00,0.19928390488381595
+1990-11-05T00:00:00,0.19775254069082948
+1990-11-05T01:00:00,0.19817533912812504
+1990-11-05T02:00:00,0.19684797669538712
+1990-11-05T03:00:00,0.19557646060636844
+1990-11-05T04:00:00,0.19431473506984004
+1990-11-05T05:00:00,0.1930627247596064
+1990-11-05T06:00:00,0.19182035493279498
+1990-11-05T07:00:00,0.19058755142530703
+1990-11-05T08:00:00,0.1959076296228455
+1990-11-05T09:00:00,0.1943553224374255
+1990-11-05T10:00:00,0.193795410969336
+1990-11-05T11:00:00,0.1932401701730463
+1990-11-05T12:00:00,0.19268956381746202
+1990-11-05T13:00:00,0.19214355595132968
+1990-11-05T14:00:00,0.19160211090106338
+1990-11-05T15:00:00,0.19106519326858892
+1990-11-05T16:00:00,0.19053276792920418
+1990-11-05T17:00:00,0.19000480002945708
+1990-11-05T18:00:00,0.18948125498503926
+1990-11-05T19:00:00,0.18896209847869685
+1990-11-05T20:00:00,0.18190168250198044
+1990-11-05T21:00:00,0.1817278193168677
+1990-11-05T22:00:00,0.18057521135729185
+1990-11-05T23:00:00,0.17943147838554702
+1990-11-06T00:00:00,0.1782965521637304
+1990-11-06T01:00:00,0.17527951967486083
+1990-11-06T02:00:00,0.17393463847638246
+1990-11-06T03:00:00,0.17260005010470014
+1990-11-06T04:00:00,0.17127567535294877
+1990-11-06T05:00:00,0.16996143562792213
+1990-11-06T06:00:00,0.16865725294528713
+1990-11-06T07:00:00,0.16736304992483478
+1990-11-06T08:00:00,0.1660787497857689
+1990-11-06T09:00:00,0.16480427634203157
+1990-11-06T10:00:00,0.16353955399766543
+1990-11-06T11:00:00,0.16228450774221234
+1990-11-06T12:00:00,0.16103906314614785
+1990-11-06T13:00:00,0.15980314635635176
+1990-11-06T14:00:00,0.15857668409161424
+1990-11-06T15:00:00,0.15735960363817705
+1990-11-06T16:00:00,0.15615183284530978
+1990-11-06T17:00:00,0.15495330012092065
+1990-11-06T18:00:00,0.153763934427202
+1990-11-06T19:00:00,0.1525836652763097
+1990-11-06T20:00:00,0.15141242272607666
+1990-11-06T21:00:00,0.15025013737575954
+1990-11-06T22:00:00,0.14909674036181939
+1990-11-06T23:00:00,0.1479521633537348
+1990-11-07T00:00:00,0.14681633854984813
+1990-11-07T01:00:00,0.14568919867324462
+1990-11-07T02:00:00,0.1445706769676631
+1990-11-07T03:00:00,0.1434607071934392
+1990-11-07T04:00:00,0.14235922362348058
+1990-11-07T05:00:00,0.14126616103927303
+1990-11-07T06:00:00,0.1401814547269186
+1990-11-07T07:00:00,0.13910504047320416
+1990-11-07T08:00:00,0.13803685456170123
+1990-11-07T09:00:00,0.13697683376889616
+1990-11-07T10:00:00,0.1359249153603505
+1990-11-07T11:00:00,0.1348810370868919
+1990-11-07T12:00:00,0.13384513718083435
+1990-11-07T13:00:00,0.13281715435222835
+1990-11-07T14:00:00,0.1317970277851404
+1990-11-07T15:00:00,0.1307846971339615
+1990-11-07T16:00:00,0.12978010251974478
+1990-11-07T17:00:00,0.1287831845265716
+1990-11-07T18:00:00,0.1277938841979463
+1990-11-07T19:00:00,0.12681214303321914
+1990-11-07T20:00:00,0.1258379029840372
+1990-11-07T21:00:00,0.12487110645082297
+1990-11-07T22:00:00,0.12391169627928098
+1990-11-07T23:00:00,0.12295961575693118
+1990-11-08T00:00:00,0.12201480860966984
+1990-11-08T01:00:00,0.12107721899835727
+1990-11-08T02:00:00,0.12014679151543238
+1990-11-08T03:00:00,0.11922347118155352
+1990-11-08T04:00:00,0.11830720344226588
+1990-11-08T05:00:00,0.11739793416469468
+1990-11-08T06:00:00,0.11649560963426468
+1990-11-08T07:00:00,0.11560017655144478
+1990-11-08T08:00:00,0.11492408015041954
+1990-11-08T09:00:00,0.11425305270205124
+1990-11-08T10:00:00,0.11358705216623795
+1990-11-08T11:00:00,0.11292603708342887
+1990-11-08T12:00:00,0.11226996657117376
+1990-11-08T13:00:00,0.11161880032098336
+1990-11-08T14:00:00,0.11097249859559648
+1990-11-08T15:00:00,0.1103310222267834
+1990-11-08T16:00:00,0.10969433261384719
+1990-11-08T17:00:00,0.10906239172291218
+1990-11-08T18:00:00,0.1084351620860448
+1990-11-08T19:00:00,0.10781260663242002
+1990-11-08T20:00:00,0.10698398947690277
+1990-11-08T21:00:00,0.10616169804047523
+1990-11-08T22:00:00,0.1053456838051284
+1990-11-08T23:00:00,0.10453589862747291
+1990-11-09T00:00:00,0.1037322947358258
+1990-11-09T01:00:00,0.10314539608644585
+1990-11-09T02:00:00,0.10256300859030981
+1990-11-09T03:00:00,0.10198509771956067
+1990-11-09T04:00:00,0.10142647164833067
+1990-11-09T05:00:00,0.10217277841794631
+1990-11-09T06:00:00,0.10160809290426248
+1990-11-09T07:00:00,0.10104774854233656
+1990-11-09T08:00:00,0.10531240100875108
+1990-11-09T09:00:00,0.10350069554102598
+1990-11-09T10:00:00,0.10351721074042429
+1990-11-09T11:00:00,0.10353324590828968
+1990-11-09T12:00:00,0.09927856415543516
+1990-11-09T13:00:00,0.09851607077632024
+1990-11-09T14:00:00,0.09775939566395805
+1990-11-09T15:00:00,0.09700849421761698
+1990-11-09T16:00:00,0.0962633221807296
+1990-11-09T17:00:00,0.0955238356382176
+1990-11-09T18:00:00,0.09478999101383774
+1990-11-09T19:00:00,0.09406174506754857
+1990-11-09T20:00:00,0.09333905489289777
+1990-11-09T21:00:00,0.09262187791442972
+1990-11-09T22:00:00,0.09191017188511372
+1990-11-09T23:00:00,0.09120389488379192
+1990-11-10T00:00:00,0.09050300531264736
+1990-11-10T01:00:00,0.08980746189469194
+1990-11-10T02:00:00,0.08911722367127382
+1990-11-10T03:00:00,0.08843224999960446
+1990-11-10T04:00:00,0.08807557545585169
+1990-11-10T05:00:00,0.08820377639336384
+1990-11-10T06:00:00,0.09168220990032551
+1990-11-10T07:00:00,0.09448754245506578
+1990-11-10T08:00:00,0.09461414843427515
+1990-11-10T09:00:00,0.09373651532113574
+1990-11-10T10:00:00,0.09374447656413755
+1990-11-10T11:00:00,0.0937527141469855
+1990-11-10T12:00:00,0.09376122553287644
+1990-11-10T13:00:00,0.09377000820521587
+1990-11-10T14:00:00,0.09377905966746235
+1990-11-10T15:00:00,0.0937883774429726
+1990-11-10T16:00:00,0.09379795907484845
+1990-11-10T17:00:00,0.09380780212578449
+1990-11-10T18:00:00,0.09381790417791694
+1990-11-10T19:00:00,0.09382826283267395
+1990-11-10T20:00:00,0.09383887571062655
+1990-11-10T21:00:00,0.09485385937892825
+1990-11-10T22:00:00,0.09498297167315721
+1990-11-10T23:00:00,0.09511153159069359
+1990-11-11T00:00:00,0.09523954264478056
+1990-11-11T01:00:00,0.12156026647555351
+1990-11-11T02:00:00,0.12478907132867775
+1990-11-11T03:00:00,0.12798701591701425
+1990-11-11T04:00:00,0.13116788452497768
+1990-11-11T05:00:00,0.13433172377427818
+1990-11-11T06:00:00,0.1374785813293179
+1990-11-11T07:00:00,0.14060850585582363
+1990-11-11T08:00:00,0.1437215469812283
+1990-11-11T09:00:00,0.1459367783797145
+1990-11-11T10:00:00,0.14891109674390124
+1990-11-11T11:00:00,0.151869151243415
+1990-11-11T12:00:00,0.1548109971956968
+1990-11-11T13:00:00,0.15773669056785455
+1990-11-11T14:00:00,0.16064628794949742
+1990-11-11T15:00:00,0.16353984652652445
+1990-11-11T16:00:00,0.16641742405581558
+1990-11-11T17:00:00,0.16927907884077736
+1990-11-11T18:00:00,0.1721248697076984
+1990-11-11T19:00:00,0.1749548559828746
+1990-11-11T20:00:00,0.1777690974704659
+1990-11-11T21:00:00,0.1814503985301687
+1990-11-11T22:00:00,0.1843401520911991
+1990-11-11T23:00:00,0.18721382375581577
+1990-11-12T00:00:00,0.1900714741579071
+1990-11-12T01:00:00,0.15972678659746176
+1990-11-12T02:00:00,0.15852441023709374
+1990-11-12T03:00:00,0.15733122061615978
+1990-11-12T04:00:00,0.15614714709836902
+1990-11-12T05:00:00,0.15497211959426258
+1990-11-12T06:00:00,0.15380606855695197
+1990-11-12T07:00:00,0.15264892497789007
+1990-11-12T08:00:00,0.15150062038267575
+1990-11-12T09:00:00,0.15036108682689134
+1990-11-12T10:00:00,0.14923025689197233
+1990-11-12T11:00:00,0.14810806368111012
+1990-11-12T12:00:00,0.14699444081518637
+1990-11-12T13:00:00,0.14588932242873928
+1990-11-12T14:00:00,0.1447926431659617
+1990-11-12T15:00:00,0.14370433817673056
+1990-11-12T16:00:00,0.14262434311266708
+1990-11-12T17:00:00,0.14155259412322843
+1990-11-12T18:00:00,0.14048902785182937
+1990-11-12T19:00:00,0.13943358143199508
+1990-11-12T20:00:00,0.13838619248354292
+1990-11-12T21:00:00,0.13734679910879577
+1990-11-12T22:00:00,0.13631533988882338
+1990-11-12T23:00:00,0.13529175387971437
+1990-11-13T00:00:00,0.13427598060887663
+1990-11-13T01:00:00,0.13326796007136749
+1990-11-13T02:00:00,0.13297920612375708
+1990-11-13T03:00:00,0.14032099044327895
+1990-11-13T04:00:00,0.14037484648183868
+1990-11-13T05:00:00,0.14042881403977608
+1990-11-13T06:00:00,0.14048289129351102
+1990-11-13T07:00:00,0.14053707643655672
+1990-11-13T08:00:00,0.14059136767937794
+1990-11-13T09:00:00,0.13901543638626798
+1990-11-13T10:00:00,0.13887226565828517
+1990-11-13T11:00:00,0.13873055218803476
+1990-11-13T12:00:00,0.13859028435243365
+1990-11-13T13:00:00,0.13845145061850678
+1990-11-13T14:00:00,0.13831403954269145
+1990-11-13T15:00:00,0.1381780397701473
+1990-11-13T16:00:00,0.13804344003407157
+1990-11-13T17:00:00,0.13791022915501955
+1990-11-13T18:00:00,0.13777839604023046
+1990-11-13T19:00:00,0.1376479296829585
+1990-11-13T20:00:00,0.13751881916180897
+1990-11-13T21:00:00,0.13902193880445346
+1990-11-13T22:00:00,0.13909372779875825
+1990-11-13T23:00:00,0.13916547710498278
+1990-11-14T00:00:00,0.1392371860977577
+1990-11-14T01:00:00,0.1587783141985737
+1990-11-14T02:00:00,0.1613048293388572
+1990-11-14T03:00:00,0.16374295547429124
+1990-11-14T04:00:00,0.16616659979635187
+1990-11-14T05:00:00,0.16857583694106287
+1990-11-14T06:00:00,0.1709707414711513
+1990-11-14T07:00:00,0.1733513878671495
+1990-11-14T08:00:00,0.17571785051884478
+1990-11-14T09:00:00,0.177111271080545
+1990-11-14T10:00:00,0.1793319462020418
+1990-11-14T11:00:00,0.18153931656534641
+1990-11-14T12:00:00,0.18373345434836838
+1990-11-14T13:00:00,0.18591443155735063
+1990-11-14T14:00:00,0.18808232002165726
+1990-11-14T15:00:00,0.19023719138876485
+1990-11-14T16:00:00,0.19237911711944966
+1990-11-14T17:00:00,0.19450816848316152
+1990-11-14T18:00:00,0.1966244165535782
+1990-11-14T19:00:00,0.19872793220433368
+1990-11-14T20:00:00,0.20081878610491197
+1990-11-14T21:00:00,0.2038572016168146
+1990-11-14T22:00:00,0.20604177354192818
+1990-11-14T23:00:00,0.20821320599478677
+1990-11-15T00:00:00,0.2103715712381208
+1990-11-15T01:00:00,0.19985871447573755
+1990-11-15T02:00:00,0.20039789873802122
+1990-11-15T03:00:00,0.20095398624999425
+1990-11-15T04:00:00,0.201506997040736
+1990-11-15T05:00:00,0.2020569504454031
+1990-11-15T06:00:00,0.2026038656780841
+1990-11-15T07:00:00,0.20314776183251446
+1990-11-15T08:00:00,0.2036886578827881
+1990-11-15T09:00:00,0.20308274599680728
+1990-11-15T10:00:00,0.2034754496768224
+1990-11-15T11:00:00,0.20386615405507236
+1990-11-15T12:00:00,0.20425487127353906
+1990-11-15T13:00:00,0.2046416133993412
+1990-11-15T14:00:00,0.20502639242518098
+1990-11-15T15:00:00,0.20540922026978897
+1990-11-15T16:00:00,0.20579010877836582
+1990-11-15T17:00:00,0.20616906972302204
+1990-11-15T18:00:00,0.20654611480321483
+1990-11-15T19:00:00,0.20692125564618263
+1990-11-15T20:00:00,0.2072945038073777
+1990-11-15T21:00:00,0.20881031599504607
+1990-11-15T22:00:00,0.20932266964986357
+1990-11-15T23:00:00,0.2098322097383769
+1990-11-16T00:00:00,0.2103389540288865
+1990-11-16T01:00:00,0.19525975983045
+1990-11-16T02:00:00,0.19381405354736211
+1990-11-16T03:00:00,0.19237939433859438
+1990-11-16T04:00:00,0.1909556971613157
+1990-11-16T05:00:00,0.18954287763187902
+1990-11-16T06:00:00,0.1881408520206775
+1990-11-16T07:00:00,0.18674953724704163
+1990-11-16T08:00:00,0.18536885087417596
+1990-11-16T09:00:00,0.18399871110413585
+1990-11-16T10:00:00,0.18263903677284354
+1990-11-16T11:00:00,0.18128974734514325
+1990-11-16T12:00:00,0.17995076290989542
+1990-11-16T13:00:00,0.17862200417510896
+1990-11-16T14:00:00,0.17730339246311191
+1990-11-16T15:00:00,0.17599484970576043
+1990-11-16T16:00:00,0.17469629843968446
+1990-11-16T17:00:00,0.17340766180157152
+1990-11-16T18:00:00,0.17212886352348705
+1990-11-16T19:00:00,0.1708598279282319
+1990-11-16T20:00:00,0.16960047992473531
+1990-11-16T21:00:00,0.16835074500348537
+1990-11-16T22:00:00,0.16711054923199414
+1990-11-16T23:00:00,0.16587981925029896
+1990-11-17T00:00:00,0.1646584822664989
+1990-11-17T01:00:00,0.16344646605232624
+1990-11-17T02:00:00,0.17260233306802258
+1990-11-17T03:00:00,0.17882020337261778
+1990-11-17T04:00:00,0.17960436239480845
+1990-11-17T05:00:00,0.18038371606821693
+1990-11-17T06:00:00,0.1811582965609947
+1990-11-17T07:00:00,0.18192813582858075
+1990-11-17T08:00:00,0.18269326561500238
+1990-11-17T09:00:00,0.18253054774053257
+1990-11-17T10:00:00,0.18317102768389004
+1990-11-17T11:00:00,0.18380765828612305
+1990-11-17T12:00:00,0.18444046535811548
+1990-11-17T13:00:00,0.18506947453738282
+1990-11-17T14:00:00,0.185694711289186
+1990-11-17T15:00:00,0.1863162009076388
+1990-11-17T16:00:00,0.18693396851680966
+1990-11-17T17:00:00,0.1875480390718168
+1990-11-17T18:00:00,0.18815843735991772
+1990-11-17T19:00:00,0.1887651880015925
+1990-11-17T20:00:00,0.18936831545162092
+1990-11-17T21:00:00,0.1908915149760877
+1990-11-17T22:00:00,0.19160328624628264
+1990-11-17T23:00:00,0.19231073162631115
+1990-11-18T00:00:00,0.19301388014112025
+1990-11-18T01:00:00,0.19004601920562644
+1990-11-18T02:00:00,0.190304907518196
+1990-11-18T03:00:00,0.19054122642968316
+1990-11-18T04:00:00,0.19077643966400865
+1990-11-18T05:00:00,0.19101055397698907
+1990-11-18T06:00:00,0.1912435760808452
+1990-11-18T07:00:00,0.19147551264448698
+1990-11-18T08:00:00,0.19170637029379653
+1990-11-18T09:00:00,0.19120860960029815
+1990-11-18T10:00:00,0.19134583713168227
+1990-11-18T11:00:00,0.19148263706815347
+1990-11-18T12:00:00,0.19161901133150536
+1990-11-18T13:00:00,0.19175496183460397
+1990-11-18T14:00:00,0.19189049048142467
+1990-11-18T15:00:00,0.19202559916708978
+1990-11-18T16:00:00,0.1921602897779052
+1990-11-18T17:00:00,0.19229456419139765
+1990-11-18T18:00:00,0.19242842427635154
+1990-11-18T19:00:00,0.1925618718928456
+1990-11-18T20:00:00,0.19269490889228924
+1990-11-18T21:00:00,0.19355534648496836
+1990-11-18T22:00:00,0.19377931916327118
+1990-11-18T23:00:00,0.19400225111522806
+1990-11-19T00:00:00,0.19422414873640076
+1990-11-19T01:00:00,0.19811453580497745
+1990-11-19T02:00:00,0.1987876715035166
+1990-11-19T03:00:00,0.1994651535788616
+1990-11-19T04:00:00,0.2001384925035651
+1990-11-19T05:00:00,0.2008077164109917
+1990-11-19T06:00:00,0.20147285324362238
+1990-11-19T07:00:00,0.20213393075428715
+1990-11-19T08:00:00,0.2027909765073908
+1990-11-19T09:00:00,0.2026377889307917
+1990-11-19T10:00:00,0.2031848826229049
+1990-11-19T11:00:00,0.20372871920611157
+1990-11-19T12:00:00,0.2042693207250874
+1990-11-19T13:00:00,0.20480670907378085
+1990-11-19T14:00:00,0.20534090599641464
+1990-11-19T15:00:00,0.20587193308848084
+1990-11-19T16:00:00,0.2063998117977306
+1990-11-19T17:00:00,0.20692456342515742
+1990-11-19T18:00:00,0.2074462091259741
+1990-11-19T19:00:00,0.20796476991058488
+1990-11-19T20:00:00,0.2084802666455502
+1990-11-19T21:00:00,0.20979930659950405
+1990-11-19T22:00:00,0.21041105907356644
+1990-11-19T23:00:00,0.21101910997607795
+1990-11-20T00:00:00,0.21162348446839846
+1990-11-20T01:00:00,0.23533308249311938
+1990-11-20T02:00:00,0.23879127849581389
+1990-11-20T03:00:00,0.24229267807561952
+1990-11-20T04:00:00,0.24577198893151964
+1990-11-20T05:00:00,0.2492293314799153
+1990-11-20T06:00:00,0.25266482606700486
+1990-11-20T07:00:00,0.2560785929481503
+1990-11-20T08:00:00,0.259470752268163
+1990-11-20T09:00:00,0.26143361427027545
+1990-11-20T10:00:00,0.26460306678797074
+1990-11-20T11:00:00,0.2677523630869232
+1990-11-20T12:00:00,0.2708816188806586
+1990-11-20T13:00:00,0.27399094961613074
+1990-11-20T14:00:00,0.2770804704619911
+1990-11-20T15:00:00,0.28015029629737437
+1990-11-20T16:00:00,0.2832005417011753
+1990-11-20T17:00:00,0.2862313209417976
+1990-11-20T18:00:00,0.28924274796735244
+1990-11-20T19:00:00,0.29223493639629006
+1990-11-20T20:00:00,0.29520799950844373
+1990-11-20T21:00:00,0.2995712237014317
+1990-11-20T22:00:00,0.30268754740521636
+1990-11-20T23:00:00,0.30578395035504796
+1990-11-21T00:00:00,0.30886054925619477
+1990-11-21T01:00:00,0.2916752381791332
+1990-11-21T02:00:00,0.2921680529328075
+1990-11-21T03:00:00,0.29260433422540544
+1990-11-21T04:00:00,0.29303833024653414
+1990-11-21T05:00:00,0.293470055121797
+1990-11-21T06:00:00,0.2938995228903626
+1990-11-21T07:00:00,0.2943267475054415
+1990-11-21T08:00:00,0.2947517428347621
+1990-11-21T09:00:00,0.2942631876588598
+1990-11-21T10:00:00,0.2945662445340693
+1990-11-21T11:00:00,0.2948679303669277
+1990-11-21T12:00:00,0.2951682529061821
+1990-11-21T13:00:00,0.2954672198575564
+1990-11-21T14:00:00,0.2957648388839518
+1990-11-21T15:00:00,0.2960611176056473
+1990-11-21T16:00:00,0.29635606360050026
+1990-11-21T17:00:00,0.2966496844041452
+1990-11-21T18:00:00,0.29694198751019396
+1990-11-21T19:00:00,0.29723298037043394
+1990-11-21T20:00:00,0.29752267039502706
+1990-11-21T21:00:00,0.2987227147959658
+1990-11-21T22:00:00,0.2991276515743259
+1990-11-21T23:00:00,0.29953048479842875
+1990-11-22T00:00:00,0.2999312275690394
+1990-11-22T01:00:00,0.2814148863064614
+1990-11-22T02:00:00,0.27936552868356707
+1990-11-22T03:00:00,0.2773318478775194
+1990-11-22T04:00:00,0.27531372292394507
+1990-11-22T05:00:00,0.273311033798269
+1990-11-22T06:00:00,0.2713236614083663
+1990-11-22T07:00:00,0.2693514875872703
+1990-11-22T08:00:00,0.31673698158287333
+1990-11-22T09:00:00,0.3205875244021779
+1990-11-22T10:00:00,0.32492235202018593
+1990-11-22T11:00:00,0.3292291878601622
+1990-11-22T12:00:00,0.33350818793579906
+1990-11-22T13:00:00,0.33775950817145606
+1990-11-22T14:00:00,0.3419833043732986
+1990-11-22T15:00:00,0.3461797322017629
+1990-11-22T16:00:00,0.35034894714527975
+1990-11-22T17:00:00,0.3544911044951933
+1990-11-22T18:00:00,0.35860635932181834
+1990-11-22T19:00:00,0.3626948664515806
+1990-11-22T20:00:00,0.3179570324008875
+1990-11-22T21:00:00,0.31564159245341267
+1990-11-22T22:00:00,0.3133438776676969
+1990-11-22T23:00:00,0.31106375116075585
+1990-11-23T00:00:00,0.308801077113938
+1990-11-23T01:00:00,0.3065557207645944
+1990-11-23T02:00:00,0.30432754839781573
+1990-11-23T03:00:00,0.30211642733823246
+1990-11-23T04:00:00,0.2999222259418813
+1990-11-23T05:00:00,0.2977448135881345
+1990-11-23T06:00:00,0.29558406067169374
+1990-11-23T07:00:00,0.29343983859464584
+1990-11-23T08:00:00,0.2913120197585824
+1990-11-23T09:00:00,0.2892004775567798
+1990-11-23T10:00:00,0.2871050863664428
+1990-11-23T11:00:00,0.2850257215410072
+1990-11-23T12:00:00,0.28296225940250463
+1990-11-23T13:00:00,0.28091457723398644
+1990-11-23T14:00:00,0.2788825532720076
+1990-11-23T15:00:00,0.27686606669917
+1990-11-23T16:00:00,0.27486499763672384
+1990-11-23T17:00:00,0.27287922713722784
+1990-11-23T18:00:00,0.27090863717726654
+1990-11-23T19:00:00,0.2689531106502259
+1990-11-23T20:00:00,0.26701253135912456
+1990-11-23T21:00:00,0.2650867840095023
+1990-11-23T22:00:00,0.26317575420236433
+1990-11-23T23:00:00,0.26127932842718066
+1990-11-24T00:00:00,0.25939739405494133
+1990-11-24T01:00:00,0.25752983933126505
+1990-11-24T02:00:00,0.25567655336956363
+1990-11-24T03:00:00,0.25383742614425864
+1990-11-24T04:00:00,0.25201234848405263
+1990-11-24T05:00:00,0.250201212065252
+1990-11-24T06:00:00,0.24840390940514406
+1990-11-24T07:00:00,0.24662033385542448
+1990-11-24T08:00:00,0.25604748379898823
+1990-11-24T09:00:00,0.2546553363207058
+1990-11-24T10:00:00,0.25421430143811063
+1990-11-24T11:00:00,0.2537769721882629
+1990-11-24T12:00:00,0.253343319830414
+1990-11-24T13:00:00,0.25291331584558674
+1990-11-24T14:00:00,0.25248693193485633
+1990-11-24T15:00:00,0.2520641400176453
+1990-11-24T16:00:00,0.2516449122300306
+1990-11-24T17:00:00,0.2512292209230652
+1990-11-24T18:00:00,0.25081703866111166
+1990-11-24T19:00:00,0.25040833822018993
+1990-11-24T20:00:00,0.2398946479457384
+1990-11-24T21:00:00,0.238178783761437
+1990-11-24T22:00:00,0.2364760178234898
+1990-11-24T23:00:00,0.23478624919282437
+1990-11-25T00:00:00,0.23310937771365306
+1990-11-25T01:00:00,0.2314453040073542
+1990-11-25T02:00:00,0.22979392946640206
+1990-11-25T03:00:00,0.22815515624834437
+1990-11-25T04:00:00,0.22652888726982734
+1990-11-25T05:00:00,0.22491502620066706
+1990-11-25T06:00:00,0.22331347745796826
+1990-11-25T07:00:00,0.22172414620028874
+1990-11-25T08:00:00,0.23361762151353482
+1990-11-25T09:00:00,0.23326487778790508
+1990-11-25T10:00:00,0.2333792801193815
+1990-11-25T11:00:00,0.23349329910503144
+1990-11-25T12:00:00,0.2336069368945697
+1990-11-25T13:00:00,0.23372019562407817
+1990-11-25T14:00:00,0.23383307741609494
+1990-11-25T15:00:00,0.2339455843797037
+1990-11-25T16:00:00,0.2340577186106216
+1990-11-25T17:00:00,0.23416948219128716
+1990-11-25T18:00:00,0.23428087719094728
+1990-11-25T19:00:00,0.2343919056657439
+1990-11-25T20:00:00,0.2215673911273328
+1990-11-25T21:00:00,0.2199947938990061
+1990-11-25T22:00:00,0.21843418972600995
+1990-11-25T23:00:00,0.21688548624386647
+1990-11-26T00:00:00,0.2153485918044217
+1990-11-26T01:00:00,0.21382341547025366
+1990-11-26T02:00:00,0.2123098670091238
+1990-11-26T03:00:00,0.21080785688847278
+1990-11-26T04:00:00,0.20931729626995849
+1990-11-26T05:00:00,0.20783809700403777
+1990-11-26T06:00:00,0.2063701716245904
+1990-11-26T07:00:00,0.20491343334358517
+1990-11-26T08:00:00,0.2108189161519455
+1990-11-26T09:00:00,0.20938586673549037
+1990-11-26T10:00:00,0.2087868817118238
+1990-11-26T11:00:00,0.20819263009214165
+1990-11-26T12:00:00,0.2076030755280771
+1990-11-26T13:00:00,0.20701818195115576
+1990-11-26T14:00:00,0.20643791357062508
+1990-11-26T15:00:00,0.20586223487129987
+1990-11-26T16:00:00,0.205291110611426
+1990-11-26T17:00:00,0.20472450582055937
+1990-11-26T18:00:00,0.2041623857974625
+1990-11-26T19:00:00,0.20360471610801706
+1990-11-26T20:00:00,0.1966542622022942
+1990-11-26T21:00:00,0.19527320896536207
+1990-11-26T22:00:00,0.1939026735344051
+1990-11-26T23:00:00,0.19254257498176047
+1990-11-27T00:00:00,0.19119283300683762
+1990-11-27T01:00:00,0.18985336793122676
+1990-11-27T02:00:00,0.18852410069384593
+1990-11-27T03:00:00,0.18720495284612562
+1990-11-27T04:00:00,0.18589584654723196
+1990-11-27T05:00:00,0.1845967045593267
+1990-11-27T06:00:00,0.18330745024286468
+1990-11-27T07:00:00,0.18202800755192816
+1990-11-27T08:00:00,0.1851895081918538
+1990-11-27T09:00:00,0.1834170332588839
+1990-11-27T10:00:00,0.18259597009248005
+1990-11-27T11:00:00,0.18178124785174662
+1990-11-27T12:00:00,0.18097281696274434
+1990-11-27T13:00:00,0.1801706282628367
+1990-11-27T14:00:00,0.17937463299670528
+1990-11-27T15:00:00,0.17858478281241186
+1990-11-27T16:00:00,0.17780102975750714
+1990-11-27T17:00:00,0.17702332627518597
+1990-11-27T18:00:00,0.17625162520048795
+1990-11-27T19:00:00,0.1754858797565442
+1990-11-27T20:00:00,0.17139221066542715
+1990-11-27T21:00:00,0.1702042602149275
+1990-11-27T22:00:00,0.16902534215122977
+1990-11-27T23:00:00,0.16785538705115752
+1990-11-28T00:00:00,0.16669432602890372
+1990-11-28T01:00:00,0.1655420907318434
+1990-11-28T02:00:00,0.16439861333637812
+1990-11-28T03:00:00,0.1632638265438138
+1990-11-28T04:00:00,0.16213766357627046
+1990-11-28T05:00:00,0.16102005817262396
+1990-11-28T06:00:00,0.15991094458448
+1990-11-28T07:00:00,0.15881025757217904
+1990-11-28T08:00:00,0.1577179324008331
+1990-11-28T09:00:00,0.15663390483639336
+1990-11-28T10:00:00,0.15555811114174853
+1990-11-28T11:00:00,0.15449048807285382
+1990-11-28T12:00:00,0.15343097287489052
+1990-11-28T13:00:00,0.15237950327845512
+1990-11-28T14:00:00,0.1513360174957789
+1990-11-28T15:00:00,0.15030045421697666
+1990-11-28T16:00:00,0.14927275260632517
+1990-11-28T17:00:00,0.1482528522985704
+1990-11-28T18:00:00,0.14724069339526422
+1990-11-28T19:00:00,0.14623621646112928
+1990-11-28T20:00:00,0.14523936252045266
+1990-11-28T21:00:00,0.1442500730535076
+1990-11-28T22:00:00,0.14326828999300345
+1990-11-28T23:00:00,0.14229395572056322
+1990-11-29T00:00:00,0.14132701306322884
+1990-11-29T01:00:00,0.1403674052899938
+1990-11-29T02:00:00,0.1394150761083628
+1990-11-29T03:00:00,0.13846996966093844
+1990-11-29T04:00:00,0.1375320305220349
+1990-11-29T05:00:00,0.13660120369431744
+1990-11-29T06:00:00,0.13567743460546908
+1990-11-29T07:00:00,0.13476066910488252
+1990-11-29T08:00:00,0.13385085346037875
+1990-11-29T09:00:00,0.13294793435495078
+1990-11-29T10:00:00,0.13205185888353316
+1990-11-29T11:00:00,0.13116257454979655
+1990-11-29T12:00:00,0.13028002926296756
+1990-11-29T13:00:00,0.12940417133467372
+1990-11-29T14:00:00,0.12853494947581243
+1990-11-29T15:00:00,0.12767231279344515
+1990-11-29T16:00:00,0.12681621078771557
+1990-11-29T17:00:00,0.12596659334879168
+1990-11-29T18:00:00,0.12512341075383251
+1990-11-29T19:00:00,0.12428661366397759
+1990-11-29T20:00:00,0.12345615312136081
+1990-11-29T21:00:00,0.12263198054614736
+1990-11-29T22:00:00,0.12181404773359358
+1990-11-29T23:00:00,0.12100230685113024
+1990-11-30T00:00:00,0.12019671043546848
+1990-11-30T01:00:00,0.11939721138972828
+1990-11-30T02:00:00,0.11860376298058958
+1990-11-30T03:00:00,0.11781631883546542
+1990-11-30T04:00:00,0.11703483293969759
+1990-11-30T05:00:00,0.11625925963377395
+1990-11-30T06:00:00,0.11548955361056737
+1990-11-30T07:00:00,0.11472566991259676
+1990-11-30T08:00:00,0.11396756392930893
+1990-11-30T09:00:00,0.11321519139438219
+1990-11-30T10:00:00,0.11246850838305082
+1990-11-30T11:00:00,0.11172747130945038
+1990-11-30T12:00:00,0.11099203692398403
+1990-11-30T13:00:00,0.11026216231070925
+1990-11-30T14:00:00,0.10953780488474509
+1990-11-30T15:00:00,0.10881892238969958
+1990-11-30T16:00:00,0.10810547289511739
+1990-11-30T17:00:00,0.10739741479394745
+1990-11-30T18:00:00,0.10669470680003017
+1990-11-30T19:00:00,0.10599730794560457
+1990-11-30T20:00:00,0.10530517757883465
+1990-11-30T21:00:00,0.10461827536135537
+1990-11-30T22:00:00,0.10393656126583756
+1990-11-30T23:00:00,0.10325999557357197
+1990-12-01T00:00:00,0.10258853887207235
+1990-12-01T01:00:00,0.1019221520526969
+1990-12-01T02:00:00,0.10126079630828876
+1990-12-01T03:00:00,0.10060443313083443
+1990-12-01T04:00:00,0.09995302430914113
+1990-12-01T05:00:00,0.09930653192653176
+1990-12-01T06:00:00,0.098664918358558
+1990-12-01T07:00:00,0.09802814627073152
+1990-12-01T08:00:00,0.09739617861627271
+1990-12-01T09:00:00,0.09676897863387701
+1990-12-01T10:00:00,0.09614650984549873
+1990-12-01T11:00:00,0.09552873605415226
+1990-12-01T12:00:00,0.09491562134173025
+1990-12-01T13:00:00,0.09464658294729779
+1990-12-01T14:00:00,0.09453982568424495
+1990-12-01T15:00:00,0.09443336122014628
+1990-12-01T16:00:00,0.0943271885083349
+1990-12-01T17:00:00,0.09422130650605774
+1990-12-01T18:00:00,0.09411571417446071
+1990-12-01T19:00:00,0.09401041047857406
+1990-12-01T20:00:00,0.09390539438729736
+1990-12-01T21:00:00,0.09380066487338506
+1990-12-01T22:00:00,0.09369622091343184
+1990-12-01T23:00:00,0.09359206148785788
+1990-12-02T00:00:00,0.09348818558089458
+1990-12-02T01:00:00,0.09338459218056988
+1990-12-02T02:00:00,0.09328128027869406
+1990-12-02T03:00:00,0.09317824887084529
+1990-12-02T04:00:00,0.09307549695635532
+1990-12-02T05:00:00,0.09297302353829541
+1990-12-02T06:00:00,0.09287082762346185
+1990-12-02T07:00:00,0.0927689082223622
+1990-12-02T08:00:00,0.09266726434920095
+1990-12-02T09:00:00,0.09256589502186555
+1990-12-02T10:00:00,0.09246479926191259
+1990-12-02T11:00:00,0.09236397609455373
+1990-12-02T12:00:00,0.09226342454864192
+1990-12-02T13:00:00,0.09216314365665759
+1990-12-02T14:00:00,0.0920631324546949
+1990-12-02T15:00:00,0.091963389982448
+1990-12-02T16:00:00,0.09186391528319747
+1990-12-02T17:00:00,0.09176470740379665
+1990-12-02T18:00:00,0.09166576539465816
+1990-12-02T19:00:00,0.09156708830974036
+1990-12-02T20:00:00,0.09146867520653394
+1990-12-02T21:00:00,0.09137052514604856
+1990-12-02T22:00:00,0.09127263719279943
+1990-12-02T23:00:00,0.09117501041479419
+1990-12-03T00:00:00,0.09107764388351947
+1990-12-03T01:00:00,0.09098053667392784
+1990-12-03T02:00:00,0.09088368786442476
+1990-12-03T03:00:00,0.09078709653685522
+1990-12-03T04:00:00,0.09069076177649105
+1990-12-03T05:00:00,0.09059468267201763
+1990-12-03T06:00:00,0.09049885831552124
+1990-12-03T07:00:00,0.09040328780247592
+1990-12-03T08:00:00,0.09030797023173087
+1990-12-03T09:00:00,0.09021290470549749
+1990-12-03T10:00:00,0.09011809032933675
+1990-12-03T11:00:00,0.09002352621214646
+1990-12-03T12:00:00,0.08992921146614866
+1990-12-03T13:00:00,0.08983514520687699
+1990-12-03T14:00:00,0.08974132655316425
+1990-12-03T15:00:00,0.08964775462712975
+1990-12-03T16:00:00,0.08955442855416702
+1990-12-03T17:00:00,0.08946134746293129
+1990-12-03T18:00:00,0.08936851048532728
+1990-12-03T19:00:00,0.08927591675649675
+1990-12-03T20:00:00,0.08918356541480638
+1990-12-03T21:00:00,0.0890914556018354
+1990-12-03T22:00:00,0.08899958646236368
+1990-12-03T23:00:00,0.0889079571443593
+1990-12-04T00:00:00,0.08881656679896677
+1990-12-04T01:00:00,0.08872541458049482
+1990-12-04T02:00:00,0.08863449964640452
+1990-12-04T03:00:00,0.08854382115729734
+1990-12-04T04:00:00,0.08845337827690317
+1990-12-04T05:00:00,0.08836317017206867
+1990-12-04T06:00:00,0.08827319601274526
+1990-12-04T07:00:00,0.08818345497197755
+1990-12-04T08:00:00,0.08809394622589156
+1990-12-04T09:00:00,0.08800466895368302
+1990-12-04T10:00:00,0.08791562233760582
+1990-12-04T11:00:00,0.08782680556296046
+1990-12-04T12:00:00,0.08773821781808251
+1990-12-04T13:00:00,0.08764985829433102
+1990-12-04T14:00:00,0.08756172618607723
+1990-12-04T15:00:00,0.08747382069069308
+1990-12-04T16:00:00,0.08738614100854
+1990-12-04T17:00:00,0.08729868634295734
+1990-12-04T18:00:00,0.08721145590025145
+1990-12-04T19:00:00,0.0871244488896842
+1990-12-04T20:00:00,0.08703766452346179
+1990-12-04T21:00:00,0.08695110201672387
+1990-12-04T22:00:00,0.08686476058753219
+1990-12-04T23:00:00,0.08677863945685971
+1990-12-05T00:00:00,0.08669273784857945
+1990-12-05T01:00:00,0.0866070549894537
+1990-12-05T02:00:00,0.08652159010912294
+1990-12-05T03:00:00,0.08643634244009507
+1990-12-05T04:00:00,0.08635131121773447
+1990-12-05T05:00:00,0.08626649568025133
+1990-12-05T06:00:00,0.08618189506869073
+1990-12-05T07:00:00,0.08609750862692206
+1990-12-05T08:00:00,0.08601333560162833
+1990-12-05T09:00:00,0.08592937524229544
+1990-12-05T10:00:00,0.08584562680120167
+1990-12-05T11:00:00,0.08576208953340715
+1990-12-05T12:00:00,0.0856787626967433
+1990-12-05T13:00:00,0.08559564555180228
+1990-12-05T14:00:00,0.08551273736192674
+1990-12-05T15:00:00,0.08543003739319929
+1990-12-05T16:00:00,0.0853475449144322
+1990-12-05T17:00:00,0.08526525919715702
+1990-12-05T18:00:00,0.08518317951561445
+1990-12-05T19:00:00,0.08510130514674391
+1990-12-05T20:00:00,0.08501963537017355
+1990-12-05T21:00:00,0.08493816946820994
+1990-12-05T22:00:00,0.08485690672582799
+1990-12-05T23:00:00,0.08477584643066094
+1990-12-06T00:00:00,0.08469498787299024
+1990-12-06T01:00:00,0.08461433034573553
+1990-12-06T02:00:00,0.08453387314444477
+1990-12-06T03:00:00,0.08445361556728427
+1990-12-06T04:00:00,0.08437355691502879
+1990-12-06T05:00:00,0.08429369649105167
+1990-12-06T06:00:00,0.08421403360131505
+1990-12-06T07:00:00,0.08413456755436009
+1990-12-06T08:00:00,0.08405529766129727
+1990-12-06T09:00:00,0.0839762232357966
+1990-12-06T10:00:00,0.083897343594078
+1990-12-06T11:00:00,0.0838186580549017
+1990-12-06T12:00:00,0.08374016593955867
+1990-12-06T13:00:00,0.08366186657186096
+1990-12-06T14:00:00,0.08358375927813227
+1990-12-06T15:00:00,0.08350584338719846
+1990-12-06T16:00:00,0.0834281182303781
+1990-12-06T17:00:00,0.08335058314147305
+1990-12-06T18:00:00,0.08327323745675905
+1990-12-06T19:00:00,0.08319608051497646
+1990-12-06T20:00:00,0.083119111657321
+1990-12-06T21:00:00,0.08304233022743426
+1990-12-06T22:00:00,0.08296573557139475
+1990-12-06T23:00:00,0.08288932703770852
+1990-12-07T00:00:00,0.08281310397730002
+1990-12-07T01:00:00,0.0827370657435031
+1990-12-07T02:00:00,0.08266121169205178
+1990-12-07T03:00:00,0.08258554118107123
+1990-12-07T04:00:00,0.0825100535710688
+1990-12-07T05:00:00,0.08243474822492497
+1990-12-07T06:00:00,0.08235962450788445
+1990-12-07T07:00:00,0.08228468178754718
+1990-12-07T08:00:00,0.08220991943385961
+1990-12-07T09:00:00,0.08213533681910565
+1990-12-07T10:00:00,0.08206093331789797
+1990-12-07T11:00:00,0.08198670830716925
+1990-12-07T12:00:00,0.08191266116616332
+1990-12-07T13:00:00,0.08183879127642646
+1990-12-07T14:00:00,0.08176509802179889
+1990-12-07T15:00:00,0.08169158078840584
+1990-12-07T16:00:00,0.0816182389646492
+1990-12-07T17:00:00,0.08154507194119873
+1990-12-07T18:00:00,0.08147207911098367
+1990-12-07T19:00:00,0.08139925986918407
+1990-12-07T20:00:00,0.08132661361322245
+1990-12-07T21:00:00,0.08125413974275528
+1990-12-07T22:00:00,0.08118183765966448
+1990-12-07T23:00:00,0.08110970676804921
+1990-12-08T00:00:00,0.08103774647421735
+1990-12-08T01:00:00,0.08096595618667723
+1990-12-08T02:00:00,0.08089433531612941
+1990-12-08T03:00:00,0.08082288327545828
+1990-12-08T04:00:00,0.08075159947972392
+1990-12-08T05:00:00,0.0806804833461539
+1990-12-08T06:00:00,0.08060953429413507
+1990-12-08T07:00:00,0.0805387517452055
+1990-12-08T08:00:00,0.08046813512304621
+1990-12-08T09:00:00,0.08039768385347335
+1990-12-08T10:00:00,0.0803273973644299
+1990-12-08T11:00:00,0.0802572750859778
+1990-12-08T12:00:00,0.08018731645028998
+1990-12-08T13:00:00,0.0801175208916423
+1990-12-08T14:00:00,0.08004788784640575
+1990-12-08T15:00:00,0.07997841675303843
+1990-12-08T16:00:00,0.07990910705207785
+1990-12-08T17:00:00,0.0798399581861329
+1990-12-08T18:00:00,0.07977096959987626
+1990-12-08T19:00:00,0.07970214074003643
+1990-12-08T20:00:00,0.07963347105539013
+1990-12-08T21:00:00,0.07956495999675452
+1990-12-08T22:00:00,0.07949660701697954
+1990-12-08T23:00:00,0.07942841157094023
+1990-12-09T00:00:00,0.07936037311552917
+1990-12-09T01:00:00,0.07929249110964874
+1990-12-09T02:00:00,0.07922476501420372
+1990-12-09T03:00:00,0.0791571942920937
+1990-12-09T04:00:00,0.07908977840820543
+1990-12-09T05:00:00,0.07902251682940561
+1990-12-09T06:00:00,0.07895540902453319
+1990-12-09T07:00:00,0.07888845446439205
+1990-12-09T08:00:00,0.07882165262174361
+1990-12-09T09:00:00,0.0787550029712994
+1990-12-09T10:00:00,0.07868850498971387
+1990-12-09T11:00:00,0.07862215815557687
+1990-12-09T12:00:00,0.07855596194940645
+1990-12-09T13:00:00,0.07848991585364178
+1990-12-09T14:00:00,0.07842401935263557
+1990-12-09T15:00:00,0.07835827193264713
+1990-12-09T16:00:00,0.07829267308183523
+1990-12-09T17:00:00,0.07822722229025071
+1990-12-09T18:00:00,0.07816191904982954
+1990-12-09T19:00:00,0.07809676285438572
+1990-12-09T20:00:00,0.07803175319960418
+1990-12-09T21:00:00,0.07796688958303372
+1990-12-09T22:00:00,0.07790217150407999
+1990-12-09T23:00:00,0.07783759846399864
+1990-12-10T00:00:00,0.07777316996588814
+1990-12-10T01:00:00,0.07770888551468305
+1990-12-10T02:00:00,0.07764474461714697
+1990-12-10T03:00:00,0.0775807467818658
+1990-12-10T04:00:00,0.07751689151924071
+1990-12-10T05:00:00,0.07745317834148151
+1990-12-10T06:00:00,0.07738960676259962
+1990-12-10T07:00:00,0.0773261762984016
+1990-12-10T08:00:00,0.07726288646648206
+1990-12-10T09:00:00,0.0771997367862172
+1990-12-10T10:00:00,0.07713672677875795
+1990-12-10T11:00:00,0.07707385596702339
+1990-12-10T12:00:00,0.07701112387569405
+1990-12-10T13:00:00,0.07694853003120539
+1990-12-10T14:00:00,0.076886073961741
+1990-12-10T15:00:00,0.07682375519722623
+1990-12-10T16:00:00,0.07676157326932152
+1990-12-10T17:00:00,0.07669952771141596
+1990-12-10T18:00:00,0.07663761805862074
+1990-12-10T19:00:00,0.07657584384776263
+1990-12-10T20:00:00,0.0765142046173777
+1990-12-10T21:00:00,0.07645269990770473
+1990-12-10T22:00:00,0.07639132926067885
+1990-12-10T23:00:00,0.07633009221992522
+1990-12-11T00:00:00,0.07626898833075264
+1990-12-11T01:00:00,0.07620801714014722
+1990-12-11T02:00:00,0.07614717819676607
+1990-12-11T03:00:00,0.07608647105093108
+1990-12-11T04:00:00,0.07602589525462257
+1990-12-11T05:00:00,0.07596545036147317
+1990-12-11T06:00:00,0.07590513592676149
+1990-12-11T07:00:00,0.07584495150740604
+1990-12-11T08:00:00,0.07578489666195905
+1990-12-11T09:00:00,0.07572497095060023
+1990-12-11T10:00:00,0.07566517393513086
+1990-12-11T11:00:00,0.07560550517896748
+1990-12-11T12:00:00,0.07554596424713599
+1990-12-11T13:00:00,0.07548655070626549
+1990-12-11T14:00:00,0.07542726412458235
+1990-12-11T15:00:00,0.07536810407190413
+1990-12-11T16:00:00,0.0753090701196337
+1990-12-11T17:00:00,0.07525016184075317
+1990-12-11T18:00:00,0.07519137880981806
+1990-12-11T19:00:00,0.07513272060295134
+1990-12-11T20:00:00,0.07507418679783757
+1990-12-11T21:00:00,0.07501577697371707
+1990-12-11T22:00:00,0.07495749071137993
+1990-12-11T23:00:00,0.07489932759316038
+1990-12-12T00:00:00,0.07484128720293089
+1990-12-12T01:00:00,0.07478336912609643
+1990-12-12T02:00:00,0.07472557294958869
+1990-12-12T03:00:00,0.07466789826186036
+1990-12-12T04:00:00,0.07461034465287945
+1990-12-12T05:00:00,0.07455291171412357
+1990-12-12T06:00:00,0.07449559903857425
+1990-12-12T07:00:00,0.07443840622071135
+1990-12-12T08:00:00,0.07438133285650741
+1990-12-12T09:00:00,0.07432437854342201
+1990-12-12T10:00:00,0.07426754288039629
+1990-12-12T11:00:00,0.07421082546784724
+1990-12-12T12:00:00,0.07415422590766234
+1990-12-12T13:00:00,0.0740977438031939
+1990-12-12T14:00:00,0.07404137875925361
+1990-12-12T15:00:00,0.07398513038210712
+1990-12-12T16:00:00,0.07392899827946851
+1990-12-12T17:00:00,0.07387298206049486
+1990-12-12T18:00:00,0.07381708133578092
+1990-12-12T19:00:00,0.07376129571735364
+1990-12-12T20:00:00,0.07370562481866678
+1990-12-12T21:00:00,0.07365006825459566
+1990-12-12T22:00:00,0.07359462564143168
+1990-12-12T23:00:00,0.07353929659687719
+1990-12-13T00:00:00,0.07348408074004005
+1990-12-13T01:00:00,0.07342897769142846
+1990-12-13T02:00:00,0.07337398707294558
+1990-12-13T03:00:00,0.07331910850788448
+1990-12-13T04:00:00,0.07326434162092275
+1990-12-13T05:00:00,0.07320968603811746
+1990-12-13T06:00:00,0.07315514138689988
+1990-12-13T07:00:00,0.07310070729607032
+1990-12-13T08:00:00,0.07304638339579317
+1990-12-13T09:00:00,0.07299216931759155
+1990-12-13T10:00:00,0.07293806469434239
+1990-12-13T11:00:00,0.07288406916027122
+1990-12-13T12:00:00,0.07283018235094728
+1990-12-13T13:00:00,0.07277640390327837
+1990-12-13T14:00:00,0.07272273345550584
+1990-12-13T15:00:00,0.07266917064719958
+1990-12-13T16:00:00,0.07261571511925312
+1990-12-13T17:00:00,0.07256236651387862
+1990-12-13T18:00:00,0.0725091244746019
+1990-12-13T19:00:00,0.07245598864625755
+1990-12-13T20:00:00,0.07240295867498406
+1990-12-13T21:00:00,0.07235003420821884
+1990-12-13T22:00:00,0.07229721489469344
+1990-12-13T23:00:00,0.07224450038442874
+1990-12-14T00:00:00,0.07219189032872993
+1990-12-14T01:00:00,0.07213938438018191
+1990-12-14T02:00:00,0.0720869821926444
+1990-12-14T03:00:00,0.07203468342124714
+1990-12-14T04:00:00,0.07198248772238518
+1990-12-14T05:00:00,0.07193039475371416
+1990-12-14T06:00:00,0.07187840417414554
+1990-12-14T07:00:00,0.07182651564384188
+1990-12-14T08:00:00,0.07177472882421224
+1990-12-14T09:00:00,0.07172304337790741
+1990-12-14T10:00:00,0.07167145896881538
+1990-12-14T11:00:00,0.07161997526205656
+1990-12-14T12:00:00,0.07156859192397931
+1990-12-14T13:00:00,0.07151730862215526
+1990-12-14T14:00:00,0.07146612502537474
+1990-12-14T15:00:00,0.07141504080364218
+1990-12-14T16:00:00,0.07136405562817173
+1990-12-14T17:00:00,0.07131316917138249
+1990-12-14T18:00:00,0.07126238110689417
+1990-12-14T19:00:00,0.07121169110952257
+1990-12-14T20:00:00,0.07116109885527501
+1990-12-14T21:00:00,0.07111060402134603
+1990-12-14T22:00:00,0.07106020628611281
+1990-12-14T23:00:00,0.07100990532913079
+1990-12-15T00:00:00,0.07095970083112929
+1990-12-15T01:00:00,0.07090959247400704
+1990-12-15T02:00:00,0.0708595799408279
+1990-12-15T03:00:00,0.07080966291581643
+1990-12-15T04:00:00,0.0707598410843536
+1990-12-15T05:00:00,0.07071011413297239
+1990-12-15T06:00:00,0.07066048174935356
+1990-12-15T07:00:00,0.07061094362232131
+1990-12-15T08:00:00,0.07056149944183904
+1990-12-15T09:00:00,0.07051214889900499
+1990-12-15T10:00:00,0.07046289168604813
+1990-12-15T11:00:00,0.07041372749632387
+1990-12-15T12:00:00,0.07036465602430977
+1990-12-15T13:00:00,0.07031567696560154
+1990-12-15T14:00:00,0.0702667900169086
+1990-12-15T15:00:00,0.07021799487605017
+1990-12-15T16:00:00,0.07016929124195093
+1990-12-15T17:00:00,0.07012067881463695
+1990-12-15T18:00:00,0.07007215729523161
+1990-12-15T19:00:00,0.07002372638595149
+1990-12-15T20:00:00,0.06997538579010218
+1990-12-15T21:00:00,0.06992713521207433
+1990-12-15T22:00:00,0.06987897435733956
+1990-12-15T23:00:00,0.06983090293244638
+1990-12-16T00:00:00,0.06978292064501625
+1990-12-16T01:00:00,0.06973502720373939
+1990-12-16T02:00:00,0.06968722231837107
+1990-12-16T03:00:00,0.06963950569972732
+1990-12-16T04:00:00,0.06959187705968119
+1990-12-16T05:00:00,0.06954433611115866
+1990-12-16T06:00:00,0.06949688256813488
+1990-12-16T07:00:00,0.06944951614562997
+1990-12-16T08:00:00,0.0694022365597054
+1990-12-16T09:00:00,0.06935504352745997
+1990-12-16T10:00:00,0.06930793676702586
+1990-12-16T11:00:00,0.06926091599756491
+1990-12-16T12:00:00,0.06921398093926473
+1990-12-16T13:00:00,0.06916713131333481
+1990-12-16T14:00:00,0.06912036684200273
+1990-12-16T15:00:00,0.06907368724851042
+1990-12-16T16:00:00,0.06902709225711026
+1990-12-16T17:00:00,0.06898058159306145
+1990-12-16T18:00:00,0.06893415498262605
+1990-12-16T19:00:00,0.06888781215306546
+1990-12-16T20:00:00,0.06884155283263649
+1990-12-16T21:00:00,0.06879537675058776
+1990-12-16T22:00:00,0.06874928363715599
+1990-12-16T23:00:00,0.0687032732235622
+1990-12-17T00:00:00,0.06865734524200821
+1990-12-17T01:00:00,0.06861149942567286
+1990-12-17T02:00:00,0.06856573550870836
+1990-12-17T03:00:00,0.06852005322623667
+1990-12-17T04:00:00,0.06847445231434592
+1990-12-17T05:00:00,0.0684289325100868
+1990-12-17T06:00:00,0.06838349355146889
+1990-12-17T07:00:00,0.06833813517745714
+1990-12-17T08:00:00,0.06829285712796831
+1990-12-17T09:00:00,0.06824765914386742
+1990-12-17T10:00:00,0.06820254096696413
+1990-12-17T11:00:00,0.06815750234000931
+1990-12-17T12:00:00,0.06811254300669149
+1990-12-17T13:00:00,0.06806766271163339
+1990-12-17T14:00:00,0.06802286120038836
+1990-12-17T15:00:00,0.06797813821943699
+1990-12-17T16:00:00,0.06793349351618355
+1990-12-17T17:00:00,0.06788892683895267
+1990-12-17T18:00:00,0.06784443793698584
+1990-12-17T19:00:00,0.06780002656043797
+1990-12-17T20:00:00,0.06775569246037397
+1990-12-17T21:00:00,0.06771143538876544
+1990-12-17T22:00:00,0.0676672550984872
+1990-12-17T23:00:00,0.067623151343314
+1990-12-18T00:00:00,0.06757912387791704
+1990-12-18T01:00:00,0.06753517245786078
+1990-12-18T02:00:00,0.06749129683959951
+1990-12-18T03:00:00,0.06744749678047403
+1990-12-18T04:00:00,0.06740377203870834
+1990-12-18T05:00:00,0.06736012237340644
+1990-12-18T06:00:00,0.06731654754454897
+1990-12-18T07:00:00,0.06727304731298989
+1990-12-18T08:00:00,0.06722962144045334
+1990-12-18T09:00:00,0.06718626968953033
+1990-12-18T10:00:00,0.06714299182367552
+1990-12-18T11:00:00,0.06709978760720392
+1990-12-18T12:00:00,0.06705665680528786
+1990-12-18T13:00:00,0.06701359918395366
+1990-12-18T14:00:00,0.06697061451007848
+1990-12-18T15:00:00,0.06692770255138712
+1990-12-18T16:00:00,0.06688486307644888
+1990-12-18T17:00:00,0.06684209585467447
+1990-12-18T18:00:00,0.0667994006563128
+1990-12-18T19:00:00,0.06675677725244786
+1990-12-18T20:00:00,0.06671422541499561
+1990-12-18T21:00:00,0.06667174491670096
+1990-12-18T22:00:00,0.06662933553113451
+1990-12-18T23:00:00,0.06658699703268971
+1990-12-19T00:00:00,0.06654472919657958
+1990-12-19T01:00:00,0.0665025317988337
+1990-12-19T02:00:00,0.06646040461629531
+1990-12-19T03:00:00,0.06641834742661808
+1990-12-19T04:00:00,0.06637636000826322
+1990-12-19T05:00:00,0.06633444214049644
+1990-12-19T06:00:00,0.06629259360338495
+1990-12-19T07:00:00,0.06625081417779446
+1990-12-19T08:00:00,0.06620910364538621
+1990-12-19T09:00:00,0.06616746178861405
+1990-12-19T10:00:00,0.06612588839072137
+1990-12-19T11:00:00,0.06608438323573831
+1990-12-19T12:00:00,0.06604294610847877
+1990-12-19T13:00:00,0.06600157679453747
+1990-12-19T14:00:00,0.06596027508028697
+1990-12-19T15:00:00,0.06591904075287498
+1990-12-19T16:00:00,0.06587787360022125
+1990-12-19T17:00:00,0.0658367734110149
+1990-12-19T18:00:00,0.06579573997471132
+1990-12-19T19:00:00,0.06575477308152954
+1990-12-19T20:00:00,0.0657138725224493
+1990-12-19T21:00:00,0.06567303808920814
+1990-12-19T22:00:00,0.06563226957429869
+1990-12-19T23:00:00,0.06559156677096584
+1990-12-20T00:00:00,0.06555092947320387
+1990-12-20T01:00:00,0.06551035747575379
+1990-12-20T02:00:00,0.06546985057410039
+1990-12-20T03:00:00,0.06542940856446959
+1990-12-20T04:00:00,0.06538903124382567
+1990-12-20T05:00:00,0.06534871840986851
+1990-12-20T06:00:00,0.06530846986103082
+1990-12-20T07:00:00,0.06526828539647549
+1990-12-20T08:00:00,0.06522816481609274
+1990-12-20T09:00:00,0.06518810792049759
+1990-12-20T10:00:00,0.06514811451102698
+1990-12-20T11:00:00,0.06510818438973724
+1990-12-20T12:00:00,0.06506831735940134
+1990-12-20T13:00:00,0.0650285132235062
+1990-12-20T14:00:00,0.0649887717862501
+1990-12-20T15:00:00,0.06494909285253994
+1990-12-20T16:00:00,0.06490947622798875
+1990-12-20T17:00:00,0.0648699217189129
+1990-12-20T18:00:00,0.0648304291323296
+1990-12-20T19:00:00,0.06479099827595426
+1990-12-20T20:00:00,0.06475162895819786
+1990-12-20T21:00:00,0.06471232098816439
+1990-12-20T22:00:00,0.06467307417564828
+1990-12-20T23:00:00,0.06463388833113184
+1990-12-21T00:00:00,0.06459476326578267
+1990-12-21T01:00:00,0.06455569879145114
+1990-12-21T02:00:00,0.06451669472066783
+1990-12-21T03:00:00,0.06447775086664101
+1990-12-21T04:00:00,0.0644388670432541
+1990-12-21T05:00:00,0.06440004306506325
+1990-12-21T06:00:00,0.0643612787472947
+1990-12-21T07:00:00,0.06432257390584241
+1990-12-21T08:00:00,0.06428392835726546
+1990-12-21T09:00:00,0.06424534191878577
+1990-12-21T10:00:00,0.06420681440828535
+1990-12-21T11:00:00,0.06416834564430414
+1990-12-21T12:00:00,0.06412993544603736
+1990-12-21T13:00:00,0.06409158363333316
+1990-12-21T14:00:00,0.06405329002669023
+1990-12-21T15:00:00,0.06401505444725528
+1990-12-21T16:00:00,0.06397687671682069
+1990-12-21T17:00:00,0.06393875665782213
+1990-12-21T18:00:00,0.06390069409333611
+1990-12-21T19:00:00,0.0638626888470777
+1990-12-21T20:00:00,0.06382474074339801
+1990-12-21T21:00:00,0.06378684960728202
+1990-12-21T22:00:00,0.063749015264346
+1990-12-21T23:00:00,0.06371123754083534
+1990-12-22T00:00:00,0.06367351626362214
+1990-12-22T01:00:00,0.06363585126020291
+1990-12-22T02:00:00,0.06359824235869622
+1990-12-22T03:00:00,0.06356068938784043
+1990-12-22T04:00:00,0.06352319217699133
+1990-12-22T05:00:00,0.06348575055611992
+1990-12-22T06:00:00,0.06344836435581003
+1990-12-22T07:00:00,0.06341103340725618
+1990-12-22T08:00:00,0.06345888751380893
+1990-12-22T09:00:00,0.06349610774964726
+1990-12-22T10:00:00,0.06353324261973493
+1990-12-22T11:00:00,0.06357029207075744
+1990-12-22T12:00:00,0.06360725605653407
+1990-12-22T13:00:00,0.06644485185504519
+1990-12-22T14:00:00,0.06660118822483241
+1990-12-22T15:00:00,0.0666378956057563
+1990-12-22T16:00:00,0.06667451740361657
+1990-12-22T17:00:00,0.06671105360464857
+1990-12-22T18:00:00,0.0667475042009757
+1990-12-22T19:00:00,0.06678386919042759
+1990-12-22T20:00:00,0.06382485406180834
+1990-12-22T21:00:00,0.06378615993050149
+1990-12-22T22:00:00,0.06374752586695509
+1990-12-22T23:00:00,0.06370895168518798
+1990-12-23T00:00:00,0.06367043719989143
+1990-12-23T01:00:00,0.06363198222642649
+1990-12-23T02:00:00,0.06359358658082159
+1990-12-23T03:00:00,0.06355525007976999
+1990-12-23T04:00:00,0.06351697254062737
+1990-12-23T05:00:00,0.06347875378140931
+1990-12-23T06:00:00,0.06344059362078885
+1990-12-23T07:00:00,0.0634024918780941
+1990-12-23T08:00:00,0.0653571243820993
+1990-12-23T09:00:00,0.06536885938576098
+1990-12-23T10:00:00,0.06538054617126385
+1990-12-23T11:00:00,0.06539218458344569
+1990-12-23T12:00:00,0.0654037744709885
+1990-12-23T13:00:00,0.06541531568640076
+1990-12-23T14:00:00,0.06542680808599993
+1990-12-23T15:00:00,0.06543825152989494
+1990-12-23T16:00:00,0.06544964588196889
+1990-12-23T17:00:00,0.06546099100986186
+1990-12-23T18:00:00,0.06547228678495393
+1990-12-23T19:00:00,0.06548353308234803
+1990-12-23T20:00:00,0.06350192108183277
+1990-12-23T21:00:00,0.06346321930314655
+1990-12-23T22:00:00,0.06342457811627288
+1990-12-23T23:00:00,0.06338599733308721
+1990-12-24T00:00:00,0.06334747676614533
+1990-12-24T01:00:00,0.063309016228681
+1990-12-24T02:00:00,0.06327061553460324
+1990-12-24T03:00:00,0.063232274498494
+1990-12-24T04:00:00,0.06319399293560553
+1990-12-24T05:00:00,0.06315577066185794
+1990-12-24T06:00:00,0.06311760749383673
+1990-12-24T07:00:00,0.06307950324879023
+1990-12-24T08:00:00,0.06304145774462731
+1990-12-24T09:00:00,0.06300347079991472
+1990-12-24T10:00:00,0.0629655422338748
+1990-12-24T11:00:00,0.06292767186638294
+1990-12-24T12:00:00,0.06288985951796527
+1990-12-24T13:00:00,0.0628521050097961
+1990-12-24T14:00:00,0.0628144081636956
+1990-12-24T15:00:00,0.06277676880212743
+1990-12-24T16:00:00,0.06273918674819623
+1990-12-24T17:00:00,0.06270166182564535
+1990-12-24T18:00:00,0.06266419385885445
+1990-12-24T19:00:00,0.06262678267283708
+1990-12-24T20:00:00,0.06258942809323838
+1990-12-24T21:00:00,0.06255212994633276
+1990-12-24T22:00:00,0.06251488805902146
+1990-12-24T23:00:00,0.06247770225883034
+1990-12-25T00:00:00,0.06244057237390748
+1990-12-25T01:00:00,0.07014981502353117
+1990-12-25T02:00:00,0.08396877226199448
+1990-12-25T03:00:00,0.08446716521229679
+1990-12-25T04:00:00,0.08496639496515423
+1990-12-25T05:00:00,0.08546634699336231
+1990-12-25T06:00:00,0.08596692018162659
+1990-12-25T07:00:00,0.08646802454087002
+1990-12-25T08:00:00,0.09665569772626922
+1990-12-25T09:00:00,0.09671612424143183
+1990-12-25T10:00:00,0.09745047652314169
+1990-12-25T11:00:00,0.09818594386168641
+1990-12-25T12:00:00,0.09892238368382698
+1990-12-25T13:00:00,0.09965966810946011
+1990-12-25T14:00:00,0.10039768167707494
+1990-12-25T15:00:00,0.10113631952468481
+1990-12-25T16:00:00,0.10187548591710457
+1990-12-25T17:00:00,0.10261509304045258
+1990-12-25T18:00:00,0.10335506000554727
+1990-12-25T19:00:00,0.10409531201654267
+1990-12-25T20:00:00,0.09513997946288769
+1990-12-25T21:00:00,0.09631379504488576
+1990-12-25T22:00:00,0.09681466155083912
+1990-12-25T23:00:00,0.09731521051341767
+1990-12-26T00:00:00,0.09781542382288584
+1990-12-26T01:00:00,0.0768819928438514
+1990-12-26T02:00:00,0.07680908584518331
+1990-12-26T03:00:00,0.0767363592787326
+1990-12-26T04:00:00,0.07666381251333718
+1990-12-26T05:00:00,0.07659144492017804
+1990-12-26T06:00:00,0.07651925587277045
+1990-12-26T07:00:00,0.07644724474695509
+1990-12-26T08:00:00,0.09728912726324618
+1990-12-26T09:00:00,0.09725629012559253
+1990-12-26T10:00:00,0.09772829228951245
+1990-12-26T11:00:00,0.09819989198401172
+1990-12-26T12:00:00,0.09867107651702119
+1990-12-26T13:00:00,0.0991418337388554
+1990-12-26T14:00:00,0.0996121520112159
+1990-12-26T15:00:00,0.1000820201786342
+1990-12-26T16:00:00,0.10055142754211469
+1990-12-26T17:00:00,0.10102036383476488
+1990-12-26T18:00:00,0.10148881919922538
+1990-12-26T19:00:00,0.10195678416673246
+1990-12-26T20:00:00,0.0820208137444771
+1990-12-26T21:00:00,0.08193507529914039
+1990-12-26T22:00:00,0.08184956229020364
+1990-12-26T23:00:00,0.0817642739191902
+1990-12-27T00:00:00,0.0816792093905984
+1990-12-27T01:00:00,0.09383801317603091
+1990-12-27T02:00:00,0.09405699086055477
+1990-12-27T03:00:00,0.09430241753286651
+1990-12-27T04:00:00,0.09454745281539523
+1990-12-27T05:00:00,0.09479209606097709
+1990-12-27T06:00:00,0.09503634665717035
+1990-12-27T07:00:00,0.09528020402526131
+1990-12-27T08:00:00,0.10417255988185437
+1990-12-27T09:00:00,0.10391087785952302
+1990-12-27T10:00:00,0.10436860154575947
+1990-12-27T11:00:00,0.10482577798072257
+1990-12-27T12:00:00,0.10528240051875731
+1990-12-27T13:00:00,0.10573846275750495
+1990-12-27T14:00:00,0.10619395852770794
+1990-12-27T15:00:00,0.1066488818836096
+1990-12-27T16:00:00,0.10710322709390438
+1990-12-27T17:00:00,0.1075569886331981
+1990-12-27T18:00:00,0.1080101611739416
+1990-12-27T19:00:00,0.10846273957880434
+1990-12-27T20:00:00,0.10026291687623422
+1990-12-27T21:00:00,0.10121645759990155
+1990-12-27T22:00:00,0.10144965524768268
+1990-12-27T23:00:00,0.1017695623908025
+1990-12-28T00:00:00,0.1029376573816111
+1990-12-28T01:00:00,0.09043832188960345
+1990-12-28T02:00:00,0.08982864154642353
+1990-12-28T03:00:00,0.08971260424654642
+1990-12-28T04:00:00,0.08960797726644076
+1990-12-28T05:00:00,0.08950364192040361
+1990-12-28T06:00:00,0.08939959716329625
+1990-12-28T07:00:00,0.08929584195388926
+1990-12-28T08:00:00,0.09697774216990245
+1990-12-28T09:00:00,0.09630603341926583
+1990-12-28T10:00:00,0.09639535694891356
+1990-12-28T11:00:00,0.09648452196494532
+1990-12-28T12:00:00,0.09657352883485791
+1990-12-28T13:00:00,0.09666237792582037
+1990-12-28T14:00:00,0.09675106960466637
+1990-12-28T15:00:00,0.09708122931777907
+1990-12-28T16:00:00,0.09749147356465285
+1990-12-28T17:00:00,0.09789889845233102
+1990-12-28T18:00:00,0.09830352476004862
+1990-12-28T19:00:00,0.09870537311395522
+1990-12-28T20:00:00,0.09127700334253398
+1990-12-28T21:00:00,0.090662741333854
+1990-12-28T22:00:00,0.09006016324778936
+1990-12-28T23:00:00,0.089955151496083
+1990-12-29T00:00:00,0.08985043243232112
+1990-12-29T01:00:00,0.1336175728793138
+1990-12-29T02:00:00,0.13883559403286094
+1990-12-29T03:00:00,0.14406620341343268
+1990-12-29T04:00:00,0.1492631604035225
+1990-12-29T05:00:00,0.1544265965773225
+1990-12-29T06:00:00,0.1595566469388537
+1990-12-29T07:00:00,0.16465344964423395
+1990-12-29T08:00:00,0.18009609088380765
+1990-12-29T09:00:00,0.18517346314070926
+1990-12-29T10:00:00,0.1913433575400303
+1990-12-29T11:00:00,0.19747376468264038
+1990-12-29T12:00:00,0.20356481938826526
+1990-12-29T13:00:00,0.20961666149351715
+1990-12-29T14:00:00,0.21562943549311336
+1990-12-29T15:00:00,0.2216032902097777
+1990-12-29T16:00:00,0.22753837848963432
+1990-12-29T17:00:00,0.23343485692034877
+1990-12-29T18:00:00,0.23929288556965322
+1990-12-29T19:00:00,0.24511262774220638
+1990-12-29T20:00:00,0.2405021279586925
+1990-12-29T21:00:00,0.24618831457107637
+1990-12-29T22:00:00,0.25071196080960356
+1990-12-29T23:00:00,0.25520537106258023
+1990-12-30T00:00:00,0.25966871139366277
+1990-12-30T01:00:00,0.2896562154892447
+1990-12-30T02:00:00,0.2974664751094756
+1990-12-30T03:00:00,0.30518313293589355
+1990-12-30T04:00:00,0.31284977790304086
+1990-12-30T05:00:00,0.3204665798975735
+1990-12-30T06:00:00,0.32803371560685357
+1990-12-30T07:00:00,0.33555136807040464
+1990-12-30T08:00:00,0.35576841930371883
+1990-12-30T09:00:00,0.3639652435819398
+1990-12-30T10:00:00,0.37288849073928243
+1990-12-30T11:00:00,0.38175361121514106
+1990-12-30T12:00:00,0.3905607933501783
+1990-12-30T13:00:00,0.399310234553975
+1990-12-30T14:00:00,0.40800214069445073
+1990-12-30T15:00:00,0.41663672552642683
+1990-12-30T16:00:00,0.4252142101562015
+1990-12-30T17:00:00,0.433734822539339
+1990-12-30T18:00:00,0.4421987970091641
+1990-12-30T19:00:00,0.45060637383369995
+1990-12-30T20:00:00,0.44619540192710916
+1990-12-30T21:00:00,0.45370146786842885
+1990-12-30T22:00:00,0.46037731459774894
+1990-12-30T23:00:00,0.4670079142197057
+1990-12-31T00:00:00,0.4735935120785504
+1990-12-31T01:00:00,0.4594375347915673
+1990-12-31T02:00:00,0.46319756214664765
+1990-12-31T03:00:00,0.4669168939908412
+1990-12-31T04:00:00,0.47061073047795643
+1990-12-31T05:00:00,0.4742792366519663
+1990-12-31T06:00:00,0.47792257693953316
+1990-12-31T07:00:00,0.4815409151375969
+1990-12-31T08:00:00,0.4967753193097729
+1990-12-31T09:00:00,0.5011277823879942
+1990-12-31T10:00:00,0.5061102101574158
+1990-12-31T11:00:00,0.5110583655958421
+1990-12-31T12:00:00,0.5159724634039999
+1990-12-31T13:00:00,0.520852717835134
+1990-12-31T14:00:00,0.5256993426608141
+1990-12-31T15:00:00,0.5305125511383874
+1990-12-31T16:00:00,0.535292555980003
+1990-12-31T17:00:00,0.5400395693231438
+1990-12-31T18:00:00,0.5447538027026007
+1990-12-31T19:00:00,0.5494354670238307
+1990-12-31T20:00:00,0.5424385205348441
+1990-12-31T21:00:00,0.5462672633905927
+1990-12-31T22:00:00,0.5494097875731263
+1990-12-31T23:00:00,0.5525306923782849
+1991-01-01T00:00:00,0.5556301242139771
diff --git a/tests/test_mhm.py b/tests/test_mhm.py
index bbbeadecc982470595309e59fca20772f37669d5..b8dd627b8d78a5fa9126b9ae83c1037d2f6236a1 100644
--- a/tests/test_mhm.py
+++ b/tests/test_mhm.py
@@ -1,9 +1,83 @@
+import os
+import shutil
 import unittest
 from datetime import datetime, timedelta
+from pathlib import Path
 
+import finam as fm
+import mhm
 import numpy as np
+from numpy.testing import assert_allclose
+
+import finam_mhm as fm_mhm
+
+
+def str2date(dtstr):
+    return datetime.fromisoformat(dtstr)
 
 
 class TestMHM(unittest.TestCase):
-    def test_creation(self):
-        pass
+    @classmethod
+    def setUpClass(self):
+        self.here = Path(__file__).parent
+        os.chdir(self.here)
+        self.test_domain = self.here / "test_domain"
+        mhm.download_test(path=self.test_domain)
+
+    def tearDown(self):
+        # move out of test-domain directory after each test
+        os.chdir(self.here)
+
+    @classmethod
+    def tearDownClass(self):
+        shutil.rmtree(self.test_domain)
+
+    def test_run(self):
+        start_date = datetime(1990, 1, 1)
+        end_date = datetime(1991, 1, 1)
+
+        mhm = fm_mhm.MHM(cwd=self.test_domain)
+        csv = fm.modules.CsvWriter(
+            path=self.here / "runoff_out.csv",
+            inputs=["Runoff"],
+            time_column="Time",
+            separator=",",
+            start=start_date,
+            step=timedelta(hours=1),
+        )
+
+        composition = fm.Composition([mhm, csv])
+        composition.initialize()
+
+        (
+            mhm.outputs["L1_TOTAL_RUNOFF"]
+            >> fm.adapters.GridToValue(func=lambda x: x[0, 8, 4])
+            >> csv["Runoff"]
+        )
+
+        composition.run(start_time=start_date, end_time=end_date)
+
+        ref = np.genfromtxt(
+            self.here / "test_files/ref_runoff.csv",
+            names=True,
+            converters={0: str2date},
+            delimiter=",",
+            dtype=None,
+            encoding="utf-8",
+        )
+        ref = np.array([i[1] for i in ref])
+        out = np.genfromtxt(
+            self.here / "runoff_out.csv",
+            names=True,
+            converters={0: str2date},
+            delimiter=",",
+            dtype=None,
+            encoding="utf-8",
+        )
+        out = np.array([i[1] for i in out])
+
+        assert_allclose(ref, out)
+
+
+if __name__ == "__main__":
+    unittest.main()